diff --git a/src/libprs500/ebooks/lrf/__init__.py b/src/libprs500/ebooks/lrf/__init__.py index 755f66bbb7..888864f352 100644 --- a/src/libprs500/ebooks/lrf/__init__.py +++ b/src/libprs500/ebooks/lrf/__init__.py @@ -127,7 +127,7 @@ def option_parser(usage, gui_mode=False): laf.add_option('--use-spine', default=False, dest='use_spine', action='store_true', help=_('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.')) laf.add_option('--minimum-indent', default=0, type='float', - help='Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default') + help=_('Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default')) laf.add_option('--font-delta', action='store', type='float', default=0., \ help=_("""Increase the font size by 2 * FONT_DELTA pts and """ '''the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.''' @@ -214,13 +214,13 @@ def option_parser(usage, gui_mode=False): debug = parser.add_option_group('DEBUG OPTIONS') debug.add_option('--verbose', dest='verbose', action='store_true', default=False, - help='''Be verbose while processing''') + help=_('''Be verbose while processing''')) debug.add_option('--lrs', action='store_true', dest='lrs', \ - help='Convert to LRS', default=False) + help=_('Convert to LRS'), default=False) parser.add_option('--minimize-memory-usage', action='store_true', default=False, help=_('Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.')) parser.add_option('--encoding', default=None, - help='Specify the character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.') + help=_('Specify the character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.')) return parser diff --git a/src/libprs500/ebooks/lrf/any/convert_from.py b/src/libprs500/ebooks/lrf/any/convert_from.py index 170c191131..60c36a5ef7 100644 --- a/src/libprs500/ebooks/lrf/any/convert_from.py +++ b/src/libprs500/ebooks/lrf/any/convert_from.py @@ -137,13 +137,13 @@ def process_file(path, options, logger=None): def option_parser(gui_mode=False): - return _option_parser(usage='''\ + return _option_parser(usage=_('''\ any2lrf [options] myfile Convert any ebook format into LRF. Supported formats are: LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or ZIP archive, looking for an ebook inside the archive. - ''', gui_mode=gui_mode) + '''), gui_mode=gui_mode) def main(args=sys.argv, logger=None, gui_mode=False): @@ -152,7 +152,7 @@ def main(args=sys.argv, logger=None, gui_mode=False): if len(args) != 2: parser.print_help() print - print 'No file to convert specified.' + print _('No file to convert specified.') return 1 return process_file(args[1], options, logger) diff --git a/src/libprs500/ebooks/lrf/epub/convert_from.py b/src/libprs500/ebooks/lrf/epub/convert_from.py index 08c0813376..141f7ef36f 100644 --- a/src/libprs500/ebooks/lrf/epub/convert_from.py +++ b/src/libprs500/ebooks/lrf/epub/convert_from.py @@ -1,22 +1,23 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' -import os, sys, shutil, glob, logging +import os, sys, shutil, logging from tempfile import mkdtemp -from subprocess import Popen, PIPE from libprs500.ebooks.lrf import option_parser as lrf_option_parser from libprs500.ebooks import ConversionError from libprs500.ebooks.lrf.html.convert_from import process_file as html_process_file -from libprs500.ebooks.metadata.opf import OPFReader, OPF +from libprs500.ebooks.metadata.opf import OPF from libprs500.ebooks.metadata.epub import OCFDirReader from libprs500.libunzip import extract as zip_extract -from libprs500 import isosx, __appname__, setup_cli_handlers, iswindows +from libprs500 import __appname__, setup_cli_handlers def option_parser(): return lrf_option_parser( - '''Usage: %prog [options] mybook.epub\n\n''' - '''%prog converts mybook.epub to mybook.lrf''' +_('''Usage: %prog [options] mybook.epub + + +%prog converts mybook.epub to mybook.lrf''') ) def generate_html(pathtoepub, logger): diff --git a/src/libprs500/ebooks/lrf/html/convert_from.py b/src/libprs500/ebooks/lrf/html/convert_from.py index ca0280b250..e219283938 100644 --- a/src/libprs500/ebooks/lrf/html/convert_from.py +++ b/src/libprs500/ebooks/lrf/html/convert_from.py @@ -299,9 +299,9 @@ class HTMLConverter(object): if not self.book_designer and self.is_book_designer(raw): self.book_designer = True - self.logger.info('\tBook Designer file detected.') + self.logger.info(_('\tBook Designer file detected.')) - self.logger.info('\tParsing HTML...') + self.logger.info(_('\tParsing HTML...')) if self.baen: nmassage.extend(HTMLConverter.BAEN) @@ -323,7 +323,7 @@ class HTMLConverter(object): if not self.baen and self.is_baen(soup): self.baen = True - self.logger.info('\tBaen file detected. Re-parsing...') + self.logger.info(_('\tBaen file detected. Re-parsing...')) return self.preprocess(raw) if self.book_designer: t = soup.find(id='BookTitle') @@ -336,7 +336,7 @@ class HTMLConverter(object): tdir = tempfile.gettempdir() dump = open(os.path.join(tdir, 'html2lrf-verbose.html'), 'wb') dump.write(unicode(soup).encode('utf-8')) - self.logger.info('Written preprocessed HTML to '+dump.name) + self.logger.info(_('Written preprocessed HTML to ')+dump.name) dump.close() return soup @@ -347,7 +347,7 @@ class HTMLConverter(object): self.css.update(self.override_css) self.file_name = os.path.basename(path) - self.logger.info('Processing %s', path if self.verbose else self.file_name) + self.logger.info(_('Processing %s'), path if self.verbose else self.file_name) upath = path.encode('utf-8') if isinstance(path, unicode) else path if not os.path.exists(upath): upath = upath.replace('&', '%26') #convertlit replaces & with %26 in file names @@ -361,7 +361,7 @@ class HTMLConverter(object): raw = xml_to_unicode(raw, self.verbose)[0] f.close() soup = self.preprocess(raw) - self.logger.info('\tConverting to BBeB...') + self.logger.info(_('\tConverting to BBeB...')) self.current_style = {} self.page_break_found = False self.target_prefix = path @@ -518,7 +518,7 @@ class HTMLConverter(object): para = children[i] break if para is None: - raise ConversionError('Failed to parse link %s %s'%(tag, children)) + raise ConversionError(_('Failed to parse link %s %s')%(tag, children)) text = self.get_text(tag, 1000) if not text: text = 'Link' @@ -561,7 +561,7 @@ class HTMLConverter(object): hasattr(target.parent, 'objId'): self.book.addTocEntry(ascii_text, tb) else: - self.logger.debug("Cannot add link %s to TOC", ascii_text) + self.logger.debug(_("Cannot add link %s to TOC"), ascii_text) def get_target_block(fragment, targets): @@ -903,7 +903,7 @@ class HTMLConverter(object): self.scaled_images[path] = pt return pt.name except (IOError, SystemError), err: # PIL chokes on interlaced PNG images as well a some GIF images - self.logger.warning('Unable to process image %s. Error: %s'%(path, err)) + self.logger.warning(_('Unable to process image %s. Error: %s')%(path, err)) return None pheight = int(self.current_page.pageStyle.attrs['textheight']) @@ -941,7 +941,7 @@ class HTMLConverter(object): self.rotated_images[path] = pt width, height = im.size except IOError: # PIL chokes on interlaced PNG files and since auto-rotation is not critical we ignore the error - self.logger.debug('Unable to process interlaced PNG %s', original_path) + self.logger.debug(_('Unable to process interlaced PNG %s'), original_path) finally: pt.close() @@ -956,7 +956,7 @@ class HTMLConverter(object): try: self.images[path] = ImageStream(path, encoding=encoding) except LrsError, err: - self.logger.warning('Could not process image: %s\n%s', original_path, err) + self.logger.warning(_('Could not process image: %s\n%s'), original_path, err) return im = Image(self.images[path], x0=0, y0=0, x1=width, y1=height,\ @@ -1646,9 +1646,9 @@ class HTMLConverter(object): try: self.process_table(tag, tag_css) except Exception, err: - self.logger.warning('An error occurred while processing a table: %s. Ignoring table markup.', str(err)) + self.logger.warning(_('An error occurred while processing a table: %s. Ignoring table markup.'), str(err)) self.logger.debug('', exc_info=True) - self.logger.debug('Bad table:\n%s', str(tag)[:300]) + self.logger.debug(_('Bad table:\n%s'), str(tag)[:300]) self.in_table = False self.process_children(tag, tag_css, tag_pseudo_css) finally: @@ -1670,7 +1670,7 @@ class HTMLConverter(object): for block, xpos, ypos, delta, targets in table.blocks(int(ps['textwidth']), int(ps['textheight'])): if not block: if ypos > int(ps['textheight']): - raise Exception, 'Table has cell that is too large' + raise Exception, _('Table has cell that is too large') canvases.append(Canvas(int(self.current_page.pageStyle.attrs['textwidth']), ypos+rowpad, blockrule='block-fixed')) for name in targets: @@ -1698,7 +1698,7 @@ class HTMLConverter(object): def process_file(path, options, logger=None): if re.match('http://|https://', path): - raise ConversionError, 'You have to save the website %s as an html file first and then run html2lrf on it.'%(path,) + raise ConversionError, _('You have to save the website %s as an html file first and then run html2lrf on it.')%(path,) if logger is None: level = logging.DEBUG if options.verbose else logging.INFO logger = logging.getLogger('html2lrf') @@ -1737,7 +1737,7 @@ def process_file(path, options, logger=None): tim.save(tf.name) tpath = tf.name else: - raise ConversionError, 'Cannot read from: %s'% (options.cover,) + raise ConversionError, _('Cannot read from: %s')% (options.cover,) if not options.title: @@ -1866,16 +1866,19 @@ def try_opf(path, options, logger): if not getattr(options, 'toc', None): options.toc = opf.toc except Exception: - logger.exception('Failed to process opf file') + logger.exception(_('Failed to process opf file')) def option_parser(): - return lrf_option_parser('''Usage: %prog [options] mybook.html\n\n''' - '''%prog converts mybook.html to mybook.lrf. ''' - '''html2lrf follows all links in mybook.html that point ''' - '''to local files recursively. Thus, you can use it to ''' - '''convert a whole tree of HTML files.''') + return lrf_option_parser( +_('''Usage: %prog [options] mybook.html + + +%prog converts mybook.html to mybook.lrf. +%prog follows all links in mybook.html that point +to local files recursively. Thus, you can use it to +convert a whole tree of HTML files.''')) def main(args=sys.argv): try: diff --git a/src/libprs500/ebooks/lrf/lit/convert_from.py b/src/libprs500/ebooks/lrf/lit/convert_from.py index 5aed2682c3..c26c691631 100644 --- a/src/libprs500/ebooks/lrf/lit/convert_from.py +++ b/src/libprs500/ebooks/lrf/lit/convert_from.py @@ -16,8 +16,10 @@ if isosx and hasattr(sys, 'frameworks_dir'): def option_parser(): return lrf_option_parser( - '''Usage: %prog [options] mybook.lit\n\n''' - '''%prog converts mybook.lit to mybook.lrf''' +_('''Usage: %prog [options] mybook.lit + + +%prog converts mybook.lit to mybook.lrf''') ) def generate_html(pathtolit, logger): diff --git a/src/libprs500/ebooks/lrf/lrs/convert_from.py b/src/libprs500/ebooks/lrf/lrs/convert_from.py index a49ab4b93f..36745d9b7c 100644 --- a/src/libprs500/ebooks/lrf/lrs/convert_from.py +++ b/src/libprs500/ebooks/lrf/lrs/convert_from.py @@ -251,12 +251,12 @@ class LrsParser(object): def option_parser(): - parser = OptionParser(usage='%prog [options] file.lrs\nCompile an LRS file into an LRF file.') - parser.add_option('-o', '--output', default=None, help='Path to output file') + parser = OptionParser(usage=_('%prog [options] file.lrs\nCompile an LRS file into an LRF file.')) + parser.add_option('-o', '--output', default=None, help=_('Path to output file')) parser.add_option('--verbose', default=False, action='store_true', - help='Verbose processing') + help=_('Verbose processing')) parser.add_option('--lrs', default=False, action='store_true', - help='Convert LRS to LRS, useful for debugging.') + help=_('Convert LRS to LRS, useful for debugging.')) return parser diff --git a/src/libprs500/ebooks/lrf/meta.py b/src/libprs500/ebooks/lrf/meta.py index 3ddc968330..a4c67d1371 100644 --- a/src/libprs500/ebooks/lrf/meta.py +++ b/src/libprs500/ebooks/lrf/meta.py @@ -538,8 +538,10 @@ def option_parser(): from optparse import OptionParser from libprs500 import __appname__, __version__ parser = OptionParser(usage = \ - '''%prog [options] mybook.lrf\n\n''' - '''Show/edit the metadata in an LRF file.\n\n''', +_('''%prog [options] mybook.lrf + + +Show/edit the metadata in an LRF file.\n\n'''), version=__appname__+' '+__version__, epilog='Created by Kovid Goyal') parser.add_option("-t", "--title", action="store", type="string", \ diff --git a/src/libprs500/ebooks/lrf/mobi/convert_from.py b/src/libprs500/ebooks/lrf/mobi/convert_from.py index 9e62f87d08..7c9aa52a00 100644 --- a/src/libprs500/ebooks/lrf/mobi/convert_from.py +++ b/src/libprs500/ebooks/lrf/mobi/convert_from.py @@ -40,8 +40,10 @@ def process_file(path, options, logger=None): def option_parser(): return lrf_option_parser( - '''Usage: %prog [options] mybook.mobi|prc\n\n''' - '''%prog converts mybook.mobi to mybook.lrf''' +_('''Usage: %prog [options] mybook.mobi|prc + + +%prog converts mybook.mobi to mybook.lrf''') ) diff --git a/src/libprs500/ebooks/lrf/parser.py b/src/libprs500/ebooks/lrf/parser.py index 2713b04f14..ff7bc908e3 100644 --- a/src/libprs500/ebooks/lrf/parser.py +++ b/src/libprs500/ebooks/lrf/parser.py @@ -129,8 +129,8 @@ class LRFDocument(LRFMetaFile): return '\n' + bookinfo + pages + styles + objects + '' def option_parser(): - parser = OptionParser(usage='%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file') - parser.add_option('--output', '-o', default=None, help='Output LRS file', dest='out') + parser = OptionParser(usage=_('%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file')) + parser.add_option('--output', '-o', default=None, help=_('Output LRS file'), dest='out') parser.add_option('--verbose', default=False, action='store_true', dest='verbose') return parser @@ -148,12 +148,12 @@ def main(args=sys.argv, logger=None): opts.out = os.path.join(os.path.dirname(args[1]), os.path.splitext(os.path.basename(args[1]))[0]+".lrs") o = codecs.open(os.path.abspath(os.path.expanduser(opts.out)), 'wb', 'utf-8') o.write(u'\n') - logger.info('Parsing LRF...') + logger.info(_('Parsing LRF...')) d = LRFDocument(open(args[1], 'rb')) d.parse() - logger.info('Creating XML...') + logger.info(_('Creating XML...')) o.write(d.to_xml()) - logger.info('LRS written to '+opts.out) + logger.info(_('LRS written to ')+opts.out) return 0 if __name__ == '__main__': diff --git a/src/libprs500/ebooks/lrf/pdf/convert_from.py b/src/libprs500/ebooks/lrf/pdf/convert_from.py index d590c142c4..93e1d95ba3 100644 --- a/src/libprs500/ebooks/lrf/pdf/convert_from.py +++ b/src/libprs500/ebooks/lrf/pdf/convert_from.py @@ -44,8 +44,10 @@ def generate_html(pathtopdf, logger): def option_parser(): return lrf_option_parser( - '''Usage: %prog [options] mybook.pdf\n\n''' - '''%prog converts mybook.pdf to mybook.lrf\n\n''' +_('''%prog [options] mybook.pdf + + +%prog converts mybook.pdf to mybook.lrf''') ) def process_file(path, options, logger=None): diff --git a/src/libprs500/ebooks/lrf/rtf/convert_from.py b/src/libprs500/ebooks/lrf/rtf/convert_from.py index de78122671..2229bd86ef 100644 --- a/src/libprs500/ebooks/lrf/rtf/convert_from.py +++ b/src/libprs500/ebooks/lrf/rtf/convert_from.py @@ -17,8 +17,10 @@ if isosx and hasattr(sys, 'frameworks_dir'): def option_parser(): parser = lrf_option_parser( - '''Usage: %prog [options] mybook.rtf\n\n''' - '''%prog converts mybook.rtf to mybook.lrf''' +_('''%prog [options] mybook.rtf + + +%prog converts mybook.rtf to mybook.lrf''') ) parser.add_option('--keep-intermediate-files', action='store_true', default=False) return parser diff --git a/src/libprs500/ebooks/lrf/txt/convert_from.py b/src/libprs500/ebooks/lrf/txt/convert_from.py index 4b869378db..c407703d08 100644 --- a/src/libprs500/ebooks/lrf/txt/convert_from.py +++ b/src/libprs500/ebooks/lrf/txt/convert_from.py @@ -13,10 +13,13 @@ from libprs500.ebooks.markdown import markdown from libprs500 import setup_cli_handlers def option_parser(): - parser = lrf_option_parser('''Usage: %prog [options] mybook.txt\n\n''' - '''%prog converts mybook.txt to mybook.lrf''') + parser = lrf_option_parser( +_('''%prog [options] mybook.txt + + +%prog converts mybook.txt to mybook.lrf''')) parser.add_option('--debug-html-generation', action='store_true', default=False, - dest='debug_html_generation', help='Print generated HTML to stdout and quit.') + dest='debug_html_generation', help=_('Print generated HTML to stdout and quit.')) return parser diff --git a/src/libprs500/ebooks/metadata/__init__.py b/src/libprs500/ebooks/metadata/__init__.py index 5363c74777..fbc48a2fbc 100644 --- a/src/libprs500/ebooks/metadata/__init__.py +++ b/src/libprs500/ebooks/metadata/__init__.py @@ -15,14 +15,13 @@ def get_parser(extension): ''' Return an option parser with the basic metadata options already setup''' parser = OptionParser(usage='%prog [options] myfile.'+extension+'\n\nRead and write metadata from an ebook file.') parser.add_option("-t", "--title", action="store", type="string", \ - dest="title", help="Set the book title", default=None) + dest="title", help=_("Set the book title"), default=None) parser.add_option("-a", "--authors", action="store", type="string", \ - dest="authors", help="Set the authors", default=None) + dest="authors", help=_("Set the authors"), default=None) parser.add_option("-c", "--category", action="store", type="string", \ - dest="category", help="The category this book belongs"+\ - " to. E.g.: History", default=None) + dest="category", help=_("The category this book belongs to. E.g.: History"), default=None) parser.add_option('--comment', dest='comment', default=None, action='store', - help='Set the comment') + help=_('Set the comment')) return parser class MetaInformation(object): diff --git a/src/libprs500/ebooks/metadata/epub.py b/src/libprs500/ebooks/metadata/epub.py index 96e55b21e7..df5550895e 100644 --- a/src/libprs500/ebooks/metadata/epub.py +++ b/src/libprs500/ebooks/metadata/epub.py @@ -97,7 +97,7 @@ def get_metadata(stream): def main(args=sys.argv): if len(args) != 2 or '--help' in args or '-h' in args: - print >>sys.stderr, 'Usage:', args[0], 'mybook.epub' + print >>sys.stderr, _('Usage:'), args[0], _('mybook.epub') return 1 path = os.path.abspath(os.path.expanduser(args[1])) diff --git a/src/libprs500/ebooks/metadata/isbndb.py b/src/libprs500/ebooks/metadata/isbndb.py index 5f8797e3e1..1e41f4891c 100644 --- a/src/libprs500/ebooks/metadata/isbndb.py +++ b/src/libprs500/ebooks/metadata/isbndb.py @@ -92,7 +92,7 @@ def build_combined(base_url, opts): def option_parser(): parser = OptionParser(usage=\ -''' +_(''' %prog [options] key Fetch metadata for books from isndb.com. You can specify either the @@ -101,16 +101,16 @@ then more than one book may be returned. key is the account key you generate after signing up for a free account from isbndb.com. -''') +''')) parser.add_option('-i', '--isbn', default=None, dest='isbn', - help='The ISBN ID of the book you want metadata for.') + help=_('The ISBN ID of the book you want metadata for.')) parser.add_option('-a', '--author', dest='author', - default=None, help='The author whoose book to search for.') + default=None, help=_('The author whoose book to search for.')) parser.add_option('-t', '--title', dest='title', - default=None, help='The title of the book to search for.') + default=None, help=_('The title of the book to search for.')) parser.add_option('-p', '--publisher', default=None, dest='publisher', - help='The publisher of the book to search for.') - parser.add_option('--verbose', default=False, action='store_true', help='Verbose processing') + help=_('The publisher of the book to search for.')) + parser.add_option('--verbose', default=False, action='store_true', help=_('Verbose processing')) return parser diff --git a/src/libprs500/ebooks/metadata/library_thing.py b/src/libprs500/ebooks/metadata/library_thing.py index a2fd38e743..70a170aa98 100644 --- a/src/libprs500/ebooks/metadata/library_thing.py +++ b/src/libprs500/ebooks/metadata/library_thing.py @@ -56,11 +56,11 @@ def cover_from_isbn(isbn, timeout=5.): def option_parser(): parser = OptionParser(usage=\ -''' +_(''' %prog [options] ISBN Fetch a cover image for the book identified by ISBN from LibraryThing.com -''') +''')) parser.add_option('-u', '--username', default=None, help='Username for LibraryThing.com') parser.add_option('-p', '--password', default=None, diff --git a/src/libprs500/ebooks/metadata/lit.py b/src/libprs500/ebooks/metadata/lit.py index 2651840e4e..d562e73832 100644 --- a/src/libprs500/ebooks/metadata/lit.py +++ b/src/libprs500/ebooks/metadata/lit.py @@ -743,14 +743,14 @@ def get_metadata(stream): def main(args=sys.argv): if len(args) != 2: - print >>sys.stderr, 'Usage: %s file.lit'%(args[0],) + print >>sys.stderr, _('Usage: %s file.lit')%(args[0],) return 1 mi = get_metadata(open(args[1], 'rb')) print unicode(mi) if mi.cover_data[1]: cover = os.path.abspath(os.path.splitext(os.path.basename(args[1]))[0] + '.' + mi.cover_data[0]) open(cover, 'wb').write(mi.cover_data[1]) - print 'Cover saved to', cover + print _('Cover saved to'), cover return 0 if __name__ == '__main__': diff --git a/src/libprs500/ebooks/metadata/pdf.py b/src/libprs500/ebooks/metadata/pdf.py index 77ee807490..7d06f36dc6 100644 --- a/src/libprs500/ebooks/metadata/pdf.py +++ b/src/libprs500/ebooks/metadata/pdf.py @@ -36,8 +36,8 @@ def get_metadata(stream): def main(args=sys.argv): if len(args) != 2: - print >>sys.stderr, 'Usage: pdf-meta file.pdf' - print >>sys.stderr, 'No filename specified.' + print >>sys.stderr, _('Usage: pdf-meta file.pdf') + print >>sys.stderr, _('No filename specified.') return 1 path = os.path.abspath(os.path.expanduser(args[1])) diff --git a/src/libprs500/ebooks/mobi/reader.py b/src/libprs500/ebooks/mobi/reader.py index 37b51d3503..ff7b88baa1 100644 --- a/src/libprs500/ebooks/mobi/reader.py +++ b/src/libprs500/ebooks/mobi/reader.py @@ -294,9 +294,9 @@ def get_metadata(stream): def option_parser(): from libprs500 import OptionParser - parser = OptionParser(usage='%prog [options] myebook.mobi') + parser = OptionParser(usage=_('%prog [options] myebook.mobi')) parser.add_option('-o', '--output-dir', default='.', - help='Output directory. Defaults to current directory.') + help=_('Output directory. Defaults to current directory.')) parser.add_option('--verbose', default=False, action='store_true', help='Useful for debugging.') return parser @@ -315,9 +315,9 @@ def main(args=sys.argv): if opts.verbose: oname = os.path.join(opts.output_dir, 'debug-raw.html') open(oname, 'wb').write(mr.mobi_html.encode('utf-8')) - print 'Raw MOBI HTML saved in', oname + print _('Raw MOBI HTML saved in'), oname - print 'OEB ebook created in', opts.output_dir + print _('OEB ebook created in'), opts.output_dir return 0 diff --git a/src/libprs500/gui2/library.py b/src/libprs500/gui2/library.py index 1c805d2c89..81ac789c72 100644 --- a/src/libprs500/gui2/library.py +++ b/src/libprs500/gui2/library.py @@ -325,7 +325,7 @@ class BooksModel(QAbstractTableModel): return QVariant(Qt.AlignRight | Qt.AlignVCenter) elif role == Qt.ToolTipRole and index.isValid(): if index.column() in self.editable_cols: - return QVariant("Double click to edit me

") + return QVariant(_("Double click to edit me

")) return NONE def headerData(self, section, orientation, role): diff --git a/src/libprs500/translations/ca.po b/src/libprs500/translations/ca.po index d05f91eb49..2357326603 100644 --- a/src/libprs500/translations/ca.po +++ b/src/libprs500/translations/ca.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: ca\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-03-31 15:53+PDT\n" +"POT-Creation-Date: 2008-04-01 09:18+PDT\n" "PO-Revision-Date: 2007-11-16 09:07+0100\n" "Last-Translator: libprs500\n" "Language-Team: \n" @@ -144,6 +144,12 @@ msgstr "" "s'afegeixen els fitxers HTML al LRF. Cal que el fitxer .opf sigui a la " "mateixa carpeta que el fitxer HTML base." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 +msgid "" +"Minimum paragraph indent (the indent of the first line of a paragraph) in " +"pts. Default: %default" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 msgid "" "Increase the font size by 2 * FONT_DELTA pts and the line spacing by " @@ -300,6 +306,14 @@ msgstr "Famí­lia de lletres sans-serif per a incrustar." msgid "The monospace family of fonts to embed" msgstr "Famí­lia de lletres monoespaiades per a incrustar." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +msgid "Be verbose while processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +msgid "Convert to LRS" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " @@ -308,6 +322,37 @@ msgstr "" "Minimitza l'ús de memòria, utilitzant més temps de processador. Empreu " "aquesta opció si el vostre equip no disposa de molta RAM." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +msgid "" +"Specify the character encoding of the source file. If the output LRF file " +"contains strange characters, try changing this option. A common encoding for " +"files from windows computers is cp-1252. Another common choice is utf-8. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +msgid "" +"any2lrf [options] myfile\n" +"\n" +"Convert any ebook format into LRF. Supported formats are:\n" +"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " +"RAR or\n" +"ZIP archive, looking for an ebook inside the archive.\n" +" " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +msgid "No file to convert specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +msgid "" +"Usage: %prog [options] mybook.epub\n" +" \n" +" \n" +"%prog converts mybook.epub to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "" @@ -320,51 +365,212 @@ msgstr "" msgid "Fetching of recipe failed: " msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +msgid "\tBook Designer file detected." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +msgid "\tParsing HTML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +msgid "\tBaen file detected. Re-parsing..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +msgid "Written preprocessed HTML to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +msgid "Processing %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +msgid "\tConverting to BBeB..." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 msgid "Could not parse file: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:546 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +msgid "Failed to parse link %s %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +msgid "Cannot add link %s to TOC" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +msgid "Unable to process image %s. Error: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +msgid "Unable to process interlaced PNG %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +msgid "" +"Could not process image: %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +msgid "An error occurred while processing a table: %s. Ignoring table markup." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +msgid "" +"Bad table:\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +msgid "Table has cell that is too large" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +msgid "" +"You have to save the website %s as an html file first and then run html2lrf " +"on it." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1740 +msgid "Cannot read from: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1869 +msgid "Failed to process opf file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1875 +msgid "" +"Usage: %prog [options] mybook.html\n" +"\n" +"\n" +"%prog converts mybook.html to mybook.lrf. \n" +"%prog follows all links in mybook.html that point \n" +"to local files recursively. Thus, you can use it to \n" +"convert a whole tree of HTML files." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +msgid "" +"Usage: %prog [options] mybook.lit\n" +"\n" +"\n" +"%prog converts mybook.lit to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +msgid "" +"%prog [options] file.lrs\n" +"Compile an LRS file into an LRF file." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +msgid "Path to output file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +msgid "Verbose processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +msgid "Convert LRS to LRS, useful for debugging." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +msgid "" +"%prog [options] mybook.lrf\n" +"\n" +"\n" +"Show/edit the metadata in an LRF file.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 msgid "Set the book title" msgstr "Indiqueu el nom del llibre" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 msgid "Set sort key for the title" msgstr "Indiqueu la clau d'ordenació per tí­tol" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 msgid "Set the author" msgstr "Indiqueu l'autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 msgid "Set sort key for the author" msgstr "Indiqueu la clau d'ordenació per autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "Categoria a la que pertany el llibre. Per exemple, Història" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:557 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" msgstr "Camí­ al fitxer d'imatge que s'utilitzarà com a miniatura" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:560 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 msgid "Path to a txt file containing the comment to be stored in the lrf file." msgstr "Camí­ al fitxer txt que conté el comentari a desar en el fitxer LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:564 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "Extrau la miniatura del fitxer LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "Indiqueu l'ID (identificador) del llibre" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "No sé per a qué és aixó" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +msgid "" +"Usage: %prog [options] mybook.mobi|prc\n" +"\n" +"\n" +"%prog converts mybook.mobi to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +msgid "" +"%prog book.lrf\n" +"Convert an LRF file into an LRS (XML UTF-8 encoded) file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +msgid "Output LRS file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +msgid "Parsing LRF..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +msgid "Creating XML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +msgid "LRS written to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +msgid "" +"%prog [options] mybook.pdf\n" +"\n" +"\n" +"%prog converts mybook.pdf to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 msgid "" "Path to output directory in which to create the HTML file. Defaults to " @@ -379,6 +585,72 @@ msgstr "" msgid "You must specify a single PDF file." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +msgid "" +"%prog [options] mybook.rtf\n" +"\n" +"\n" +"%prog converts mybook.rtf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +msgid "" +"%prog [options] mybook.txt\n" +"\n" +"\n" +"%prog converts mybook.txt to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +msgid "Set the authors" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +msgid "Set the comment" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "Usage:" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "mybook.epub" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +msgid "" +"\n" +"%prog [options] key\n" +"\n" +"Fetch metadata for books from isndb.com. You can specify either the \n" +"books ISBN ID or its title and author. If you specify the title and author,\n" +"then more than one book may be returned.\n" +"\n" +"key is the account key you generate after signing up for a free account from " +"isbndb.com.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +msgid "The ISBN ID of the book you want metadata for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +msgid "The author whoose book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +msgid "The title of the book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +msgid "The publisher of the book to search for." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 msgid "" "Could not fetch cover as server is experiencing high load. Please try again " @@ -393,6 +665,46 @@ msgstr "" msgid "Server error. Try again later." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +msgid "" +"\n" +"%prog [options] ISBN\n" +"\n" +"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +msgid "Usage: %s file.lit" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +msgid "Cover saved to" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +msgid "Usage: pdf-meta file.pdf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +msgid "No filename specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +msgid "%prog [options] myebook.mobi" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +msgid "Output directory. Defaults to current directory." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +msgid "Raw MOBI HTML saved in" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +msgid "OEB ebook created in" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Trieu format" @@ -1501,6 +1813,10 @@ msgstr "Formats" msgid "Book %s of %s." msgstr "Llibre %s de %s." +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +msgid "Double click to edit me

" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 msgid "Author(s)" @@ -1921,11 +2237,32 @@ msgstr "" msgid "Untitled article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:35 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +msgid "" +"%%prog [options] ARG\n" +"\n" +"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" +"fetches the article contents organized in a nice hierarchy.\n" +"\n" +"ARG can be one of:\n" +"\n" +"file name - %%prog will try to load a recipe from the file\n" +"\n" +"builtin recipe title - %%prog will load the builtin recipe and use it to " +"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" +"\n" +"recipe as a string - %%prog will load the recipe directly from the string " +"arg.\n" +"\n" +"Available builtin recipes are:\n" +"%s\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:38 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -1934,52 +2271,52 @@ msgid "" "recipe is used to download the feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:42 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:45 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:49 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:82 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:86 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "" @@ -2064,6 +2401,71 @@ msgstr "" msgid "Fetching feed" msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +msgid "" +"%prog URL\n" +"\n" +"Where URL is for example http://google.com" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +msgid "Base directory into which URL is saved. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +msgid "" +"Timeout in seconds to wait for a response from the server. Default: %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +msgid "" +"Maximum number of levels to recurse i.e. depth of links to follow. Default %" +"default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +msgid "" +"The maximum number of files to download. This only applies to files from tags. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +msgid "" +"Minimum interval in seconds between consecutive fetches. Default is %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +msgid "" +"The character encoding for the websites you are trying to download. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +msgid "" +"Only links that match this regular expression will be followed. This option " +"can be specified multiple times, in which case as long as a link matches any " +"one regexp, it will be followed. By default all links are followed." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +msgid "" +"Any link that matches this regular expression will be ignored. This option " +"can be specified multiple times, in which case as long as any regexp matches " +"a link, it will be ignored.By default, no links are ignored. If both --" +"filter-regexp and --match-regexp are specified, then --filter-regexp is " +"applied first." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +msgid "Do not download CSS stylesheets." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +msgid "Show detailed output information. Useful for debugging" +msgstr "" + #~ msgid "%s is not available in LRF format. Please convert it first." #~ msgstr "%s no està disponible en LRF. Ha de ser convertir primer." diff --git a/src/libprs500/translations/data.py b/src/libprs500/translations/data.py index 232cf1ac05..e447792e9b 100644 --- a/src/libprs500/translations/data.py +++ b/src/libprs500/translations/data.py @@ -1 +1 @@ -translations = {'fr': '\xde\x12\x04\x95\x00\x00\x00\x00\xa1\x01\x00\x00\x1c\x00\x00\x00$\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x1a\x00\x00\x0e\x00\x00\x00-\x1a\x00\x00!\x00\x00\x00<\x1a\x00\x00\x05\x00\x00\x00^\x1a\x00\x00\x06\x00\x00\x00d\x1a\x00\x00\x17\x00\x00\x00k\x1a\x00\x00\x0b\x00\x00\x00\x83\x1a\x00\x00\x04\x00\x00\x00\x8f\x1a\x00\x00\x03\x00\x00\x00\x94\x1a\x00\x00\x08\x00\x00\x00\x98\x1a\x00\x00\x06\x00\x00\x00\xa1\x1a\x00\x00\x1c\x00\x00\x00\xa8\x1a\x00\x00\x0e\x00\x00\x00\xc5\x1a\x00\x00\x0c\x00\x00\x00\xd4\x1a\x00\x00\t\x00\x00\x00\xe1\x1a\x00\x00\t\x00\x00\x00\xeb\x1a\x00\x00\x0c\x00\x00\x00\xf5\x1a\x00\x00\x0f\x00\x00\x00\x02\x1b\x00\x00\x11\x00\x00\x00\x12\x1b\x00\x00\x1a\x00\x00\x00$\x1b\x00\x00\x0c\x00\x00\x00?\x1b\x00\x00\x1d\x00\x00\x00L\x1b\x00\x00\x0f\x00\x00\x00j\x1b\x00\x00\r\x00\x00\x00z\x1b\x00\x00)\x00\x00\x00\x88\x1b\x00\x00"\x00\x00\x00\xb2\x1b\x00\x00\x18\x00\x00\x00\xd5\x1b\x00\x00\x0b\x00\x00\x00\xee\x1b\x00\x00\x10\x00\x00\x00\xfa\x1b\x00\x00\x17\x00\x00\x00\x0b\x1c\x00\x00\n\x00\x00\x00#\x1c\x00\x00\x0c\x00\x00\x00.\x1c\x00\x00\x1e\x00\x00\x00;\x1c\x00\x00\t\x00\x00\x00Z\x1c\x00\x00\x0c\x00\x00\x00d\x1c\x00\x00\x08\x00\x00\x00q\x1c\x00\x00\x14\x00\x00\x00z\x1c\x00\x00\x0e\x00\x00\x00\x8f\x1c\x00\x00\r\x00\x00\x00\x9e\x1c\x00\x00\x0e\x00\x00\x00\xac\x1c\x00\x00\x08\x00\x00\x00\xbb\x1c\x00\x00\x08\x00\x00\x00\xc4\x1c\x00\x00\x07\x00\x00\x00\xcd\x1c\x00\x00\x0c\x00\x00\x00\xd5\x1c\x00\x00\x0e\x00\x00\x00\xe2\x1c\x00\x00\x12\x00\x00\x00\xf1\x1c\x00\x00\x05\x00\x00\x00\x04\x1d\x00\x00\x08\x00\x00\x00\n\x1d\x00\x00\x0c\x00\x00\x00\x13\x1d\x00\x00\n\x00\x00\x00 \x1d\x00\x00\x0e\x00\x00\x00+\x1d\x00\x00\x03\x00\x00\x00:\x1d\x00\x001\x00\x00\x00>\x1d\x00\x00"\x00\x00\x00p\x1d\x00\x00=\x00\x00\x00\x93\x1d\x00\x00\x18\x00\x00\x00\xd1\x1d\x00\x00+\x00\x00\x00\xea\x1d\x00\x00\x00\x02\x00\x00\x16\x1e\x00\x00\xa3\x01\x00\x00\x17 \x00\x00\x82\x02\x00\x00\xbb!\x00\x00>\x00\x00\x00>$\x00\x00S\x00\x00\x00}$\x00\x005\x00\x00\x00\xd1$\x00\x00p\x00\x00\x00\x07%\x00\x00a\x00\x00\x00x%\x00\x00G\x00\x00\x00\xda%\x00\x00(\x00\x00\x00"&\x00\x00\xa7\x00\x00\x00K&\x00\x00W\x00\x00\x00\xf3&\x00\x00\x96\x00\x00\x00K\'\x00\x00=\x01\x00\x00\xe2\'\x00\x002\x00\x00\x00 )\x00\x00\x01\x00\x00\x00S)\x00\x00C\x00\x00\x00U)\x00\x00X\x00\x00\x00\x99)\x00\x00\r\x00\x00\x00\xf2)\x00\x00\x0f\x00\x00\x00\x00*\x00\x00\x0b\x00\x00\x00\x10*\x00\x00\x0b\x00\x00\x00\x1c*\x00\x00\x18\x00\x00\x00(*\x00\x007\x00\x00\x00A*\x00\x004\x00\x00\x00y*\x00\x00.\x00\x00\x00\xae*\x00\x00\t\x00\x00\x00\xdd*\x00\x00!\x00\x00\x00\xe7*\x00\x00b\x00\x00\x00\t+\x00\x00o\x00\x00\x00l+\x00\x00\x16\x00\x00\x00\xdc+\x00\x00\x12\x00\x00\x00\xf3+\x00\x006\x00\x00\x00\x06,\x00\x00\x12\x00\x00\x00=,\x00\x00m\x00\x00\x00P,\x00\x00\x08\x00\x00\x00\xbe,\x00\x00\x0f\x00\x00\x00\xc7,\x00\x00\x0f\x00\x00\x00\xd7,\x00\x00\x0e\x00\x00\x00\xe7,\x00\x00\x05\x00\x00\x00\xf6,\x00\x00\x03\x00\x00\x00\xfc,\x00\x00\x19\x00\x00\x00\x00-\x00\x00\x1b\x00\x00\x00\x1a-\x00\x00\x16\x00\x00\x006-\x00\x00\x06\x00\x00\x00M-\x00\x00\x0e\x00\x00\x00T-\x00\x00\r\x00\x00\x00c-\x00\x00\t\x00\x00\x00q-\x00\x00\x08\x00\x00\x00{-\x00\x00\x11\x00\x00\x00\x84-\x00\x00\x16\x00\x00\x00\x96-\x00\x00\x04\x00\x00\x00\xad-\x00\x00\x10\x00\x00\x00\xb2-\x00\x00\x05\x00\x00\x00\xc3-\x00\x00!\x00\x00\x00\xc9-\x00\x00\x10\x00\x00\x00\xeb-\x00\x00\x05\x00\x00\x00\xfc-\x00\x00(\x00\x00\x00\x02.\x00\x00\n\x00\x00\x00+.\x00\x00.\x00\x00\x006.\x00\x005\x00\x00\x00e.\x00\x00$\x00\x00\x00\x9b.\x00\x00\x0c\x00\x00\x00\xc0.\x00\x00\x1a\x00\x00\x00\xcd.\x00\x00\x10\x00\x00\x00\xe8.\x00\x00.\x00\x00\x00\xf9.\x00\x00\x0e\x00\x00\x00(/\x00\x00\x0e\x00\x00\x007/\x00\x007\x00\x00\x00F/\x00\x00\x14\x00\x00\x00~/\x00\x00\x12\x00\x00\x00\x93/\x00\x00#\x00\x00\x00\xa6/\x00\x00\x0f\x00\x00\x00\xca/\x00\x00Z\x00\x00\x00\xda/\x00\x00\x19\x00\x00\x0050\x00\x00\x0b\x00\x00\x00O0\x00\x00\x13\x00\x00\x00[0\x00\x00\x0b\x00\x00\x00o0\x00\x00\x11\x00\x00\x00{0\x00\x00\x08\x00\x00\x00\x8d0\x00\x00\x14\x00\x00\x00\x960\x00\x00\x0f\x00\x00\x00\xab0\x00\x00R\x00\x00\x00\xbb0\x00\x00!\x00\x00\x00\x0e1\x00\x00\x1d\x00\x00\x0001\x00\x00H\x00\x00\x00N1\x00\x00\x11\x00\x00\x00\x971\x00\x00\r\x00\x00\x00\xa91\x00\x00%\x00\x00\x00\xb71\x00\x00\x19\x00\x00\x00\xdd1\x00\x00!\x00\x00\x00\xf71\x00\x007\x00\x00\x00\x192\x00\x00\x08\x00\x00\x00Q2\x00\x00\r\x00\x00\x00Z2\x00\x00\t\x00\x00\x00h2\x00\x00\x10\x00\x00\x00r2\x00\x00\x11\x00\x00\x00\x832\x00\x00\x0f\x00\x00\x00\x952\x00\x00\x14\x00\x00\x00\xa52\x00\x00\x0e\x00\x00\x00\xba2\x00\x00\x1c\x00\x00\x00\xc92\x00\x00;\x00\x00\x00\xe62\x00\x00\x15\x00\x00\x00"3\x00\x00R\x00\x00\x0083\x00\x00\x17\x00\x00\x00\x8b3\x00\x00\x18\x00\x00\x00\xa33\x00\x00\x0b\x00\x00\x00\xbc3\x00\x00\x13\x00\x00\x00\xc83\x00\x00\x04\x00\x00\x00\xdc3\x00\x00\x19\x00\x00\x00\xe13\x00\x00\x03\x00\x00\x00\xfb3\x00\x00h\x00\x00\x00\xff3\x00\x00\x0e\x00\x00\x00h4\x00\x00\x1b\x00\x00\x00w4\x00\x00\x1a\x00\x00\x00\x934\x00\x00\x11\x00\x00\x00\xae4\x00\x00\x19\x00\x00\x00\xc04\x00\x00\x11\x00\x00\x00\xda4\x00\x00\x01\x00\x00\x00\xec4\x00\x00\x05\x00\x00\x00\xee4\x00\x00\x15\x00\x00\x00\xf44\x00\x00\x15\x00\x00\x00\n5\x00\x00\x15\x00\x00\x00 5\x00\x00\x15\x00\x00\x0065\x00\x00\x1a\x00\x00\x00L5\x00\x00\x0e\x00\x00\x00g5\x00\x00\x1f\x00\x00\x00v5\x00\x00C\x00\x00\x00\x965\x00\x00\x05\x00\x00\x00\xda5\x00\x00\x1f\x00\x00\x00\xe05\x00\x00\x12\x00\x00\x00\x006\x00\x00\x17\x00\x00\x00\x136\x00\x00\x1f\x00\x00\x00+6\x00\x00\'\x00\x00\x00K6\x00\x003\x00\x00\x00s6\x00\x00*\x00\x00\x00\xa76\x00\x00\n\x00\x00\x00\xd26\x00\x00\x14\x00\x00\x00\xdd6\x00\x00\x16\x00\x00\x00\xf26\x00\x00\x16\x00\x00\x00\t7\x00\x00\x0f\x00\x00\x00 7\x00\x00\x05\x00\x00\x0007\x00\x00\x1d\x00\x00\x0067\x00\x00\x0e\x00\x00\x00T7\x00\x00\x1a\x00\x00\x00c7\x00\x00\n\x00\x00\x00~7\x00\x00\x10\x00\x00\x00\x897\x00\x00\r\x00\x00\x00\x9a7\x00\x00\x11\x00\x00\x00\xa87\x00\x00\x1f\x00\x00\x00\xba7\x00\x00\x13\x00\x00\x00\xda7\x00\x00\x1b\x00\x00\x00\xee7\x00\x00\x05\x00\x00\x00\n8\x00\x00\x0b\x00\x00\x00\x108\x00\x008\x00\x00\x00\x1c8\x00\x00\x08\x00\x00\x00U8\x00\x00\x8a\x00\x00\x00^8\x00\x00\x1d\x01\x00\x00\xe98\x00\x00J\x00\x00\x00\x07:\x00\x00#\x00\x00\x00R:\x00\x00\x04\x00\x00\x00v:\x00\x00\x06\x00\x00\x00{:\x00\x00\x07\x00\x00\x00\x82:\x00\x00\x07\x00\x00\x00\x8a:\x00\x00\'\x00\x00\x00\x92:\x00\x00\x1b\x00\x00\x00\xba:\x00\x00\x19\x00\x00\x00\xd6:\x00\x00\x06\x00\x00\x00\xf0:\x00\x00\x0c\x00\x00\x00\xf7:\x00\x00\t\x00\x00\x00\x04;\x00\x00\x06\x00\x00\x00\x0e;\x00\x00\xdc\x01\x00\x00\x15;\x00\x00n\x00\x00\x00\xf2<\x00\x00a\x00\x00\x00a=\x00\x00\x0e\x00\x00\x00\xc3=\x00\x00\x0e\x00\x00\x00\xd2=\x00\x00\xa8\x00\x00\x00\xe1=\x00\x00&\x00\x00\x00\x8a>\x00\x00\x10\x00\x00\x00\xb1>\x00\x00\x19\x00\x00\x00\xc2>\x00\x00\x1a\x00\x00\x00\xdc>\x00\x00.\x00\x00\x00\xf7>\x00\x00\r\x00\x00\x00&?\x00\x00\x1a\x00\x00\x004?\x00\x00\x1e\x00\x00\x00O?\x00\x00\x03\x00\x00\x00n?\x00\x00\x12\x00\x00\x00r?\x00\x00\x05\x00\x00\x00\x85?\x00\x00\n\x00\x00\x00\x8b?\x00\x00,\x00\x00\x00\x96?\x00\x00\x07\x00\x00\x00\xc3?\x00\x00-\x00\x00\x00\xcb?\x00\x00\x0b\x00\x00\x00\xf9?\x00\x00$\x00\x00\x00\x05@\x00\x00$\x00\x00\x00*@\x00\x00\x07\x00\x00\x00O@\x00\x000\x00\x00\x00W@\x00\x00\x10\x00\x00\x00\x88@\x00\x00\x08\x00\x00\x00\x99@\x00\x00y\x00\x00\x00\xa2@\x00\x00\x10\x00\x00\x00\x1cA\x00\x00\x04\x00\x00\x00-A\x00\x00\x06\x00\x00\x002A\x00\x00"\x00\x00\x009A\x00\x00\t\x00\x00\x00\\A\x00\x00\n\x00\x00\x00fA\x00\x00\x14\x00\x00\x00qA\x00\x00\x10\x00\x00\x00\x86A\x00\x00\x11\x00\x00\x00\x97A\x00\x00\x08\x00\x00\x00\xa9A\x00\x00\x10\x00\x00\x00\xb2A\x00\x00\x12\x00\x00\x00\xc3A\x00\x00\x04\x00\x00\x00\xd6A\x00\x00^\x00\x00\x00\xdbA\x00\x00\x0f\x00\x00\x00:B\x00\x00\n\x00\x00\x00JB\x00\x00\x07\x00\x00\x00UB\x00\x00-\x00\x00\x00]B\x00\x00+\x00\x00\x00\x8bB\x00\x00F\x00\x00\x00\xb7B\x00\x008\x00\x00\x00\xfeB\x00\x00s\x00\x00\x007C\x00\x00\x0f\x00\x00\x00\xabC\x00\x00\n\x00\x00\x00\xbbC\x00\x00\x10\x00\x00\x00\xc6C\x00\x00:\x00\x00\x00\xd7C\x00\x00\x0f\x00\x00\x00\x12D\x00\x00\x04\x00\x00\x00"D\x00\x00;\x00\x00\x00\'D\x00\x00G\x00\x00\x00cD\x00\x001\x00\x00\x00\xabD\x00\x00Y\x00\x00\x00\xddD\x00\x004\x00\x00\x007E\x00\x00\x80\x00\x00\x00lE\x00\x00H\x00\x00\x00\xedE\x00\x00\r\x00\x00\x006F\x00\x00\xbc\x00\x00\x00DF\x00\x00\x08\x00\x00\x00\x01G\x00\x00\t\x00\x00\x00\nG\x00\x00\x06\x00\x00\x00\x14G\x00\x00\x1e\x00\x00\x00\x1bG\x00\x00\x13\x00\x00\x00:G\x00\x00\x0e\x00\x00\x00NG\x00\x00\x1b\x00\x00\x00]G\x00\x00\x13\x00\x00\x00yG\x00\x00+\x00\x00\x00\x8dG\x00\x00*\x00\x00\x00\xb9G\x00\x000\x00\x00\x00\xe4G\x00\x00)\x00\x00\x00\x15H\x00\x00<\x00\x00\x00?H\x00\x00\x0c\x00\x00\x00|H\x00\x00\x17\x00\x00\x00\x89H\x00\x00<\x00\x00\x00\xa1H\x00\x000\x00\x00\x00\xdeH\x00\x00\x84\x00\x00\x00\x0fI\x00\x00X\x00\x00\x00\x94I\x00\x00\x0f\x00\x00\x00\xedI\x00\x00\x12\x00\x00\x00\xfdI\x00\x00-\x00\x00\x00\x10J\x00\x00\x0c\x00\x00\x00>J\x00\x00\x0c\x00\x00\x00KJ\x00\x00\x0c\x00\x00\x00XJ\x00\x00"\x00\x00\x00eJ\x00\x009\x00\x00\x00\x88J\x00\x00\x0f\x00\x00\x00\xc2J\x00\x00V\x00\x00\x00\xd2J\x00\x00r\x00\x00\x00)K\x00\x00G\x00\x00\x00\x9cK\x00\x00\'\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00\x0cL\x00\x00\x13\x00\x00\x00\x1bL\x00\x00\x14\x00\x00\x00/L\x00\x00#\x00\x00\x00DL\x00\x00\x06\x00\x00\x00hL\x00\x00\r\x00\x00\x00oL\x00\x00\r\x00\x00\x00}L\x00\x00\x07\x00\x00\x00\x8bL\x00\x00\x1e\x00\x00\x00\x93L\x00\x00\x0b\x00\x00\x00\xb2L\x00\x00\x17\x00\x00\x00\xbeL\x00\x00\x1b\x00\x00\x00\xd6L\x00\x00\x1a\x00\x00\x00\xf2L\x00\x00\x0e\x00\x00\x00\rM\x00\x00^\x00\x00\x00\x1cM\x00\x00\x12\x00\x00\x00{M\x00\x00\x10\x00\x00\x00\x8eM\x00\x00\x10\x00\x00\x00\x9fM\x00\x00g\x00\x00\x00\xb0M\x00\x00c\x00\x00\x00\x18N\x00\x007\x00\x00\x00|N\x00\x00!\x00\x00\x00\xb4N\x00\x00d\x00\x00\x00\xd6N\x00\x00\t\x00\x00\x00;O\x00\x00\x17\x00\x00\x00EO\x00\x00\x16\x00\x00\x00]O\x00\x00\x11\x00\x00\x00tO\x00\x00\x04\x01\x00\x00\x86O\x00\x00z\x00\x00\x00\x8bP\x00\x00\x85\x00\x00\x00\x06Q\x00\x00\xb6\x00\x00\x00\x8cQ\x00\x00P\x00\x00\x00CR\x00\x00+\x01\x00\x00\x94R\x00\x00#\x00\x00\x00\xc0S\x00\x00\x06\x00\x00\x00\xe4S\x00\x00\x17\x00\x00\x00\xebS\x00\x00\x14\x00\x00\x00\x03T\x00\x00\x07\x00\x00\x00\x18T\x00\x00\x03\x00\x00\x00 T\x00\x00\n\x00\x00\x00$T\x00\x00\x13\x00\x00\x00/T\x00\x00\x04\x00\x00\x00CT\x00\x00\x85\x00\x00\x00HT\x00\x00\x04\x00\x00\x00\xceT\x00\x00\t\x00\x00\x00\xd3T\x00\x000\x00\x00\x00\xddT\x00\x00X\x00\x00\x00\x0eU\x00\x00\x1b\x00\x00\x00gU\x00\x00\x1a\x00\x00\x00\x83U\x00\x00\x9d\x00\x00\x00\x9eU\x00\x00&\x00\x00\x00\x7f\x00\x00\x18\x00\x00\x00O\x7f\x00\x00#\x00\x00\x00h\x7f\x00\x00\x01\x00\x00\x00\x8c\x7f\x00\x00\x06\x00\x00\x00\x8e\x7f\x00\x00\x14\x00\x00\x00\x95\x7f\x00\x00 \x00\x00\x00\xaa\x7f\x00\x00\x14\x00\x00\x00\xcb\x7f\x00\x00\x1c\x00\x00\x00\xe0\x7f\x00\x00%\x00\x00\x00\xfd\x7f\x00\x00\x0f\x00\x00\x00#\x80\x00\x00"\x00\x00\x003\x80\x00\x00Q\x00\x00\x00V\x80\x00\x00\x06\x00\x00\x00\xa8\x80\x00\x00=\x00\x00\x00\xaf\x80\x00\x00\x1f\x00\x00\x00\xed\x80\x00\x00=\x00\x00\x00\r\x81\x00\x00"\x00\x00\x00K\x81\x00\x00,\x00\x00\x00n\x81\x00\x00:\x00\x00\x00\x9b\x81\x00\x00/\x00\x00\x00\xd6\x81\x00\x00\n\x00\x00\x00\x06\x82\x00\x00\x17\x00\x00\x00\x11\x82\x00\x00\x1a\x00\x00\x00)\x82\x00\x00$\x00\x00\x00D\x82\x00\x00\x11\x00\x00\x00i\x82\x00\x00\n\x00\x00\x00{\x82\x00\x009\x00\x00\x00\x86\x82\x00\x00\x1b\x00\x00\x00\xc0\x82\x00\x00-\x00\x00\x00\xdc\x82\x00\x00\x14\x00\x00\x00\n\x83\x00\x00\x17\x00\x00\x00\x1f\x83\x00\x00\x0c\x00\x00\x007\x83\x00\x00\x10\x00\x00\x00D\x83\x00\x00*\x00\x00\x00U\x83\x00\x00\x17\x00\x00\x00\x80\x83\x00\x00\x1d\x00\x00\x00\x98\x83\x00\x00\x07\x00\x00\x00\xb6\x83\x00\x00\x0b\x00\x00\x00\xbe\x83\x00\x00B\x00\x00\x00\xca\x83\x00\x00\x06\x00\x00\x00\r\x84\x00\x00\xc3\x00\x00\x00\x14\x84\x00\x005\x01\x00\x00\xd8\x84\x00\x00[\x00\x00\x00\x0e\x86\x00\x00)\x00\x00\x00j\x86\x00\x00\x03\x00\x00\x00\x94\x86\x00\x00\x06\x00\x00\x00\x98\x86\x00\x00\x07\x00\x00\x00\x9f\x86\x00\x00\x06\x00\x00\x00\xa7\x86\x00\x004\x00\x00\x00\xae\x86\x00\x00#\x00\x00\x00\xe3\x86\x00\x00\x1e\x00\x00\x00\x07\x87\x00\x00\t\x00\x00\x00&\x87\x00\x00\x04\x00\x00\x000\x87\x00\x00\x0b\x00\x00\x005\x87\x00\x00\x07\x00\x00\x00A\x87\x00\x00\x1b\x02\x00\x00I\x87\x00\x00\x8f\x00\x00\x00e\x89\x00\x00n\x00\x00\x00\xf5\x89\x00\x00\x16\x00\x00\x00d\x8a\x00\x00\x12\x00\x00\x00{\x8a\x00\x00\xcc\x00\x00\x00\x8e\x8a\x00\x002\x00\x00\x00[\x8b\x00\x00\x19\x00\x00\x00\x8e\x8b\x00\x00\x1e\x00\x00\x00\xa8\x8b\x00\x00\x1e\x00\x00\x00\xc7\x8b\x00\x006\x00\x00\x00\xe6\x8b\x00\x00\x12\x00\x00\x00\x1d\x8c\x00\x00\x1f\x00\x00\x000\x8c\x00\x00#\x00\x00\x00P\x8c\x00\x00\x07\x00\x00\x00t\x8c\x00\x00"\x00\x00\x00|\x8c\x00\x00\t\x00\x00\x00\x9f\x8c\x00\x00\x11\x00\x00\x00\xa9\x8c\x00\x002\x00\x00\x00\xbb\x8c\x00\x00\t\x00\x00\x00\xee\x8c\x00\x00C\x00\x00\x00\xf8\x8c\x00\x00\r\x00\x00\x00<\x8d\x00\x003\x00\x00\x00J\x8d\x00\x009\x00\x00\x00~\x8d\x00\x00\x19\x00\x00\x00\xb8\x8d\x00\x001\x00\x00\x00\xd2\x8d\x00\x00\x17\x00\x00\x00\x04\x8e\x00\x00\x08\x00\x00\x00\x1c\x8e\x00\x00\xa1\x00\x00\x00%\x8e\x00\x00\x17\x00\x00\x00\xc7\x8e\x00\x00\x04\x00\x00\x00\xdf\x8e\x00\x00\n\x00\x00\x00\xe4\x8e\x00\x006\x00\x00\x00\xef\x8e\x00\x00\r\x00\x00\x00&\x8f\x00\x00\x11\x00\x00\x004\x8f\x00\x00\x17\x00\x00\x00F\x8f\x00\x00\x19\x00\x00\x00^\x8f\x00\x00\x19\x00\x00\x00x\x8f\x00\x00\x0c\x00\x00\x00\x92\x8f\x00\x00\x0f\x00\x00\x00\x9f\x8f\x00\x00>\x00\x00\x00\xaf\x8f\x00\x00\x05\x00\x00\x00\xee\x8f\x00\x00_\x00\x00\x00\xf4\x8f\x00\x00\x1e\x00\x00\x00T\x90\x00\x00\x0f\x00\x00\x00s\x90\x00\x00\x07\x00\x00\x00\x83\x90\x00\x00\x1d\x00\x00\x00\x8b\x90\x00\x00\x1b\x00\x00\x00\xa9\x90\x00\x00H\x00\x00\x00\xc5\x90\x00\x00D\x00\x00\x00\x0e\x91\x00\x00\x95\x00\x00\x00S\x91\x00\x00\x12\x00\x00\x00\xe9\x91\x00\x00\x0c\x00\x00\x00\xfc\x91\x00\x00\x14\x00\x00\x00\t\x92\x00\x00J\x00\x00\x00\x1e\x92\x00\x00\x18\x00\x00\x00i\x92\x00\x00\x06\x00\x00\x00\x82\x92\x00\x00F\x00\x00\x00\x89\x92\x00\x00[\x00\x00\x00\xd0\x92\x00\x00@\x00\x00\x00,\x93\x00\x00r\x00\x00\x00m\x93\x00\x00M\x00\x00\x00\xe0\x93\x00\x00\x8c\x00\x00\x00.\x94\x00\x00S\x00\x00\x00\xbb\x94\x00\x00\x11\x00\x00\x00\x0f\x95\x00\x00\xbc\x00\x00\x00!\x95\x00\x00\x0b\x00\x00\x00\xde\x95\x00\x00\x07\x00\x00\x00\xea\x95\x00\x00\x04\x00\x00\x00\xf2\x95\x00\x00$\x00\x00\x00\xf7\x95\x00\x00\x16\x00\x00\x00\x1c\x96\x00\x00\x13\x00\x00\x003\x96\x00\x00 \x00\x00\x00G\x96\x00\x00\x14\x00\x00\x00h\x96\x00\x00-\x00\x00\x00}\x96\x00\x00-\x00\x00\x00\xab\x96\x00\x002\x00\x00\x00\xd9\x96\x00\x00+\x00\x00\x00\x0c\x97\x00\x00J\x00\x00\x008\x97\x00\x00\x14\x00\x00\x00\x83\x97\x00\x00\x1d\x00\x00\x00\x98\x97\x00\x00E\x00\x00\x00\xb6\x97\x00\x001\x00\x00\x00\xfc\x97\x00\x00\xae\x00\x00\x00.\x98\x00\x00N\x00\x00\x00\xdd\x98\x00\x00\x10\x00\x00\x00,\x99\x00\x00(\x00\x00\x00=\x99\x00\x002\x00\x00\x00f\x99\x00\x00\x08\x00\x00\x00\x99\x99\x00\x00\r\x00\x00\x00\xa2\x99\x00\x00\x19\x00\x00\x00\xb0\x99\x00\x004\x00\x00\x00\xca\x99\x00\x00=\x00\x00\x00\xff\x99\x00\x00\r\x00\x00\x00=\x9a\x00\x00i\x00\x00\x00K\x9a\x00\x00\x87\x00\x00\x00\xb5\x9a\x00\x00Q\x00\x00\x00=\x9b\x00\x000\x00\x00\x00\x8f\x9b\x00\x00\x12\x00\x00\x00\xc0\x9b\x00\x00!\x00\x00\x00\xd3\x9b\x00\x00\x1c\x00\x00\x00\xf5\x9b\x00\x000\x00\x00\x00\x12\x9c\x00\x00\x07\x00\x00\x00C\x9c\x00\x00\x10\x00\x00\x00K\x9c\x00\x00\r\x00\x00\x00\\\x9c\x00\x00\x07\x00\x00\x00j\x9c\x00\x001\x00\x00\x00r\x9c\x00\x00\x16\x00\x00\x00\xa4\x9c\x00\x002\x00\x00\x00\xbb\x9c\x00\x00%\x00\x00\x00\xee\x9c\x00\x00%\x00\x00\x00\x14\x9d\x00\x00\x11\x00\x00\x00:\x9d\x00\x00b\x00\x00\x00L\x9d\x00\x00\x1a\x00\x00\x00\xaf\x9d\x00\x00\x16\x00\x00\x00\xca\x9d\x00\x00\x17\x00\x00\x00\xe1\x9d\x00\x00\x95\x00\x00\x00\xf9\x9d\x00\x00r\x00\x00\x00\x8f\x9e\x00\x00B\x00\x00\x00\x02\x9f\x00\x000\x00\x00\x00E\x9f\x00\x00}\x00\x00\x00v\x9f\x00\x00\x0b\x00\x00\x00\xf4\x9f\x00\x00\x19\x00\x00\x00\x00\xa0\x00\x00\x19\x00\x00\x00\x1a\xa0\x00\x00\x1c\x00\x00\x004\xa0\x00\x00\x1c\x01\x00\x00Q\xa0\x00\x00\x81\x00\x00\x00n\xa1\x00\x00\x96\x00\x00\x00\xf0\xa1\x00\x00\xbd\x00\x00\x00\x87\xa2\x00\x00c\x00\x00\x00E\xa3\x00\x00b\x01\x00\x00\xa9\xa3\x00\x00%\x00\x00\x00\x0c\xa5\x00\x00\x06\x00\x00\x002\xa5\x00\x00\x1f\x00\x00\x009\xa5\x00\x00\x18\x00\x00\x00Y\xa5\x00\x00\x07\x00\x00\x00r\xa5\x00\x00\x07\x00\x00\x00z\xa5\x00\x00\x15\x00\x00\x00\x82\xa5\x00\x00\x1e\x00\x00\x00\x98\xa5\x00\x00\x04\x00\x00\x00\xb7\xa5\x00\x00\x94\x00\x00\x00\xbc\xa5\x00\x00\x04\x00\x00\x00Q\xa6\x00\x00\t\x00\x00\x00V\xa6\x00\x00A\x00\x00\x00`\xa6\x00\x00l\x00\x00\x00\xa2\xa6\x00\x00\x1a\x00\x00\x00\x0f\xa7\x00\x00\x1a\x00\x00\x00*\xa7\x00\x00\xb2\x00\x00\x00E\xa7\x00\x00)\x00\x00\x00\xf8\xa7\x00\x00#\x00\x00\x00"\xa8\x00\x00\xa6\x00\x00\x00F\xa8\x00\x00*\x00\x00\x00\xed\xa8\x00\x00%\x00\x00\x00\x18\xa9\x00\x00^\x00\x00\x00>\xa9\x00\x00s\x00\x00\x00\x9d\xa9\x00\x00\xae\x00\x00\x00\x11\xaa\x00\x005\x00\x00\x00\xc0\xaa\x00\x00\n\x00\x00\x00\xf6\xaa\x00\x00\x05\x00\x00\x00\x01\xab\x00\x00 \x00\x00\x00\x07\xab\x00\x00\x06\x00\x00\x00(\xab\x00\x008\x00\x00\x00/\xab\x00\x00!\x00\x00\x00h\xab\x00\x00%\x00\x00\x00\x8a\xab\x00\x00\x0c\x00\x00\x00\xb0\xab\x00\x00\x07\x00\x00\x00\xbd\xab\x00\x00\x1b\x00\x00\x00\xc5\xab\x00\x00\x0e\x00\x00\x00\xe1\xab\x00\x00\x12\x00\x00\x00\xf0\xab\x00\x00\x12\x00\x00\x00\x03\xac\x00\x00;\x00\x00\x00\x16\xac\x00\x000\x00\x00\x00R\xac\x00\x00\xca\x00\x00\x00\x83\xac\x00\x00F\x00\x00\x00N\xad\x00\x00\x1e\x00\x00\x00\x95\xad\x00\x00i\x00\x00\x00\xb4\xad\x00\x00N\x00\x00\x00\x1e\xae\x00\x007\x00\x00\x00m\xae\x00\x00\n\x00\x00\x00\xa5\xae\x00\x00\x19\x00\x00\x00\xb0\xae\x00\x00\n\x00\x00\x00\xca\xae\x00\x00\x08\x00\x00\x00\xd5\xae\x00\x00B\x00\x00\x00\xde\xae\x00\x00s\x00\x00\x00!\xaf\x00\x001\x00\x00\x00\x95\xaf\x00\x00<\x00\x00\x00\xc7\xaf\x00\x002\x00\x00\x00\x04\xb0\x00\x00\n\x00\x00\x007\xb0\x00\x00\t\x00\x00\x00B\xb0\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00Changes will only take affect after a restart.\x00Could not fetch cover.
\x00No matches for the search phrase %s were found.\x00
Must be a directory.\x00No help available\x00\n

Create a basic news recipe, by adding RSS feeds to it.
For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.

\x00\n

\x00\n

For help visit libprs500.kovidgoyal.net

libprs500: %1 by Kovid Goyal %2
%3

\x00
  • book-designer - HTML0 files from Book Designer
  • \x00
  • pdftohtml - HTML files that are the output of the program pdftohtml
  • \x00
    1. baen - Books from BAEN Publishers
    2. \x00

      An invalid database already exists at %s, delete it before trying to move the existing database.
      Error: %s\x00

      Books with the same title as the following already exist in the database. Add them anyway?

        \x00

        Cannot upload books to device there is no more free space available \x00

        Could not create recipe. Error:
        %s\x00

        Enter your username and password for LibraryThing.com.
        If you do not have one, you can register for free!.

        \x00

        Negate this match. That is, only return results that do not match this query.\x00

        Please enter your username and password for %s
        If you do not have one, please subscribe to get access to the articles.
        Click OK to proceed.\x00

        Set a regular expression pattern to use when trying to guess ebook metadata from filenames.

        A reference on the syntax of regular expressions is available.

        Use the Test functionality below to test your regular expression on a few sample filenames.\x00

        There was an error reading from file:
        \x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book %s of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for %1\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit User Recipes\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.
        Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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 for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P)\x00Regular expression group name (?P)\x00Regular expression group name (?P)\x00Regular expression group name (?P)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: libprs500 0.4.22\nPOT-Creation-Date: 2008-03-31 15:53+PDT\nPO-Revision-Date: 2008-01-20 09:59+0100\nLast-Translator: FixB <fix.bornes@free.fr>\nLanguage-Team: fr\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\n\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\nArtikel %s von %s geladen\n%s\x00 Tage\x00 von\x00 n\'est pas une image vailde\x00 pas trouv\xc3\xa9.\x00 pts\x00 px\x00 secondes\x00 \xc3\xa9toiles\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00&Access Key;\x00Feed &anf\xc3\xbcgen\x00Ajoute mot-clef\x00&Auteurs :\x00Marge &Basse :\x00Datenbank verdi&chten\x00&D\xc3\xa9sactive la d\xc3\xa9tection de chapitres\x00&Feed Titel:\x00&Force un saut de page avant le tag:\x00Format de l\'&en-t\xc3\xaate\x00Marge &Gauche :\x00&Emplacement de la base de donn\xc3\xa9es (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace :\x00\xc3\x84<ester Artikel:\x00Saut de &page avant le tag:\x00Mot de &passe :\x00&Preprocess :\x00&Priorit\xc3\xa9 pour les travaux de conversion :\x00&Profil :\x00&Editeur :\x00&Note :\x00Expression &R\xc3\xa9guli\xc3\xa8re :\x00Rezept entfe&rnen\x00&Supprime des mots-clefs :\x00Marge &Droite :\x00&Recherche :\x00&S\xc3\xa9ries :\x00&Serif :\x00&Affiche l\'en-t\xc3\xaate\x00&Affiche le mot de passe\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&Titre :\x00Marge &Haute :\x00Nom de l\'&utilisateur :\x00Espacement entre &mots :\x00...\x00<b>Les modifications ne seront prises en compte qu\'apr\xc3\xa8s avoir relanc\xc3\xa9 le programme.\x00<b>Erreur \xc3\xa0 la r\xc3\xa9cup\xc3\xa9ration de l\'image de couverture.</b><br/>\x00<b>Aucun r\xc3\xa9sultat</b> pour la recherche <i>%s</i>.\x00<br>Doit \xc3\xaatre un r\xc3\xa9pertoire.\x00<font color="gray">Aucune aide n\'est disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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 gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Fichiers HTML0 g\xc3\xa9n\xc3\xa9r\xc3\xa9s avec Book Designer</li>\x00<li><b>pdftohtml</b> - fichiers HTML g\xc3\xa9n\xc3\xa9r\xc3\xa9s par le programme pdftohtml</li>\x00<ol><li><b>baen</b> -Livres des \xc3\xa9ditions BAEN </li>\x00<p>Une base de donn\xc3\xa9es invalide existe d\xc3\xa9j\xc3\xa0 ici : %s, spprimez la avant d\'essayer de d\xc3\xa9placer la base de donn\xc3\xa9es existante.<br>Erreur : %s\x00<p>Des livres ayant le m\xc3\xaame titre existent d\xc3\xa9j\xc3\xa0 dans la base de donn\xc3\xa9es. Les ajouter quand m\xc3\xaame ?<ul>\x00<p>Impossible d\'envoyer les livres sur le lecteur : il n\'y a plus assez d\'espace m\xc3\xa9moire disponible\x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Veuillez saisir votre nom d\'utilisateur et votre mot de passe de <b>LibraryThing.com</b>. <br/>Si vous n\'en avez pas, vous pouvez <a href=\'http://www.librarything.com\'>y cr\xc3\xa9er un compte </a> gratuitement !</p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Il y a eu une erreur \xc3\xa0 la lecture du fichier : <br /><b>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Une expression r\xc3\xa9guli\xc3\xa8re. Les tags <a> qui respectent cette expression seront ignor\xc3\xa9s. Par d\xc3\xa9faut : %default\x00Mots-clefs\x00Mots-clefs disponibles\x00Ex\xc3\xa9cutions en cours\x00Ajout de Ta&gs :\x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Ajouter un r\xc3\xa9petoire \xc3\xa0 la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Rajoute une en-t\xc3\xaate \xc3\xa0 toutes les pages, avec le titre et l\'auteur.\x00Ajout d\'un nouveau format dans la base de donn\xc3\xa9es pour ce livre\x00Ajout d\'un livre\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Ajuste la pr\xc3\xa9sentation du fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9 en d\xc3\xa9finissant des param\xc3\xa8tres tels que la taille des polices et l\'espacement entre les mots.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Irgendein\x00Applique le mot-clef au livre en cours.\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00Cl\xc3\xa9 de tr&i de l\'auteur :\x00T&ri de l\'auteur :\x00Auteur(s)\x00Autoren:\x00Formats disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Recule\x00Taille de &police par d\xc3\xa9faut :\x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Livre\x00Livre <font face="serif">%s</font> of %s.\x00Couverture du livre\x00La marge de bas de page. Par d\xc3\xa9faut : %default points.\x00Rechercher une image \xc3\xa0 utiliser en tant que couverture du livre.\x00Choisir un nouvel emplacement pour la base de donn\xc3\xa9es\x00Convertion par lot\x00eBooks auf einmal zu LRF konvertieren\x00Configuration impossible\x00Impossible de configurer pendant que des travaux sont en cours.\x00Impossible de se connecter\x00Conversion impossible\x00Conversion du livre %s impossible parcequ\'il ne dispose d\'aucun format support\xc3\xa9\x00Erreur \xc3\xa0 l\'\xc3\xa9dition des metadat\x00Erreur \xc3\xa0 la r\xc3\xa9cup\xc3\xa9ration de l\'image de couverture\x00Kann schon fertiggestellte Auftr\xc3\xa4ge nicht abbrechen.\x00Kann Auftrag nicht abbrechen.\x00Kann Auftr\xc3\xa4ge nicht abbrechen, die mit dem Ger\xc3\xa4t kommunizieren, da dies zu Datenverlust f\xc3\xbchren kann.\x00Kann Auftr\xc3\xa4ge in Warteliste nicht abbrechen.\x00Impossible de lire\x00Ne peut pas enregistrer sur le disque\x00Impossible de visualiser\x00Carte\n%s disponible\x00Cat\xc3\xa9gorie\x00Modifie l\'image &cover :\x00Modifie le mot de passe\x00Modifie les auteurs du livres. Si plusieurs auteurs, les s\xc3\xa9parer avec des virgules.\x00Modifie l\'\xc3\xa9diteur du livre\x00Modifie le titre du livre\x00Modifie le nom d\'utilisateur et/ou le mot de passe de votre compte \xc3\xa0 LibraryThing.com\x00D\xc3\xa9tection des chapitres\x00Choisir le format\x00Choix du format de conversion vers LRF\x00Format zur Vorschau w\xc3\xa4hlen\x00Ein Klick zeigt die aktiven Auftr\xc3\xa4ge.\x00Liste de mots-clefs s\xc3\xa9par\xc3\xa9s par des virgules \xc3\xa0 retirer des livres.\x00Commentaires\x00Configuration\x00Configuration\x00Configuration du visualisateur\x00Conversion de %s en LRF\x00Convertir des ebooks\x00Convertion individuelle\x00Convertir en LRF\x00Konnte Umschlagbild nicht laden: %s\x00Konnte Artikel nicht abrufen. Der erneute Start mit --debug zeigt m\xc3\xb6gliche Gr\xc3\xbcnde an \x00Erreur \xc3\xa0 la r\xc3\xa9cup\xc3\xa9ration de l\'image de couverture\x00L\'image de couverture n\'a pas pu \xc3\xaatre r\xc3\xa9cup\xc3\xa9r\xc3\xa9e \xc3\xa0 cause de probl\xc3\xa8mes de connexion. Veuillez r\xc3\xa9essayer ult\xc3\xa9rieurement.\x00D\xc3\xa9placement de la base de donn\xc3\xa9es impossible\x00Konnte Datei nicht analysieren: %s\x00Cr\xc3\xa9\xc3\xa9 par\x00Individuelle Nachrichtenquellen\x00Date\x00&Timeout par d\xc3\xa9faut pour les connexions r\xc3\xa9seau :\x00Suppression\x00Supprime un mot-clef de la base de donn\xc3\xa9es. Cette op\xc3\xa9ration va retirer ce mot-clef de tous les livres et le supprimer de la base de donn\xc3\xa9es.\x00Details des Auftrags\x00Je ne sais pas \xc3\xa0 quoi cela sert\x00Fortschrittsbalken nicht anzeigen\x00Download beendet\x00Lade Umschlagbild von %s\x00Des doublons ont \xc3\xa9t\xc3\xa9 d\xc3\xa9tect\xc3\xa9s !\x00E\x00ERREUR\x00Edition des metadata\x00Editer les informations Metadata\x00Edition des metadata\x00Edition des metadata par lot\x00Edition des metadata individuellement\x00Polices inclues\x00Active l\'auto &rotation des images\x00Permet l\'autorotation des images qui sont plus larges que la largeur de l\'\xc3\xa9cran.\x00Fehler\x00Erreur pendant la communication avec le lecteur \xc3\xa9lectronique\x00Erreur \xc3\xa0 la lecture du fichier\x00Erreur pendant la communication avec le lecteur \xc3\xa9lectronique\x00Extrait la vignette du fichier LRF\x00Laden der Artikel fehlgeschlagen: %s von %s\n\x00Der Download von Teilen der folgenden Artikel schlug fehl:\x00Der Download der folgenden Artikel schlug fehl:\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00R\xc3\xa9cup\xc3\xa8re\x00R\xc3\xa9cup\xc3\xa9ration de l\'image de couverture depuis le serveur\x00R\xc3\xa9cup\xc3\xa9ration des metadata\x00R\xc3\xa9cup\xc3\xa9ration des metadata depuis le serveur\x00R\xc3\xa9cup\xc3\xa9rer des News\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00R\xc3\xa9cup\xc3\xa9ration des metadata pour <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Peaufiner la d\xc3\xa9tection des chapitres et des en-t\xc3\xaates de section.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Impose un saut de page avant un \xc3\xa9l\xc3\xa9ment avec l\'attribut sp\xc3\xa9cifi\xc3\xa9. Le format de cette option est : tagname regexp,attribute name,attribute value regexp.Par exemple, pour utiliser tous les tags de titres qui ont l\'attribut de classe "chapter" il faudrait saisir : "h\\d,class,chapter". Par d\xc3\xa9faut : %default\x00Impose un saut de page avant chaque tags dont le nom respecte cette expression r\xc3\xa9guli\xc3\xa8re.\x00Force un saut de page avant l\'&attribut :\x00Art\x00Format\x00Formats\x00Avance\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00R\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Feeds der Index Seite erhalten\x00En-t\xc3\xaatre\x00Aide\x00Hyphenation\x00I&SBN :\x00Si html2lrf ne trouve aucun saut de page dans le fichier html et ne peut pas d\xc3\xa9tecter de chapitres, il ins\xc3\xa8rera automatiquement des sauts de pages avant les tags dont le nom respectent cette expression r\xc3\xa9guli\xc3\xa8re. Par d\xc3\xa9faut : %default. Vous pouvez d\xc3\xa9sactiver cette fonction en saisissant "$". Le but de cette option est d\'essayer de s\'assurer qu\'il n\'y a pas de vraiment trop longues pages, car cela d\xc3\xa9grades les performances lorsque l\'on change de page. De ce fait, cette option est ignor\xc3\xa9e si la page courante a peu d\'\xc3\xa9l\xc3\xa9ments.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si une couverture est d\xc3\xa9ctect\xc3\xa9e dans le fichier source, utilise cette image plut\xc3\xb4t que l\'image sp\xc3\xa9cifi\xc3\xa9e.\x00Farben nicht bea&chten\x00Ignore les &tables\x00Augmente la taille de la police de 2 * FONT_DELTA points et l\'espacement entre lignes de FONT_DELTA points. FONT_DELTA peut-\xc3\xaatre un r\xc3\xa9el. Si FONT_DELTA est n\xc3\xa9gatif, la taille de la police est r\xc3\xa9duite.\x00Ins\xc3\xa8re des lignes &blanches entre les paragraphes\x00Base de donn\xc3\xa9es invalide\x00Chemin de la database invalide\x00Chemin de la database invalide\x00Chemin de la database invalide.<br>Erreur en \xc3\xa9criture\x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Travaux\x00Auftrag durch Benutzer abgebrochen\x00Travaux :\x00Visualisateur LRF\x00La marge de gauche. Par d\xc3\xa9faut : %default points.\x00Librairie\x00Liste de s\xc3\xa9ries connues. Vous pouvez ajouter de nouvelles s\xc3\xa9ries.\x00Pr\xc3\xa9sentation\x00\xc3\x9cbereinstimmung mit a&llen der folgenden Kriterien\x00\xc3\x9cbereinstimmung mit irge&ndeinem der folgenden Kriterien\x00R\xc3\xa9sultats correspondants\x00Maximale Anzahl der zu ladenden Artikel pro feed.\x00Informations (metadata)\x00Metadata\x00Minimise l\'espace m\xc3\xa9moire utilis\xc3\xa9 au d\xc3\xa9triment d\'un temps de calcul plus long. N\'utilisez cette option que si vous avez des probl\xc3\xa8mes de m\xc3\xa9moire disponible.\x00E&inr\xc3\xbccken mindestens:\x00Mehr\x00Ausblenden\x00Nachrichten abgerufen. \xc3\x9cbertragung ans Ger\xc3\xa4t l\xc3\xa4uft.\x00Page suivante\x00R\xc3\xa9sultat suivant\x00Aucun format disponible\x00Aucun livre s\xc3\xa9lectionn\xc3\xa9\x00Aucun livre s\xc3\xa9lectionn\xc3\xa9\x00Kein Treffer\x00Aucun r\xc3\xa9sultat\x00Le lecteur \xc3\xa9lectronique n\'a plus d\'espace m\xc3\xa9moire disponible\x00Aucun\x00Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. Voreinstellung %default\x00Ouvre l\'\xc3\xa9diteur de mots-clefs\x00Ouvrir le livre\x00Options\x00Einstellungen f\xc3\xbcr feeds2disk\x00Einstellungen f\xc3\xbcr html2lrf\x00Einstellungen f\xc3\xbcr web2disk (um von Feeds verlinkte Webseiten abzurufen)\x00Nom du fichier r\xc3\xa9sultat. Bas\xc3\xa9 par d\xc3\xa9faut sur le fichier d\'entr\xc3\xa9e\x00Surcharge le CSS. Peut \xc3\xaatre soit un chemin vers une feuille de styles CC ou une cha\xc3\xaene. Si c\'est une cha\xc3\xaene, elle est interpr\xc3\xa9t\xc3\xa9e comme du CSS. \x00Surcharge <br> CSS\x00Mise en page\x00Parse le fichier LRF\x00Passwort f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Mot de passe n\xc3\xa9cessaire\x00Chemin\x00Chemin d\'une image qui sera utilis\xc3\xa9e comme vignette pour ces fichiers\x00Chemin d\'un fichier texte contenant les commentaires qui seront inclus dans le fichier lrf.\x00Chemin du fichier contenant l\'image \xc3\xa0 utiliser comme couverture\x00Pfad zum Ausgabeverzeichnis, in dem die HTML Datei erstellt werden soll. Voreinstellung auf aktuelles Verzeichnis.\x00Pr\xc3\xa9processe les fichiers HTML Bean pour am\xc3\xa9liorer le fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9.\x00Pr\xc3\xa9-processe le fichier avant la conversion vers le format LRF. Ceci est utile si vous connaissez l\'origine du fichiers. Origines connues :\x00Emp\xc3\xaache l\'insertion automatique d\'un saut de page avant chaque chapitre d\xc3\xa9tect\xc3\xa9.\x00Page pr\xc3\xa9c\xc3\xa9dente\x00Le profil du lecteur pour lequel le LRF est g\xc3\xa9n\xc3\xa9r\xc3\xa9. Ce profil d\xc3\xa9termine des param\xc3\xa8tres comme la r\xc3\xa9solution et la taille de l\'\xc3\xa9cran du lecteur. Par d\xc3\xa9faut : %s Profils support\xc3\xa9s : \x00Progression\x00Editeur\x00Note\x00Note de ce livre. de 0 \xc3\xa0 5 \xc3\xa9toiles\x00Lecteur \n%s disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Supprime un r\xc3\xa9petoire de la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Suppression du livre\x00Feed aus dem Rezept entfernen\x00Retire les formats s\xc3\xa9lectionn\xc3\xa9s de ce livre de la base de donn\xc3\xa9es.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Affiche les tables HTML comme de simples blocs de textes au lieu de v\xc3\xa9ritables tables. Cela peut \xc3\xaatre n\xc3\xa9cessaire si le HTML contient des tables trop grosses ou complexes .\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00R\xc3\xa9initialisation de la recherche rapide\x00La marge de droite. Par d\xc3\xa9faut : %default points.\x00Laufzeit\x00S&ans-serif :\x00Enregistrer sur le disque\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Recherche les livres par titre ou auteur <br><br>Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00Recherche les livres par titre, auteur, \xc3\xa9diteur, tags et commentaires <br><br>Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00S\xc3\xa9lectionnez le livre qui correspond le mieux au votre dans la liste ci-dessous.\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Envoyer au lecteur\x00Envoi vers la m\xc3\xa9moire du lecteur\x00Envoi vers la carte m\xc3\xa9moire\x00S\xc3\xa9pare les paragraphe avec des lignes blanches.\x00S\xc3\xa9ries\x00Index de s\xc3\xa9ries\x00Serien Index:\x00Serien:\x00Erreur Serveur. Veuillez essayer ult\xc3\xa9rieurement.\x00D\xc3\xa9finit l\'ID du livre\x00D\xc3\xa9finir les param\xc3\xa8tres par d\xc3\xa9faut de conversion\x00D\xc3\xa9finit la clef de tri pour l\'auteur\x00D\xc3\xa9finit la cl\xc3\xa9 de tri pour le titre\x00D\xc3\xa9finit l\'auteur\x00D\xc3\xa9finir le(s) auteur(s). Si plusieurs auteurs, les s\xc3\xa9parer d\'une virgule. Par d\xc3\xa9faut : %default\x00D\xc3\xa9finit le titre du livre\x00D\xc3\xa9finir la cat\xc3\xa9gorie\x00D\xc3\xa9finir le commentaire\x00Voreinstellung der Zeit\xc3\xbcberschreitung f\xc3\xbcr Netzwerkabrufe festsetzen (Gilt immer dann, wenn aus dem Internet Informationen abgerufen werden sollen) \x00D\xc3\xa9finit le format de l\'en-t\xc3\xaate de page. %a est remplac\xc3\xa9 par l\'auteur et %t par le titre. Par d\xc3\xa9faut : %default\x00D\xc3\xa9finit les epsaces entre les mots en pts. Par d\xc3\xa9faut : %default\x00Indiquer le titre. Par d\xc3\xa9faut : nom du fichier.\x00Enregistrez-vous gratuitement sur <a href="http://www.isbndb.com">ISBNdb.com</a> pour obtenir une clef d\'acc\xc3\xa8s (access key).\x00Taille (MB)\x00Cl\xc3\xa9 de tri pour l\'auteur\x00Cl\xc3\xa9 de tri pour le titre\x00En&codierung der Quelldatei:\x00Geben Sie eine Liste von Feeds zum Download an. Zum Beispiel: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nWenn Sie diese Option w\xc3\xa4hlen, wird jedes Argument %prog ignoriert und die Voreinstellung zum Download der Feeds verwendet. \x00D\xc3\xa9finit comment l\'auteur de ce livre doit \xc3\xaatre class\xc3\xa9. Par exemple, Charles Dickens peut \xc3\xaatre class\xc3\xa9 comme Dickens, Charles.\x00D\xc3\xa9finit les metadata comme le titre et l\'auteur du livre.<p>Les metadata seront modifi\xc3\xa9es dans la base de donn\xc3\xa9es et dans le fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9.\x00D\xc3\xa9finit la taille de base de la police en pts. Toutes les poslices sont retaill\xc3\xa9es en fonction. Cette option remplace l\'ancienne option --font-delta. Pour utiliser --font-delta, saisir 0.\x00D\xc3\xa9finit les param\xc3\xa8tres de la pages tels que les marges et la taille de l\'\xc3\xa9cran du lecteur cible.\x00D\xc3\xa9finit des familles de polices truetype pour les polices serif, sans-serif et monospace. Ces polices seront inclues dans le fichier LRF. Attention : inclure des polices dans le fichier ralentit les changements de pages. Chaque d\xc3\xa9finition de famille est de la forme : "chemin du r\xc3\xa9pertoir, famille" Par exemple : --serif-family "%s, Times New Roman"\x00Starte Download von [%d Thread(s)]...\x00Statut\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Ta&gs :\x00Etikett\x00Editeur de Mots-Clefs\x00D\xc3\xa9tection bas\xc3\xa9e sur des tags\x00Tags\x00Tags caract\xc3\xa9risant le livre, particuli\xc3\xa8rement utile pour la recherche. <br> <br> Cela peut \xc3\xaatre n\'importe quels mots, s\xc3\xa9par\xc3\xa9s par des virgules.\x00Test\x00TextLabel\x00La cat\xc3\xa9gorie \xc3\xa0 laquelle le livre appartient. Exemple : Histoire\x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Le nombre maximum de niveau de liens \xc3\xa0 suivre r\xc3\xa9cursivement. Une valeur \xc3\xa0 0 indique qu\'aucun lien ne sera trait\xc3\xa9. Une valeur n\xc3\xa9gative indique que les tags <a> sont ignor\xc3\xa9s.\x00La famille de police monospace \xc3\xa0 inclure\x00\xc3\x84ltester Artikel, der geladen wird\x00L\'expression r\xc3\xa9guli\xc3\xa8re utilis\xc3\xa9e pour d\xc3\xa9tecter les titres de chapitres. Cette expression rest recherch\xc3\xa9e dans les tags d\'en-t\xc3\xaates (h1-h6). Par d\xc3\xa9faut : %default\x00La famille de police sans-serif \xc3\xa0 inclure\x00La famille de police serif \xc3\xa0 inclure\x00Der Text, nach dem gesucht werden soll. Dies wird als eine Regul\xc3\xa4re Expression interpretiert.\x00Der Titel f\xc3\xbcr dieses Rezept. Wird als Titel f\xc3\xbcr alle eBooks benutzt, die aus den geladenen Feeds erstellt wurden.\x00Une erreur temporaire s\'est d\xc3\xa9clench\xc3\xa9e pendant la communication avec le lecteur \xc3\xa9lectronique. Veuillez d\xc3\xa9connecter et reconnecter le lecteur \xc3\xa9lectronique et red\xc3\xa9marrer.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Horodatage\x00Titre\x00D\xc3\xa9tection bas\xc3\xa9e sur les titres\x00Titel:\x00La marge de haut de page. Par d\xc3\xa9faut : %default points.\x00Versuche Umschlagbild zu laden...\x00Enl\xc3\xa8ve le mot-clef du livre en cours\x00Indisponible\x00Inconnu\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Utilisation de chiffres romains pour les num\xc3\xa9ro de s\xc3\xa9ries\x00Utilise l\'image de couverture du fichier &source\x00Utilise l\'\xc3\xa9l\xc3\xa9ment <spine> du fichier OPF pour d\xc3\xa9terminer l\'odre dans lequel les fichiers HTML sont ajout\xc3\xa9s au LRF. Le fichier .opt doit \xc3\xaatre dans le m\xc3\xaame r\xc3\xa9pertoire que les fichiers HTML de base.\x00Utilisez cette option sur des fichiers html0 venant de Book Designer.\x00Utilise un arri\xc3\xa8re-plan blanc\x00Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed und l\xc3\xa4dt h\xc3\xb6chstens 2 Feeds.\x00Benutzername f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Visualiser\x00Spezielles Format ansehen\x00En attente\x00En cours\x00Vous n\'avez pas les permissions n\xc3\xa9cessaires pour lire ce fichier:\x00Vous devez utiliser cette option pour traiter des fichiers g\xc3\xa9n\xc3\xa9r\xc3\xa9s par pdftohtml, sinon la conversion \xc3\xa9chouera.\x00Es muss eine einzelne PDF Datei angegeben werden.\x00Vous devez sp\xc3\xa9cifier une clef d\'acc\xc3\xa8s valide \xc3\xa0 isbndb.com\x00Vous devez fournir l\'identifiant ISBN de ce livre.\x00beinhaltet\x00libprs500\x00', 'ca': '\xde\x12\x04\x95\x00\x00\x00\x00\xa1\x01\x00\x00\x1c\x00\x00\x00$\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x1a\x00\x00\x0e\x00\x00\x00-\x1a\x00\x00!\x00\x00\x00<\x1a\x00\x00\x05\x00\x00\x00^\x1a\x00\x00\x06\x00\x00\x00d\x1a\x00\x00\x17\x00\x00\x00k\x1a\x00\x00\x0b\x00\x00\x00\x83\x1a\x00\x00\x04\x00\x00\x00\x8f\x1a\x00\x00\x03\x00\x00\x00\x94\x1a\x00\x00\x08\x00\x00\x00\x98\x1a\x00\x00\x06\x00\x00\x00\xa1\x1a\x00\x00\x1c\x00\x00\x00\xa8\x1a\x00\x00\x0e\x00\x00\x00\xc5\x1a\x00\x00\x0c\x00\x00\x00\xd4\x1a\x00\x00\t\x00\x00\x00\xe1\x1a\x00\x00\t\x00\x00\x00\xeb\x1a\x00\x00\x0c\x00\x00\x00\xf5\x1a\x00\x00\x0f\x00\x00\x00\x02\x1b\x00\x00\x11\x00\x00\x00\x12\x1b\x00\x00\x1a\x00\x00\x00$\x1b\x00\x00\x0c\x00\x00\x00?\x1b\x00\x00\x1d\x00\x00\x00L\x1b\x00\x00\x0f\x00\x00\x00j\x1b\x00\x00\r\x00\x00\x00z\x1b\x00\x00)\x00\x00\x00\x88\x1b\x00\x00"\x00\x00\x00\xb2\x1b\x00\x00\x18\x00\x00\x00\xd5\x1b\x00\x00\x0b\x00\x00\x00\xee\x1b\x00\x00\x10\x00\x00\x00\xfa\x1b\x00\x00\x17\x00\x00\x00\x0b\x1c\x00\x00\n\x00\x00\x00#\x1c\x00\x00\x0c\x00\x00\x00.\x1c\x00\x00\x1e\x00\x00\x00;\x1c\x00\x00\t\x00\x00\x00Z\x1c\x00\x00\x0c\x00\x00\x00d\x1c\x00\x00\x08\x00\x00\x00q\x1c\x00\x00\x14\x00\x00\x00z\x1c\x00\x00\x0e\x00\x00\x00\x8f\x1c\x00\x00\r\x00\x00\x00\x9e\x1c\x00\x00\x0e\x00\x00\x00\xac\x1c\x00\x00\x08\x00\x00\x00\xbb\x1c\x00\x00\x08\x00\x00\x00\xc4\x1c\x00\x00\x07\x00\x00\x00\xcd\x1c\x00\x00\x0c\x00\x00\x00\xd5\x1c\x00\x00\x0e\x00\x00\x00\xe2\x1c\x00\x00\x12\x00\x00\x00\xf1\x1c\x00\x00\x05\x00\x00\x00\x04\x1d\x00\x00\x08\x00\x00\x00\n\x1d\x00\x00\x0c\x00\x00\x00\x13\x1d\x00\x00\n\x00\x00\x00 \x1d\x00\x00\x0e\x00\x00\x00+\x1d\x00\x00\x03\x00\x00\x00:\x1d\x00\x001\x00\x00\x00>\x1d\x00\x00"\x00\x00\x00p\x1d\x00\x00=\x00\x00\x00\x93\x1d\x00\x00\x18\x00\x00\x00\xd1\x1d\x00\x00+\x00\x00\x00\xea\x1d\x00\x00\x00\x02\x00\x00\x16\x1e\x00\x00\xa3\x01\x00\x00\x17 \x00\x00\x82\x02\x00\x00\xbb!\x00\x00>\x00\x00\x00>$\x00\x00S\x00\x00\x00}$\x00\x005\x00\x00\x00\xd1$\x00\x00p\x00\x00\x00\x07%\x00\x00a\x00\x00\x00x%\x00\x00G\x00\x00\x00\xda%\x00\x00(\x00\x00\x00"&\x00\x00\xa7\x00\x00\x00K&\x00\x00W\x00\x00\x00\xf3&\x00\x00\x96\x00\x00\x00K\'\x00\x00=\x01\x00\x00\xe2\'\x00\x002\x00\x00\x00 )\x00\x00\x01\x00\x00\x00S)\x00\x00C\x00\x00\x00U)\x00\x00X\x00\x00\x00\x99)\x00\x00\r\x00\x00\x00\xf2)\x00\x00\x0f\x00\x00\x00\x00*\x00\x00\x0b\x00\x00\x00\x10*\x00\x00\x0b\x00\x00\x00\x1c*\x00\x00\x18\x00\x00\x00(*\x00\x007\x00\x00\x00A*\x00\x004\x00\x00\x00y*\x00\x00.\x00\x00\x00\xae*\x00\x00\t\x00\x00\x00\xdd*\x00\x00!\x00\x00\x00\xe7*\x00\x00b\x00\x00\x00\t+\x00\x00o\x00\x00\x00l+\x00\x00\x16\x00\x00\x00\xdc+\x00\x00\x12\x00\x00\x00\xf3+\x00\x006\x00\x00\x00\x06,\x00\x00\x12\x00\x00\x00=,\x00\x00m\x00\x00\x00P,\x00\x00\x08\x00\x00\x00\xbe,\x00\x00\x0f\x00\x00\x00\xc7,\x00\x00\x0f\x00\x00\x00\xd7,\x00\x00\x0e\x00\x00\x00\xe7,\x00\x00\x05\x00\x00\x00\xf6,\x00\x00\x03\x00\x00\x00\xfc,\x00\x00\x19\x00\x00\x00\x00-\x00\x00\x1b\x00\x00\x00\x1a-\x00\x00\x16\x00\x00\x006-\x00\x00\x06\x00\x00\x00M-\x00\x00\x0e\x00\x00\x00T-\x00\x00\r\x00\x00\x00c-\x00\x00\t\x00\x00\x00q-\x00\x00\x08\x00\x00\x00{-\x00\x00\x11\x00\x00\x00\x84-\x00\x00\x16\x00\x00\x00\x96-\x00\x00\x04\x00\x00\x00\xad-\x00\x00\x10\x00\x00\x00\xb2-\x00\x00\x05\x00\x00\x00\xc3-\x00\x00!\x00\x00\x00\xc9-\x00\x00\x10\x00\x00\x00\xeb-\x00\x00\x05\x00\x00\x00\xfc-\x00\x00(\x00\x00\x00\x02.\x00\x00\n\x00\x00\x00+.\x00\x00.\x00\x00\x006.\x00\x005\x00\x00\x00e.\x00\x00$\x00\x00\x00\x9b.\x00\x00\x0c\x00\x00\x00\xc0.\x00\x00\x1a\x00\x00\x00\xcd.\x00\x00\x10\x00\x00\x00\xe8.\x00\x00.\x00\x00\x00\xf9.\x00\x00\x0e\x00\x00\x00(/\x00\x00\x0e\x00\x00\x007/\x00\x007\x00\x00\x00F/\x00\x00\x14\x00\x00\x00~/\x00\x00\x12\x00\x00\x00\x93/\x00\x00#\x00\x00\x00\xa6/\x00\x00\x0f\x00\x00\x00\xca/\x00\x00Z\x00\x00\x00\xda/\x00\x00\x19\x00\x00\x0050\x00\x00\x0b\x00\x00\x00O0\x00\x00\x13\x00\x00\x00[0\x00\x00\x0b\x00\x00\x00o0\x00\x00\x11\x00\x00\x00{0\x00\x00\x08\x00\x00\x00\x8d0\x00\x00\x14\x00\x00\x00\x960\x00\x00\x0f\x00\x00\x00\xab0\x00\x00R\x00\x00\x00\xbb0\x00\x00!\x00\x00\x00\x0e1\x00\x00\x1d\x00\x00\x0001\x00\x00H\x00\x00\x00N1\x00\x00\x11\x00\x00\x00\x971\x00\x00\r\x00\x00\x00\xa91\x00\x00%\x00\x00\x00\xb71\x00\x00\x19\x00\x00\x00\xdd1\x00\x00!\x00\x00\x00\xf71\x00\x007\x00\x00\x00\x192\x00\x00\x08\x00\x00\x00Q2\x00\x00\r\x00\x00\x00Z2\x00\x00\t\x00\x00\x00h2\x00\x00\x10\x00\x00\x00r2\x00\x00\x11\x00\x00\x00\x832\x00\x00\x0f\x00\x00\x00\x952\x00\x00\x14\x00\x00\x00\xa52\x00\x00\x0e\x00\x00\x00\xba2\x00\x00\x1c\x00\x00\x00\xc92\x00\x00;\x00\x00\x00\xe62\x00\x00\x15\x00\x00\x00"3\x00\x00R\x00\x00\x0083\x00\x00\x17\x00\x00\x00\x8b3\x00\x00\x18\x00\x00\x00\xa33\x00\x00\x0b\x00\x00\x00\xbc3\x00\x00\x13\x00\x00\x00\xc83\x00\x00\x04\x00\x00\x00\xdc3\x00\x00\x19\x00\x00\x00\xe13\x00\x00\x03\x00\x00\x00\xfb3\x00\x00h\x00\x00\x00\xff3\x00\x00\x0e\x00\x00\x00h4\x00\x00\x1b\x00\x00\x00w4\x00\x00\x1a\x00\x00\x00\x934\x00\x00\x11\x00\x00\x00\xae4\x00\x00\x19\x00\x00\x00\xc04\x00\x00\x11\x00\x00\x00\xda4\x00\x00\x01\x00\x00\x00\xec4\x00\x00\x05\x00\x00\x00\xee4\x00\x00\x15\x00\x00\x00\xf44\x00\x00\x15\x00\x00\x00\n5\x00\x00\x15\x00\x00\x00 5\x00\x00\x15\x00\x00\x0065\x00\x00\x1a\x00\x00\x00L5\x00\x00\x0e\x00\x00\x00g5\x00\x00\x1f\x00\x00\x00v5\x00\x00C\x00\x00\x00\x965\x00\x00\x05\x00\x00\x00\xda5\x00\x00\x1f\x00\x00\x00\xe05\x00\x00\x12\x00\x00\x00\x006\x00\x00\x17\x00\x00\x00\x136\x00\x00\x1f\x00\x00\x00+6\x00\x00\'\x00\x00\x00K6\x00\x003\x00\x00\x00s6\x00\x00*\x00\x00\x00\xa76\x00\x00\n\x00\x00\x00\xd26\x00\x00\x14\x00\x00\x00\xdd6\x00\x00\x16\x00\x00\x00\xf26\x00\x00\x16\x00\x00\x00\t7\x00\x00\x0f\x00\x00\x00 7\x00\x00\x05\x00\x00\x0007\x00\x00\x1d\x00\x00\x0067\x00\x00\x0e\x00\x00\x00T7\x00\x00\x1a\x00\x00\x00c7\x00\x00\n\x00\x00\x00~7\x00\x00\x10\x00\x00\x00\x897\x00\x00\r\x00\x00\x00\x9a7\x00\x00\x11\x00\x00\x00\xa87\x00\x00\x1f\x00\x00\x00\xba7\x00\x00\x13\x00\x00\x00\xda7\x00\x00\x1b\x00\x00\x00\xee7\x00\x00\x05\x00\x00\x00\n8\x00\x00\x0b\x00\x00\x00\x108\x00\x008\x00\x00\x00\x1c8\x00\x00\x08\x00\x00\x00U8\x00\x00\x8a\x00\x00\x00^8\x00\x00\x1d\x01\x00\x00\xe98\x00\x00J\x00\x00\x00\x07:\x00\x00#\x00\x00\x00R:\x00\x00\x04\x00\x00\x00v:\x00\x00\x06\x00\x00\x00{:\x00\x00\x07\x00\x00\x00\x82:\x00\x00\x07\x00\x00\x00\x8a:\x00\x00\'\x00\x00\x00\x92:\x00\x00\x1b\x00\x00\x00\xba:\x00\x00\x19\x00\x00\x00\xd6:\x00\x00\x06\x00\x00\x00\xf0:\x00\x00\x0c\x00\x00\x00\xf7:\x00\x00\t\x00\x00\x00\x04;\x00\x00\x06\x00\x00\x00\x0e;\x00\x00\xdc\x01\x00\x00\x15;\x00\x00n\x00\x00\x00\xf2<\x00\x00a\x00\x00\x00a=\x00\x00\x0e\x00\x00\x00\xc3=\x00\x00\x0e\x00\x00\x00\xd2=\x00\x00\xa8\x00\x00\x00\xe1=\x00\x00&\x00\x00\x00\x8a>\x00\x00\x10\x00\x00\x00\xb1>\x00\x00\x19\x00\x00\x00\xc2>\x00\x00\x1a\x00\x00\x00\xdc>\x00\x00.\x00\x00\x00\xf7>\x00\x00\r\x00\x00\x00&?\x00\x00\x1a\x00\x00\x004?\x00\x00\x1e\x00\x00\x00O?\x00\x00\x03\x00\x00\x00n?\x00\x00\x12\x00\x00\x00r?\x00\x00\x05\x00\x00\x00\x85?\x00\x00\n\x00\x00\x00\x8b?\x00\x00,\x00\x00\x00\x96?\x00\x00\x07\x00\x00\x00\xc3?\x00\x00-\x00\x00\x00\xcb?\x00\x00\x0b\x00\x00\x00\xf9?\x00\x00$\x00\x00\x00\x05@\x00\x00$\x00\x00\x00*@\x00\x00\x07\x00\x00\x00O@\x00\x000\x00\x00\x00W@\x00\x00\x10\x00\x00\x00\x88@\x00\x00\x08\x00\x00\x00\x99@\x00\x00y\x00\x00\x00\xa2@\x00\x00\x10\x00\x00\x00\x1cA\x00\x00\x04\x00\x00\x00-A\x00\x00\x06\x00\x00\x002A\x00\x00"\x00\x00\x009A\x00\x00\t\x00\x00\x00\\A\x00\x00\n\x00\x00\x00fA\x00\x00\x14\x00\x00\x00qA\x00\x00\x10\x00\x00\x00\x86A\x00\x00\x11\x00\x00\x00\x97A\x00\x00\x08\x00\x00\x00\xa9A\x00\x00\x10\x00\x00\x00\xb2A\x00\x00\x12\x00\x00\x00\xc3A\x00\x00\x04\x00\x00\x00\xd6A\x00\x00^\x00\x00\x00\xdbA\x00\x00\x0f\x00\x00\x00:B\x00\x00\n\x00\x00\x00JB\x00\x00\x07\x00\x00\x00UB\x00\x00-\x00\x00\x00]B\x00\x00+\x00\x00\x00\x8bB\x00\x00F\x00\x00\x00\xb7B\x00\x008\x00\x00\x00\xfeB\x00\x00s\x00\x00\x007C\x00\x00\x0f\x00\x00\x00\xabC\x00\x00\n\x00\x00\x00\xbbC\x00\x00\x10\x00\x00\x00\xc6C\x00\x00:\x00\x00\x00\xd7C\x00\x00\x0f\x00\x00\x00\x12D\x00\x00\x04\x00\x00\x00"D\x00\x00;\x00\x00\x00\'D\x00\x00G\x00\x00\x00cD\x00\x001\x00\x00\x00\xabD\x00\x00Y\x00\x00\x00\xddD\x00\x004\x00\x00\x007E\x00\x00\x80\x00\x00\x00lE\x00\x00H\x00\x00\x00\xedE\x00\x00\r\x00\x00\x006F\x00\x00\xbc\x00\x00\x00DF\x00\x00\x08\x00\x00\x00\x01G\x00\x00\t\x00\x00\x00\nG\x00\x00\x06\x00\x00\x00\x14G\x00\x00\x1e\x00\x00\x00\x1bG\x00\x00\x13\x00\x00\x00:G\x00\x00\x0e\x00\x00\x00NG\x00\x00\x1b\x00\x00\x00]G\x00\x00\x13\x00\x00\x00yG\x00\x00+\x00\x00\x00\x8dG\x00\x00*\x00\x00\x00\xb9G\x00\x000\x00\x00\x00\xe4G\x00\x00)\x00\x00\x00\x15H\x00\x00<\x00\x00\x00?H\x00\x00\x0c\x00\x00\x00|H\x00\x00\x17\x00\x00\x00\x89H\x00\x00<\x00\x00\x00\xa1H\x00\x000\x00\x00\x00\xdeH\x00\x00\x84\x00\x00\x00\x0fI\x00\x00X\x00\x00\x00\x94I\x00\x00\x0f\x00\x00\x00\xedI\x00\x00\x12\x00\x00\x00\xfdI\x00\x00-\x00\x00\x00\x10J\x00\x00\x0c\x00\x00\x00>J\x00\x00\x0c\x00\x00\x00KJ\x00\x00\x0c\x00\x00\x00XJ\x00\x00"\x00\x00\x00eJ\x00\x009\x00\x00\x00\x88J\x00\x00\x0f\x00\x00\x00\xc2J\x00\x00V\x00\x00\x00\xd2J\x00\x00r\x00\x00\x00)K\x00\x00G\x00\x00\x00\x9cK\x00\x00\'\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00\x0cL\x00\x00\x13\x00\x00\x00\x1bL\x00\x00\x14\x00\x00\x00/L\x00\x00#\x00\x00\x00DL\x00\x00\x06\x00\x00\x00hL\x00\x00\r\x00\x00\x00oL\x00\x00\r\x00\x00\x00}L\x00\x00\x07\x00\x00\x00\x8bL\x00\x00\x1e\x00\x00\x00\x93L\x00\x00\x0b\x00\x00\x00\xb2L\x00\x00\x17\x00\x00\x00\xbeL\x00\x00\x1b\x00\x00\x00\xd6L\x00\x00\x1a\x00\x00\x00\xf2L\x00\x00\x0e\x00\x00\x00\rM\x00\x00^\x00\x00\x00\x1cM\x00\x00\x12\x00\x00\x00{M\x00\x00\x10\x00\x00\x00\x8eM\x00\x00\x10\x00\x00\x00\x9fM\x00\x00g\x00\x00\x00\xb0M\x00\x00c\x00\x00\x00\x18N\x00\x007\x00\x00\x00|N\x00\x00!\x00\x00\x00\xb4N\x00\x00d\x00\x00\x00\xd6N\x00\x00\t\x00\x00\x00;O\x00\x00\x17\x00\x00\x00EO\x00\x00\x16\x00\x00\x00]O\x00\x00\x11\x00\x00\x00tO\x00\x00\x04\x01\x00\x00\x86O\x00\x00z\x00\x00\x00\x8bP\x00\x00\x85\x00\x00\x00\x06Q\x00\x00\xb6\x00\x00\x00\x8cQ\x00\x00P\x00\x00\x00CR\x00\x00+\x01\x00\x00\x94R\x00\x00#\x00\x00\x00\xc0S\x00\x00\x06\x00\x00\x00\xe4S\x00\x00\x17\x00\x00\x00\xebS\x00\x00\x14\x00\x00\x00\x03T\x00\x00\x07\x00\x00\x00\x18T\x00\x00\x03\x00\x00\x00 T\x00\x00\n\x00\x00\x00$T\x00\x00\x13\x00\x00\x00/T\x00\x00\x04\x00\x00\x00CT\x00\x00\x85\x00\x00\x00HT\x00\x00\x04\x00\x00\x00\xceT\x00\x00\t\x00\x00\x00\xd3T\x00\x000\x00\x00\x00\xddT\x00\x00X\x00\x00\x00\x0eU\x00\x00\x1b\x00\x00\x00gU\x00\x00\x1a\x00\x00\x00\x83U\x00\x00\x9d\x00\x00\x00\x9eU\x00\x00&\x00\x00\x00<V\x00\x00\x1e\x00\x00\x00cV\x00\x00v\x00\x00\x00\x82V\x00\x00\'\x00\x00\x00\xf9V\x00\x00"\x00\x00\x00!W\x00\x00B\x00\x00\x00DW\x00\x00^\x00\x00\x00\x87W\x00\x00h\x00\x00\x00\xe6W\x00\x00.\x00\x00\x00OX\x00\x00\t\x00\x00\x00~X\x00\x00\x05\x00\x00\x00\x88X\x00\x00\x15\x00\x00\x00\x8eX\x00\x00\x06\x00\x00\x00\xa4X\x00\x00+\x00\x00\x00\xabX\x00\x00\x1b\x00\x00\x00\xd7X\x00\x00&\x00\x00\x00\xf3X\x00\x00\x0b\x00\x00\x00\x1aY\x00\x00\x07\x00\x00\x00&Y\x00\x00\x13\x00\x00\x00.Y\x00\x00\x0c\x00\x00\x00BY\x00\x00\x10\x00\x00\x00OY\x00\x00\x10\x00\x00\x00`Y\x00\x00%\x00\x00\x00qY\x00\x00\x1b\x00\x00\x00\x97Y\x00\x00\xb4\x00\x00\x00\xb3Y\x00\x002\x00\x00\x00hZ\x00\x00\x14\x00\x00\x00\x9bZ\x00\x00_\x00\x00\x00\xb0Z\x00\x00:\x00\x00\x00\x10[\x00\x00*\x00\x00\x00K[\x00\x00\x04\x00\x00\x00v[\x00\x00\x14\x00\x00\x00{[\x00\x00\x07\x00\x00\x00\x90[\x00\x00\x07\x00\x00\x00\x98[\x00\x00-\x00\x00\x00\xa0[\x00\x00d\x00\x00\x00\xce[\x00\x00#\x00\x00\x003\\\x00\x002\x00\x00\x00W\\\x00\x003\x00\x00\x00\x8a\\\x00\x00\x08\x00\x00\x00\xbe\\\x00\x00\t\x00\x00\x00\xc7\\\x00\x00\x1e\x01\x00\x00\xd1\\\x00\x00 \x00\x00\x00\xf0]\x00\x00\x1d\x00\x00\x00\x11^\x00\x00\x05\x00\x00\x00/^\x00\x00\x04\x00\x00\x005^\x00\x00\x1a\x00\x00\x00:^\x00\x00\x10\x00\x00\x00U^\x00\x00\x06\x00\x00\x00f^\x00\x00\n\x00\x00\x00m^\x00\x00\t\x00\x00\x00x^\x00\x00\t\x00\x00\x00\x82^\x00\x00"\x00\x00\x00\x8c^\x00\x00\x12\x00\x00\x00\xaf^\x00\x00\x0f\x00\x00\x00\xc2^\x00\x00\x0e\x00\x00\x00\xd2^\x00\x00\x12\x00\x00\x00\xe1^\x00\x00\n\x00\x00\x00\xf4^\x00\x00\x10\x00\x00\x00\xff^\x00\x00\x15\x00\x00\x00\x10_\x00\x00$\x00\x00\x00&_\x00\x00\x0c\x00\x00\x00K_\x00\x00-\x00\x00\x00X_\x00\x00\x19\x00\x00\x00\x86_\x00\x00\x10\x00\x00\x00\xa0_\x00\x00,\x00\x00\x00\xb1_\x00\x00&\x00\x00\x00\xde_\x00\x00\x1e\x00\x00\x00\x05`\x00\x00\x0e\x00\x00\x00$`\x00\x00\x13\x00\x00\x003`\x00\x00.\x00\x00\x00G`\x00\x00\r\x00\x00\x00v`\x00\x00\x11\x00\x00\x00\x84`\x00\x00(\x00\x00\x00\x96`\x00\x00\x08\x00\x00\x00\xbf`\x00\x00\x0b\x00\x00\x00\xc8`\x00\x00\x0c\x00\x00\x00\xd4`\x00\x00\x14\x00\x00\x00\xe1`\x00\x00\x11\x00\x00\x00\xf6`\x00\x00\x15\x00\x00\x00\x08a\x00\x00\x0c\x00\x00\x00\x1ea\x00\x00\t\x00\x00\x00+a\x00\x00\t\x00\x00\x005a\x00\x00\x07\x00\x00\x00?a\x00\x00\x13\x00\x00\x00Ga\x00\x00\x12\x00\x00\x00[a\x00\x00\x1e\x00\x00\x00na\x00\x00\x05\x00\x00\x00\x8da\x00\x00\n\x00\x00\x00\x93a\x00\x00\x10\x00\x00\x00\x9ea\x00\x00\x0e\x00\x00\x00\xafa\x00\x00\x19\x00\x00\x00\xbea\x00\x00\x03\x00\x00\x00\xd8a\x00\x00/\x00\x00\x00\xdca\x00\x00)\x00\x00\x00\x0cb\x00\x00>\x00\x00\x006b\x00\x00\x1e\x00\x00\x00ub\x00\x00-\x00\x00\x00\x94b\x00\x00M\x02\x00\x00\xc2b\x00\x00\xa3\x01\x00\x00\x10e\x00\x00\x8c\x02\x00\x00\xb4f\x00\x00>\x00\x00\x00Ai\x00\x00L\x00\x00\x00\x80i\x00\x004\x00\x00\x00\xcdi\x00\x00\x90\x00\x00\x00\x02j\x00\x00\x86\x00\x00\x00\x93j\x00\x00D\x00\x00\x00\x1ak\x00\x00/\x00\x00\x00_k\x00\x00\xcd\x00\x00\x00\x8fk\x00\x00\x7f\x00\x00\x00]l\x00\x00\xcd\x00\x00\x00\xddl\x00\x00\xa4\x01\x00\x00\xabm\x00\x00&\x00\x00\x00Po\x00\x00\x01\x00\x00\x00wo\x00\x00M\x00\x00\x00yo\x00\x00_\x00\x00\x00\xc7o\x00\x00\x16\x00\x00\x00\'p\x00\x00\x16\x00\x00\x00>p\x00\x00\x0f\x00\x00\x00Up\x00\x00\x18\x00\x00\x00ep\x00\x00/\x00\x00\x00~p\x00\x007\x00\x00\x00\xaep\x00\x00I\x00\x00\x00\xe6p\x00\x00;\x00\x00\x000q\x00\x00\x0f\x00\x00\x00lq\x00\x003\x00\x00\x00|q\x00\x00}\x00\x00\x00\xb0q\x00\x00\x98\x00\x00\x00.r\x00\x00$\x00\x00\x00\xc7r\x00\x00\x1b\x00\x00\x00\xecr\x00\x00Q\x00\x00\x00\x08s\x00\x00"\x00\x00\x00Zs\x00\x00m\x00\x00\x00}s\x00\x00\t\x00\x00\x00\xebs\x00\x00\x10\x00\x00\x00\xf5s\x00\x00\x10\x00\x00\x00\x06t\x00\x00\x10\x00\x00\x00\x17t\x00\x00\x05\x00\x00\x00(t\x00\x00\t\x00\x00\x00.t\x00\x00#\x00\x00\x008t\x00\x00!\x00\x00\x00\\t\x00\x00\x13\x00\x00\x00~t\x00\x00\x05\x00\x00\x00\x92t\x00\x00\x0f\x00\x00\x00\x98t\x00\x00\x11\x00\x00\x00\xa8t\x00\x00\x08\x00\x00\x00\xbat\x00\x00\x08\x00\x00\x00\xc3t\x00\x00\x13\x00\x00\x00\xcct\x00\x00\x1c\x00\x00\x00\xe0t\x00\x00\t\x00\x00\x00\xfdt\x00\x00\x1a\x00\x00\x00\x07u\x00\x00\x07\x00\x00\x00"u\x00\x003\x00\x00\x00*u\x00\x00\x16\x00\x00\x00^u\x00\x00\x07\x00\x00\x00uu\x00\x00*\x00\x00\x00}u\x00\x00\x07\x00\x00\x00\xa8u\x00\x007\x00\x00\x00\xb0u\x00\x00?\x00\x00\x00\xe8u\x00\x00+\x00\x00\x00(v\x00\x00\x0f\x00\x00\x00Tv\x00\x00%\x00\x00\x00dv\x00\x00\x14\x00\x00\x00\x8av\x00\x00/\x00\x00\x00\x9fv\x00\x00\x10\x00\x00\x00\xcfv\x00\x00\x13\x00\x00\x00\xe0v\x00\x009\x00\x00\x00\xf4v\x00\x00\x1c\x00\x00\x00.w\x00\x00\x1c\x00\x00\x00Kw\x00\x005\x00\x00\x00hw\x00\x00\x1d\x00\x00\x00\x9ew\x00\x00g\x00\x00\x00\xbcw\x00\x00-\x00\x00\x00$x\x00\x00\x10\x00\x00\x00Rx\x00\x00\x14\x00\x00\x00cx\x00\x00\x11\x00\x00\x00xx\x00\x00\x1e\x00\x00\x00\x8ax\x00\x00\t\x00\x00\x00\xa9x\x00\x00 \x00\x00\x00\xb3x\x00\x00\x10\x00\x00\x00\xd4x\x00\x00F\x00\x00\x00\xe5x\x00\x00\x1d\x00\x00\x00,y\x00\x00\x1d\x00\x00\x00Jy\x00\x00H\x00\x00\x00hy\x00\x00\x18\x00\x00\x00\xb1y\x00\x00\x0c\x00\x00\x00\xcay\x00\x00#\x00\x00\x00\xd7y\x00\x00\x1b\x00\x00\x00\xfby\x00\x00&\x00\x00\x00\x17z\x00\x00J\x00\x00\x00>z\x00\x00\n\x00\x00\x00\x89z\x00\x00\r\x00\x00\x00\x94z\x00\x00\t\x00\x00\x00\xa2z\x00\x00\x12\x00\x00\x00\xacz\x00\x00\x13\x00\x00\x00\xbfz\x00\x00\x11\x00\x00\x00\xd3z\x00\x00\x19\x00\x00\x00\xe5z\x00\x00\x0f\x00\x00\x00\xffz\x00\x00#\x00\x00\x00\x0f{\x00\x00W\x00\x00\x003{\x00\x00\x1c\x00\x00\x00\x8b{\x00\x00e\x00\x00\x00\xa8{\x00\x00\x1d\x00\x00\x00\x0e|\x00\x00"\x00\x00\x00,|\x00\x00\n\x00\x00\x00O|\x00\x00\x1f\x00\x00\x00Z|\x00\x00\x04\x00\x00\x00z|\x00\x00B\x00\x00\x00\x7f|\x00\x00\x07\x00\x00\x00\xc2|\x00\x00r\x00\x00\x00\xca|\x00\x00\x14\x00\x00\x00=}\x00\x00\x1b\x00\x00\x00R}\x00\x00!\x00\x00\x00n}\x00\x00\x10\x00\x00\x00\x90}\x00\x00\x18\x00\x00\x00\xa1}\x00\x00\x12\x00\x00\x00\xba}\x00\x00\x01\x00\x00\x00\xcd}\x00\x00\x05\x00\x00\x00\xcf}\x00\x00\x19\x00\x00\x00\xd5}\x00\x00\x17\x00\x00\x00\xef}\x00\x00\x19\x00\x00\x00\x07~\x00\x00\x18\x00\x00\x00!~\x00\x00\x1e\x00\x00\x00:~\x00\x00\x11\x00\x00\x00Y~\x00\x00)\x00\x00\x00k~\x00\x00V\x00\x00\x00\x95~\x00\x00\x06\x00\x00\x00\xec~\x00\x00*\x00\x00\x00\xf3~\x00\x00\x15\x00\x00\x00\x1e\x7f\x00\x00"\x00\x00\x004\x7f\x00\x00"\x00\x00\x00W\x7f\x00\x00,\x00\x00\x00z\x7f\x00\x00:\x00\x00\x00\xa7\x7f\x00\x00/\x00\x00\x00\xe2\x7f\x00\x00\n\x00\x00\x00\x12\x80\x00\x00\x17\x00\x00\x00\x1d\x80\x00\x00\x1a\x00\x00\x005\x80\x00\x00$\x00\x00\x00P\x80\x00\x00\x11\x00\x00\x00u\x80\x00\x00\x06\x00\x00\x00\x87\x80\x00\x00$\x00\x00\x00\x8e\x80\x00\x00\x10\x00\x00\x00\xb3\x80\x00\x00!\x00\x00\x00\xc4\x80\x00\x00\x18\x00\x00\x00\xe6\x80\x00\x00\x17\x00\x00\x00\xff\x80\x00\x00\x0c\x00\x00\x00\x17\x81\x00\x00\x10\x00\x00\x00$\x81\x00\x00#\x00\x00\x005\x81\x00\x00\x17\x00\x00\x00Y\x81\x00\x00\x1d\x00\x00\x00q\x81\x00\x00\x07\x00\x00\x00\x8f\x81\x00\x00\x0b\x00\x00\x00\x97\x81\x00\x000\x00\x00\x00\xa3\x81\x00\x00\x06\x00\x00\x00\xd4\x81\x00\x00\xc3\x00\x00\x00\xdb\x81\x00\x00%\x01\x00\x00\x9f\x82\x00\x00]\x00\x00\x00\xc5\x83\x00\x00.\x00\x00\x00#\x84\x00\x00\x03\x00\x00\x00R\x84\x00\x00\x06\x00\x00\x00V\x84\x00\x00\x07\x00\x00\x00]\x84\x00\x00\x08\x00\x00\x00e\x84\x00\x004\x00\x00\x00n\x84\x00\x00#\x00\x00\x00\xa3\x84\x00\x00\x1e\x00\x00\x00\xc7\x84\x00\x00\n\x00\x00\x00\xe6\x84\x00\x00\x13\x00\x00\x00\xf1\x84\x00\x00\x11\x00\x00\x00\x05\x85\x00\x00\x06\x00\x00\x00\x17\x85\x00\x00\xf1\x01\x00\x00\x1e\x85\x00\x00\x8f\x00\x00\x00\x10\x87\x00\x00o\x00\x00\x00\xa0\x87\x00\x00\x16\x00\x00\x00\x10\x88\x00\x00\x12\x00\x00\x00\'\x88\x00\x00\xc7\x00\x00\x00:\x88\x00\x00*\x00\x00\x00\x02\x89\x00\x00\x14\x00\x00\x00-\x89\x00\x00)\x00\x00\x00B\x89\x00\x00)\x00\x00\x00l\x89\x00\x00@\x00\x00\x00\x96\x89\x00\x00\x12\x00\x00\x00\xd7\x89\x00\x00\x1f\x00\x00\x00\xea\x89\x00\x00#\x00\x00\x00\n\x8a\x00\x00\x07\x00\x00\x00.\x8a\x00\x00"\x00\x00\x006\x8a\x00\x00\t\x00\x00\x00Y\x8a\x00\x00\t\x00\x00\x00c\x8a\x00\x007\x00\x00\x00m\x8a\x00\x00\n\x00\x00\x00\xa5\x8a\x00\x007\x00\x00\x00\xb0\x8a\x00\x00\t\x00\x00\x00\xe8\x8a\x00\x003\x00\x00\x00\xf2\x8a\x00\x009\x00\x00\x00&\x8b\x00\x00\x0e\x00\x00\x00`\x8b\x00\x001\x00\x00\x00o\x8b\x00\x00\x10\x00\x00\x00\xa1\x8b\x00\x00\t\x00\x00\x00\xb2\x8b\x00\x00\x84\x00\x00\x00\xbc\x8b\x00\x00\x17\x00\x00\x00A\x8c\x00\x00\x04\x00\x00\x00Y\x8c\x00\x00\n\x00\x00\x00^\x8c\x00\x006\x00\x00\x00i\x8c\x00\x00\x10\x00\x00\x00\xa0\x8c\x00\x00\x16\x00\x00\x00\xb1\x8c\x00\x00\x16\x00\x00\x00\xc8\x8c\x00\x00\x16\x00\x00\x00\xdf\x8c\x00\x00\x16\x00\x00\x00\xf6\x8c\x00\x00\x0c\x00\x00\x00\r\x8d\x00\x00\x1e\x00\x00\x00\x1a\x8d\x00\x00\x19\x00\x00\x009\x8d\x00\x00\x03\x00\x00\x00S\x8d\x00\x00_\x00\x00\x00W\x8d\x00\x00\x18\x00\x00\x00\xb7\x8d\x00\x00\x0c\x00\x00\x00\xd0\x8d\x00\x00\x07\x00\x00\x00\xdd\x8d\x00\x00\x1d\x00\x00\x00\xe5\x8d\x00\x00\x1b\x00\x00\x00\x03\x8e\x00\x00H\x00\x00\x00\x1f\x8e\x00\x00D\x00\x00\x00h\x8e\x00\x00\x96\x00\x00\x00\xad\x8e\x00\x00\x12\x00\x00\x00D\x8f\x00\x00\x1b\x00\x00\x00W\x8f\x00\x00\x1e\x00\x00\x00s\x8f\x00\x00J\x00\x00\x00\x92\x8f\x00\x00\x1d\x00\x00\x00\xdd\x8f\x00\x00\x05\x00\x00\x00\xfb\x8f\x00\x00<\x00\x00\x00\x01\x90\x00\x00F\x00\x00\x00>\x90\x00\x008\x00\x00\x00\x85\x90\x00\x00r\x00\x00\x00\xbe\x90\x00\x00H\x00\x00\x001\x91\x00\x00o\x00\x00\x00z\x91\x00\x00T\x00\x00\x00\xea\x91\x00\x00\x10\x00\x00\x00?\x92\x00\x00\xc0\x00\x00\x00P\x92\x00\x00\x0b\x00\x00\x00\x11\x93\x00\x00\t\x00\x00\x00\x1d\x93\x00\x00\n\x00\x00\x00\'\x93\x00\x00"\x00\x00\x002\x93\x00\x00"\x00\x00\x00U\x93\x00\x00\x13\x00\x00\x00x\x93\x00\x00 \x00\x00\x00\x8c\x93\x00\x00\x14\x00\x00\x00\xad\x93\x00\x00-\x00\x00\x00\xc2\x93\x00\x00-\x00\x00\x00\xf0\x93\x00\x002\x00\x00\x00\x1e\x94\x00\x00+\x00\x00\x00Q\x94\x00\x008\x00\x00\x00}\x94\x00\x00\x11\x00\x00\x00\xb6\x94\x00\x00\x1d\x00\x00\x00\xc8\x94\x00\x00I\x00\x00\x00\xe6\x94\x00\x001\x00\x00\x000\x95\x00\x00\x94\x00\x00\x00b\x95\x00\x00N\x00\x00\x00\xf7\x95\x00\x00\x10\x00\x00\x00F\x96\x00\x00 \x00\x00\x00W\x96\x00\x003\x00\x00\x00x\x96\x00\x00\x08\x00\x00\x00\xac\x96\x00\x00\x0c\x00\x00\x00\xb5\x96\x00\x00\x0c\x00\x00\x00\xc2\x96\x00\x004\x00\x00\x00\xcf\x96\x00\x00=\x00\x00\x00\x04\x97\x00\x00\r\x00\x00\x00B\x97\x00\x00c\x00\x00\x00P\x97\x00\x00\x8d\x00\x00\x00\xb4\x97\x00\x00D\x00\x00\x00B\x98\x00\x000\x00\x00\x00\x87\x98\x00\x00\x13\x00\x00\x00\xb8\x98\x00\x00\x1b\x00\x00\x00\xcc\x98\x00\x00\x1e\x00\x00\x00\xe8\x98\x00\x00+\x00\x00\x00\x07\x99\x00\x00\x07\x00\x00\x003\x99\x00\x00\x11\x00\x00\x00;\x99\x00\x00\r\x00\x00\x00M\x99\x00\x00\x07\x00\x00\x00[\x99\x00\x005\x00\x00\x00c\x99\x00\x00(\x00\x00\x00\x99\x99\x00\x00(\x00\x00\x00\xc2\x99\x00\x00\'\x00\x00\x00\xeb\x99\x00\x00*\x00\x00\x00\x13\x9a\x00\x00\x10\x00\x00\x00>\x9a\x00\x00d\x00\x00\x00O\x9a\x00\x00\x1a\x00\x00\x00\xb4\x9a\x00\x00\x16\x00\x00\x00\xcf\x9a\x00\x00\x18\x00\x00\x00\xe6\x9a\x00\x00\x95\x00\x00\x00\xff\x9a\x00\x00k\x00\x00\x00\x95\x9b\x00\x00;\x00\x00\x00\x01\x9c\x00\x00/\x00\x00\x00=\x9c\x00\x00m\x00\x00\x00m\x9c\x00\x00\x0f\x00\x00\x00\xdb\x9c\x00\x00\x1a\x00\x00\x00\xeb\x9c\x00\x00\x1d\x00\x00\x00\x06\x9d\x00\x00\x1c\x00\x00\x00$\x9d\x00\x00\x1c\x01\x00\x00A\x9d\x00\x00}\x00\x00\x00^\x9e\x00\x00\x8e\x00\x00\x00\xdc\x9e\x00\x00\xc5\x00\x00\x00k\x9f\x00\x00m\x00\x00\x001\xa0\x00\x00e\x01\x00\x00\x9f\xa0\x00\x00%\x00\x00\x00\x05\xa2\x00\x00\x05\x00\x00\x00+\xa2\x00\x00\x1f\x00\x00\x001\xa2\x00\x00\x18\x00\x00\x00Q\xa2\x00\x00\x0b\x00\x00\x00j\xa2\x00\x00\x07\x00\x00\x00v\xa2\x00\x00\x10\x00\x00\x00~\xa2\x00\x00\x1b\x00\x00\x00\x8f\xa2\x00\x00\t\x00\x00\x00\xab\xa2\x00\x00\x91\x00\x00\x00\xb5\xa2\x00\x00\x04\x00\x00\x00G\xa3\x00\x00\t\x00\x00\x00L\xa3\x00\x00<\x00\x00\x00V\xa3\x00\x00l\x00\x00\x00\x93\xa3\x00\x00\x1a\x00\x00\x00\x00\xa4\x00\x00\x1a\x00\x00\x00\x1b\xa4\x00\x00\x9e\x00\x00\x006\xa4\x00\x004\x00\x00\x00\xd5\xa4\x00\x00#\x00\x00\x00\n\xa5\x00\x00\x91\x00\x00\x00.\xa5\x00\x001\x00\x00\x00\xc0\xa5\x00\x00,\x00\x00\x00\xf2\xa5\x00\x00^\x00\x00\x00\x1f\xa6\x00\x00s\x00\x00\x00~\xa6\x00\x00|\x00\x00\x00\xf2\xa6\x00\x005\x00\x00\x00o\xa7\x00\x00\x0e\x00\x00\x00\xa5\xa7\x00\x00\x08\x00\x00\x00\xb4\xa7\x00\x00\x1f\x00\x00\x00\xbd\xa7\x00\x00\x06\x00\x00\x00\xdd\xa7\x00\x007\x00\x00\x00\xe4\xa7\x00\x00!\x00\x00\x00\x1c\xa8\x00\x00$\x00\x00\x00>\xa8\x00\x00\r\x00\x00\x00c\xa8\x00\x00\n\x00\x00\x00q\xa8\x00\x00\x1b\x00\x00\x00|\xa8\x00\x00\x0e\x00\x00\x00\x98\xa8\x00\x00\x12\x00\x00\x00\xa7\xa8\x00\x00\x12\x00\x00\x00\xba\xa8\x00\x005\x00\x00\x00\xcd\xa8\x00\x00&\x00\x00\x00\x03\xa9\x00\x00\xb6\x00\x00\x00*\xa9\x00\x00>\x00\x00\x00\xe1\xa9\x00\x00\x13\x00\x00\x00 \xaa\x00\x00i\x00\x00\x004\xaa\x00\x00N\x00\x00\x00\x9e\xaa\x00\x007\x00\x00\x00\xed\xaa\x00\x00\x06\x00\x00\x00%\xab\x00\x00\x19\x00\x00\x00,\xab\x00\x00\x0c\x00\x00\x00F\xab\x00\x00\x13\x00\x00\x00S\xab\x00\x00(\x00\x00\x00g\xab\x00\x00h\x00\x00\x00\x90\xab\x00\x001\x00\x00\x00\xf9\xab\x00\x00:\x00\x00\x00+\xac\x00\x00/\x00\x00\x00f\xac\x00\x00\n\x00\x00\x00\x96\xac\x00\x00\t\x00\x00\x00\xa1\xac\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book <font face="serif">%s</font> of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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<br>CSS\x00Page Setup\x00Parsing LRF file\x00Password for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: ca\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2008-03-31 15:53+PDT\nPO-Revision-Date: 2007-11-16 09:07+0100\nLast-Translator: libprs500\nLanguage-Team: \nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nX-Generator: KBabel 1.11.4\n\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\nArtikel %s von %s geladen\n%s\x00 Tage\x00 von\x00 no \xc3\xa9s una imatge v\xc3\xa0lida\x00 nicht gefunden.\x00 punts\x00 P\xc3\xad\xc2\xadxels\x00 Sekunden\x00 estreles\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00Clau d\'&acc\xc3\xa9s;\x00Feed &anf\xc3\xbcgen\x00Etikett &anf\xc3\xbcgen:\x00&Autor(s):\x00Marge &Inferior:\x00Datenbank verdi&chten\x00&Desactivar detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols\x00&Feed Titel:\x00&For\xc3\xa7a un salt de p\xc3\xa0gina abans de la marca:\x00&Format de la cap\xc3\xa7alera:\x00Marge &Esquerre:\x00&Ubicaci\xc3\xb3 de la base de dades (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monoespaiada:\x00\xc3\x84<ester Artikel:\x00Inserta un salt de &p\xc3\xa0gina abans de la marca:\x00&Contrasenya:\x00&Preprocessament:\x00&Priorit\xc3\xa4t der Konvertierungsauftr\xc3\xa4ge:\x00&Perfil:\x00&Editorial:\x00&Valoraci\xc3\xb3:\x00Expressi\xc3\xb3 &Regular:\x00Rezept entfe&rnen\x00Etiketten entfe&rnen:\x00Marge &Dret:\x00Re&cerca:\x00&S\xc3\xa8ries:\x00&Serif:\x00&Mostrar cap\xc3\xa7alera\x00Pa&sswort anzeigen\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&T\xc3\xad\xc2\xadtol:\x00Marge &Superior:\x00Nom d\'&usuari:\x00&Espaiat de les paraules:\x00...\x00<b>Els canvis s\'ignoren fins que el re-inicieu.\x00<b>No puc aconseguir la coberta.</b><br/>\x00<b>No</b> s\'han trobat coincid\xc3\xa8ncies per al text "<i>%s</i>".\x00<br>Cal que siga un directori.\x00<font color="gray">Ajuda no disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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 gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Arxius HTML0 del Book Designer</li>\x00<li><b>pdftohtml</b> - Arxius HTML obtinguts amb l\'aplicaci\xc3\xb3 pdftohtml</li>\x00<ol><li><b>baen</b> - Llibre de BAEN Publishers</li>\x00<p>Es existiert bereits eine ung\xc3\xbcltige Datenbank in %s, bitte l\xc3\xb6schen Sie diese, bevor sie die bestehende Datenbank verschieben.<br>Fehler: %s\x00<p>Es existieren bereits B\xc3\xbccher mit dem selben Titel in der Datenbank. Sollen die folgenden B\xc3\xbccher trotzdem hinzugef\xc3\xbcgt werden?<ul>\x00<p>No puc desar llibres al dispositiu perqu\xc3\xa8 no hi ha espai restant\x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr <b>LibraryThing.com</b> an. <br/>Insofern Sie dies nicht besitzen, k\xc3\xb6nnen Sie sich kostenlos <a href=\'http://www.librarything.com\'>anmelden</a>! </p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Error llegint de l\'arxiu: <br /><b>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Expressi\xc3\xb3 regular. Les marques <a> amb href coincidents, s\xc3\xb3n ignorades. Per defecte: %default\x00Zuge&wiesene Etiketten\x00&Verf\xc3\xbcgbare Etiketten\x00Treballs actius\x00Afe&geix les etiquetes: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Afegir el directori al llistat de directoris freq\xc3\xbcents\x00Afegeix la cap\xc3\xa7alera a totes les p\xc3\xa0gines, ficant el t\xc3\xad\xc2\xadtol i l\'autor.\x00Afegir un nou format per a aquest llibre a la base de dades\x00Afegeix llibres\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Milloreu l\'aparen\xc3\xa7a del fitxer LRF generat, especificant la grand\xc3\xa0ria de lletra i l\'espaiat entre paraules.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Irgendein\x00Etikett dem aktuellen Buch zuweisen\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00&Ordena autors:\x00Ord&re per autor:\x00Autor(s)\x00Autoren:\x00Formats disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Precedent\x00Grand\xc3\xa0ria de lletra base:\x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Llibre \x00Llibre <font face="serif">%s</font> de %s.\x00Coberta\x00Marge inferior de la p\xc3\xa0gina. Per defecte: %default px.\x00Cerca una imatge per a utilitzar com a coberta d\'aquest llibre.\x00Cerca la nova ubicaci\xc3\xb3 de la base de dades\x00Converteix tots\x00eBooks auf einmal zu LRF konvertieren\x00No puc configurar-lo\x00No puc configurar-lo amb treballs processant-se\x00No puc connectar\x00No puc convertir-lo\x00No puc convetir "%s" perqu\xc3\xa8 el format no hi \xc3\xa9s suportat\x00No puc editar les meta-dades\x00No puc aconseguir la coberta\x00Kann schon fertiggestellte Auftr\xc3\xa4ge nicht abbrechen.\x00Kann Auftrag nicht abbrechen.\x00Kann Auftr\xc3\xa4ge nicht abbrechen, die mit dem Ger\xc3\xa4t kommunizieren, da dies zu Datenverlust f\xc3\xbchren kann.\x00Kann Auftr\xc3\xa4ge in Warteliste nicht abbrechen.\x00No pot llegir-se\x00No puc desar al disc\x00No puc mostrar-lo\x00La targeta\n%s est\xc3\xa0 disponible\x00Categoria\x00Canvia la imatge de la &coberta:\x00Passwort \xc3\xa4ndern\x00Canvia l\'autor(s). Per a especificar m\xc3\xa9s d\'un, separeu-los amb comes.\x00Canvia l\'editorial del llibre\x00Canvia el t\xc3\xad\xc2\xadtol del llibre\x00Benutzername und/oder Passwort Ihres Kontos bei LibraryThing.com \xc3\xa4ndern\x00Detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols\x00Trieu format\x00Trieu el format per convertir a LRF\x00Format zur Vorschau w\xc3\xa4hlen\x00Ein Klick zeigt die aktiven Auftr\xc3\xa4ge.\x00Durch getrennte Liste der Etiketten, die von den B\xc3\xbcchern entfernt werden.\x00Comentaris\x00Configuraci\xc3\xb3\x00Configura\x00Configura el visor\x00Converteix %s a LRF\x00Converteix Ebooks\x00Converteix individualment\x00Convertir a LRF\x00Konnte Umschlagbild nicht laden: %s\x00Konnte Artikel nicht abrufen. Der erneute Start mit --debug zeigt m\xc3\xb6gliche Gr\xc3\xbcnde an \x00No puc aconseguir la coberta\x00Konnte aufgrund zu hoher Serverlast kein Umschlagbild abrufen. Bitte versuchen sie es sp\xc3\xa4ter wieder.\x00No puc moure la base de dades\x00Konnte Datei nicht analysieren: %s\x00Creat per \x00Individuelle Nachrichtenquellen\x00Data\x00Voreinstellung f\xc3\xbcr Zei&t\xc3\xbcberschreitung bei Netzwerkverbindungen:\x00Esborra\x00Etikett aus der Datenbank l\xc3\xb6schen. Entfernt das Etikett von allen B\xc3\xbcchern und l\xc3\xb6scht es dann aus der Datenbank.\x00Details des Auftrags\x00No s\xc3\xa9 per a qu\xc3\xa9 \xc3\xa9s aix\xc3\xb3\x00Fortschrittsbalken nicht anzeigen\x00Download beendet\x00Lade Umschlagbild von %s\x00Duplikate gefunden\x00E\x00ERROR\x00Edita la meta-informaci\xc3\xb3\x00Editar Meta-informaci\xc3\xb3\x00Edita la meta-informaci\xc3\xb3\x00Edita metadades en massa\x00Edita metadades individualment\x00Lletres inserides\x00Activa la &rotaci\xc3\xb3 autom\xc3\xa0tica d\'imatges\x00Activa la rotaci\xc3\xb3 autom\xc3\xa0tica de les imatges m\xc3\xa9s grans que l\'amplada de la pantalla.\x00Fehler\x00Error en la comunicaci\xc3\xb3 amb el dispositiu\x00Error llegint l\'arxiu\x00Error comunicant amb el dispositiu\x00Extrau la miniatura del fitxer LRF\x00Laden der Artikel fehlgeschlagen: %s von %s\n\x00Der Download von Teilen der folgenden Artikel schlug fehl:\x00Der Download der folgenden Artikel schlug fehl:\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Recull\x00Recolliu la coberta des del servidor\x00Recull metadades\x00Recull metadades des del servidor\x00Recull not\xc3\xad\xc2\xadcies (RSS)\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Recollint metadades per a <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Milloreu la detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols i seccions.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00For\xc3\xa7a un salt de p\xc3\xa0gina davant d\'un element amb un atribut concret. El format d\'aquesta opci\xc3\xb3 \xc3\xa9s regexp_marca,nom_atribut,tegexp_valor_atribut. Per exemple, amb "h\\d,class,chapter", serien coincidents totes les marques de encap\xc3\xa7alament amb l\'atribut class="chapter". Per defecte: %default\x00For\xc3\xa7a un salt de p\xc3\xa0gina abans de les marques amb noms coincidents amb l\'expressi\xc3\xb3 regular.\x00For\xc3\xa7a un salt de p\xc3\xa0gina abans de l\'&atribut:\x00Art\x00Format\x00Formats\x00Seg\xc3\xbcent\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00Directoris emprats amb freq\xc3\xbc\xc3\xa8ncia\x00Feeds der Index Seite erhalten\x00Cap\xc3\xa7alera\x00Ajuda amb l\'\xc3\xad\xc2\xadtem\x00Partici\xc3\xb3 de mots\x00IS&BN:\x00Si l\'html2lrf no troba cap salt de p\xc3\xa0gina en el fitxer html i no pot detectar els encap\xc3\xa7alaments dels cap\xc3\xad\xc2\xadtols, insereix autom\xc3\xa0ticament un salt de p\xc3\xa0gina abans de les marques que tinguen un nom coincident amb l\'expressi\xc3\xb3 regular. Per defecte: %default. Aquesta opci\xc3\xb3 s\'inhabilita establint la regexp com a "$".El prop\xc3\xb2sit de tot plegat \xc3\xa9s evitar p\xc3\xa0gines massa llargues, que alentirien al canvi de fulla del fitxer LRF. Aquesta opci\xc3\xb3 s\'ignora si la p\xc3\xa0gina actual en t\xc3\xa9 pocs elements.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si es detecta un gr\xc3\xa0fic per a la coberta al fitxer d\'entrada, utilitzar-la en lloc de la coberta especificada.\x00Farben nicht bea&chten\x00Ignora les &taules\x00Augmenta la grand\xc3\xa0ria de la lletra en 2 * FONT_DELTA punts i l\'espai de l\xc3\xad\xc2\xadnia en FONT_DELTA punts. FONT_DELTA pot ser una fracci\xc3\xb3. Si \xc3\xa9s un valor negatiu, la grand\xc3\xa0ria de la lletra disminueix.\x00Inserta l\xc3\xad\xc2\xadnies &buides entre par\xc3\xa0grafs\x00Ung\xc3\xbcltige Datenbank\x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida \x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida \x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida.<br>No es pot escriure \x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Treball\x00Auftrag durch Benutzer abgebrochen\x00Treballs:\x00Visor LRF\x00Marge esquerre de la p\xc3\xa0gina. Per defecte: %default px.\x00Biblioteca\x00Llistat de s\xc3\xa8ries conegudes. Podeu afegir-hi de noves.\x00Aparen\xc3\xa7a\x00\xc3\x9cbereinstimmung mit a&llen der folgenden Kriterien\x00\xc3\x9cbereinstimmung mit irge&ndeinem der folgenden Kriterien\x00Coincid\xc3\xa8ncies\x00Maximale Anzahl der zu ladenden Artikel pro feed.\x00Meta-informaci\xc3\xb3\x00Metadades\x00Minimitza l\'\xc3\xbas de mem\xc3\xb2ria, utilitzant m\xc3\xa9s temps de processador. Empreu aquesta opci\xc3\xb3 si el vostre equip no disposa de molta RAM.\x00E&inr\xc3\xbccken mindestens:\x00Mehr\x00Ausblenden\x00Nachrichten abgerufen. \xc3\x9cbertragung ans Ger\xc3\xa4t l\xc3\xa4uft.\x00P\xc3\xa0gina seg\xc3\xbcent\x00Seg\xc3\xbcent coincid\xc3\xa8ncia\x00Formats no disponibles\x00Cap llibre seleccionat\x00Cap llibre seleccionat\x00Kein Treffer\x00No s\'han trobat coincid\xc3\xa8ncies\x00Sense espai al dispositiu\x00Cap\x00Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. Voreinstellung %default\x00Etiketten-Editor \xc3\xb6ffnen\x00Obre l\'eBook\x00Opcions\x00Einstellungen f\xc3\xbcr feeds2disk\x00Einstellungen f\xc3\xbcr html2lrf\x00Einstellungen f\xc3\xbcr web2disk (um von Feeds verlinkte Webseiten abzurufen)\x00Nom del fitxer de dest\xc3\xad\xc2\xad. Per defecte, deriva del fitxer d\'entrada\x00Substitueix la CSS. Pot indicar-se tant un cam\xc3\xad\xc2\xad a la fulla CSS alternativa, com una cadena. En aquest \xc3\xbaltim cas, la cadena s\'interpreta com a CSS.\x00Substitueix<br>CSS\x00Configuraci\xc3\xb3 de la p\xc3\xa0gina\x00Estic analitzant el fitxer LRF\x00Passwort f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Es necessita una contrasenya.\x00Cam\xc3\xad\x00Cam\xc3\xad\xc2\xad al fitxer d\'imatge que s\'utilitzar\xc3\xa0 com a miniatura\x00Cam\xc3\xad\xc2\xad al fitxer txt que cont\xc3\xa9 el comentari a desar en el fitxer LRF\x00Cam\xc3\xad\xc2\xad al fitxer d\'imatge per a utilitzar com a coberta\x00Pfad zum Ausgabeverzeichnis, in dem die HTML Datei erstellt werden soll. Voreinstellung auf aktuelles Verzeichnis.\x00Pre-processa els fitxers Baen HTML per a millorar el fitxer LRF generat.\x00Preprocessa l\'arxiu abans de convertir a LRF. Aix\xc3\xb3 \xc3\xa8s \xc3\xbatil si coneixes l\'origen de l\'arxiu. Fonts conegudes:\x00Evita la inserci\xc3\xb3 autom\xc3\xa0tica de salts de p\xc3\xa0gina abans dels cap\xc3\xad\xc2\xadtols detectats.\x00P\xc3\xa0gina anterior\x00Perfil del dispositiu per al que es genera el fitxer LRF. Aquest perfil determina la resoluci\xc3\xb3 i la grand\xc3\xa0ria de la pantalla del dispositiu, entre d\'altres. Per defecte:%s Perfils suportats:\x00Progressi\xc3\xb3\x00Editorial\x00Valoraci\xc3\xb3\x00Valora aquest llibre: 0-5 estreles\x00El Sony Reader\n%s est\xc3\xa0 disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Elimiar el directori al llistat de directoris freq\xc3\xbcents\x00Suprimeix llibres\x00Feed aus dem Rezept entfernen\x00Elimina els formats seleccionats per a aquest llibre de la base de dades.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Renderitza les taules HTML com a blocs de text en lloc de les taules actuals. \xc3\x89s necessari si el fitxer HTML cont\xc3\xa9 taules massa grans o complexes.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Reinicialitza la recerca r\xc3\xa0pida\x00Marge dret de la p\xc3\xa0gina. Per defecte: %default px.\x00Laufzeit\x00S&ans-serif:\x00Desa al disc\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Recerca llibres pel t\xc3\xad\xc2\xadtol o l\'autor. <br><br>Els espais entre paraules es substitueixen per AND.\x00Recerca llibres pel t\xc3\xad\xc2\xadtol, l\'autor, l\'editorial, les etiquetes i els comentaris<br><br>Els espais entre paraules es substitueixen per AND.\x00Seleccioneu el llibre que m\xc3\xa9s s\'acoste del llistat que hi ha a sota\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Envia al dispositiu\x00Envia a la mem\xc3\xb2ria interna\x00Envia a la targeta de mem\xc3\xb2ria\x00Separa els par\xc3\xa0grafs amb l\xc3\xad\xc2\xadnies buides.\x00S\xc3\xa8ries\x00\xc3\x8dndex de s\xc3\xa8rie.\x00Serien Index:\x00Serien:\x00Server-Fehler. Bitte versuchen Sie es sp\xc3\xa4ter wieder.\x00Indiqueu l\'ID (identificador) del llibre\x00Fixa els valors de conversi\xc3\xb3 er defecte\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per autor\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per t\xc3\xad\xc2\xadtol\x00Indiqueu l\'autor\x00Indiqueu l\'autor(s). Si indique m\xc3\xa9s d\'un autor, separeu el llistat amb comes. Per defecte: %default\x00Indiqueu el nom del llibre\x00Indiqueu la categoria.\x00Indiqueu els comentaris.\x00Voreinstellung der Zeit\xc3\xbcberschreitung f\xc3\xbcr Netzwerkabrufe festsetzen (Gilt immer dann, wenn aus dem Internet Informationen abgerufen werden sollen) \x00Estableix el format de la cap\xc3\xa7alera: %a es reempla\xc3\xa7a per l\'autor i %t pel t\xc3\xad\xc2\xadtol. Per defecte: %default\x00Fixa l\'espai entre paraules en punts. Per defecte: %default\x00Indique el t\xc3\xadtol. Per defecte: nom_del_fitxer.\x00Registreu-vos gratu\xc3\xaftament a <a href="http://www.isbndb.com">ISBNdb.com</a> per a obtenir una clau d\'acc\xc3\xa9s.\x00Grand\xc3\xa0ria (MB)\x00Clau d\'ordre per a l\'autor\x00Clau d\'ordre per al t\xc3\xad\xc2\xadtol.\x00En&codierung der Quelldatei:\x00Geben Sie eine Liste von Feeds zum Download an. Zum Beispiel: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nWenn Sie diese Option w\xc3\xa4hlen, wird jedes Argument %prog ignoriert und die Voreinstellung zum Download der Feeds verwendet. \x00Especifiqueu com s\'ha d\'ordenar l\'autor(s) d\'aquest llibre. Per exemple,ordena Vicent A. Estell\xc3\xa9s com a Estell\xc3\xa9s, Vicent A.\x00Especifiqueu informaci\xc3\xb3 com ara t\xc3\xad\xc2\xadtol i autor per al llibre.<p>Aquesta informaci\xc3\xb3 s\'actualitza tant a la base de dades com al fitxer LRF.\x00Especifiqueu la grand\xc3\xa0ria de lletra base en punts. Totes les lletres seran escalades segons aquest valor. L\'opci\xc3\xb3 --font-delta resta obsoleta. Per a utilitzar --font-delta, fixe aquest valor a 0.\x00Configuraci\xc3\xb3 de la p\xc3\xa0gina del dispositiu, especificant ,marges i grand\xc3\xa0ria de la pantalla, entre d\'altres.\x00Especifiqueu lletres truetype per a les fam\xc3\xad\xc2\xadlies serif, sans-serif i monoespaiades. Aquestes lletres s\xc3\xb3n inserides al fitxer LRF. Tingueu en compte que afegir lletres personalitzades alenteix el canvi de p\xc3\xa0gina. Per especificar cadascuna de les fam\xc3\xad\xc2\xadlies s\'empra: "cam\xc3\xad\xc2\xad a la carpeta de lletres, fam\xc3\xad\xc2\xadlia" ( --serif-family "%s, Times New Roman")\n\x00Starte Download von [%d Thread(s)]...\x00Estat\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Etique&tes:\x00Etikett\x00Etiketten Editor\x00Detecci\xc3\xb3 basada en marques\x00Etiquetes\x00Etiquetes per a categoritzar el llibre (especialment \xc3\xbatil per a recerques). <br><br>Pot emprar-se qualsevol paraula o frase, separada per comes.\x00Test\x00TextLabel\x00Categoria a la que pertany el llibre. Per exemple, Hist\xc3\xb2ria\x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Nombre m\xc3\xa0xim de nivells per a processar enlla\xc3\xa7os recursivament. El valor 0 (cero) vol dir que no s\xc3\xb3n seguits. Amb un valor negatiu, ignora les marques <a>.\x00Fam\xc3\xad\xc2\xadlia de lletres monoespaiades per a incrustar.\x00\xc3\x84ltester Artikel, der geladen wird\x00Expressi\xc3\xb3 regular utilitzada per a detectar els t\xc3\xad\xc2\xadtols dels cap\xc3\xad\xc2\xadtols. Cerca a les marques de encap\xc3\xa7alament (h1-h6). Per defecte: %default\x00Fam\xc3\xad\xc2\xadlia de lletres sans-serif per a incrustar.\x00Fam\xc3\xad\xc2\xadlia de lletres serif per a incrustar.\x00Der Text, nach dem gesucht werden soll. Dies wird als eine Regul\xc3\xa4re Expression interpretiert.\x00Der Titel f\xc3\xbcr dieses Rezept. Wird als Titel f\xc3\xbcr alle eBooks benutzt, die aus den geladenen Feeds erstellt wurden.\x00Hi ha hagut un error de comunicaci\xc3\xb3 amb el dispositiu. Lleve, torne a connectar el dispositiu i torne a iniciar el programa\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Marca de temps\x00T\xc3\xad\xc2\xadtol\x00Detecci\xc3\xb3 basada en el t\xc3\xad\xc2\xadtol\x00Titel:\x00Marge superior de la p\xc3\xa0gina. Per defecte: %default px.\x00Versuche Umschlagbild zu laden...\x00Etikett vom aktuellen Buch entfernen\x00No disponible\x00Desconegut\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00&R\xc3\xb6mische Ziffern f\xc3\xbcr Serien Nummerierung verwenden\x00Um&schlagbild der Quelldatei verwenden\x00Utilitza l\'element <spine> del fitxer OPF per a determinar l\'ordre com s\'afegeixen els fitxers HTML al LRF. Cal que el fitxer .opf sigui a la mateixa carpeta que el fitxer HTML base.\x00Utilitzeu aquesta opci\xc3\xb3 per a fitxers html0 de Book Designer.\x00Utilitza fons blanc\x00Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed und l\xc3\xa4dt h\xc3\xb6chstens 2 Feeds.\x00Benutzername f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Mostra\x00Spezielles Format ansehen\x00En espera...\x00Est\xc3\xa0 treballant...\x00No tens permissos per a llegir l\'arxiu: \x00Cal que afegiu aquesta opci\xc3\xb3 per a fitxers generats amb pdftohtml, si no voleu que la conversi\xc3\xb3 falli.\x00Es muss eine einzelne PDF Datei angegeben werden.\x00Cal especificar una clau d\'acc\xc3\xa8s v\xc3\xa0lida per a isbndb.com\x00Cal especificar un ISBN correcte per al llibre.\x00beinhaltet\x00libprs500\x00', 'de': '\xde\x12\x04\x95\x00\x00\x00\x00\xa0\x01\x00\x00\x1c\x00\x00\x00\x1c\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x1a\x00\x00\x0e\x00\x00\x00\x1d\x1a\x00\x00!\x00\x00\x00,\x1a\x00\x00\x05\x00\x00\x00N\x1a\x00\x00\x06\x00\x00\x00T\x1a\x00\x00\x17\x00\x00\x00[\x1a\x00\x00\x0b\x00\x00\x00s\x1a\x00\x00\x04\x00\x00\x00\x7f\x1a\x00\x00\x03\x00\x00\x00\x84\x1a\x00\x00\x08\x00\x00\x00\x88\x1a\x00\x00\x06\x00\x00\x00\x91\x1a\x00\x00\x1c\x00\x00\x00\x98\x1a\x00\x00\x0e\x00\x00\x00\xb5\x1a\x00\x00\x0c\x00\x00\x00\xc4\x1a\x00\x00\t\x00\x00\x00\xd1\x1a\x00\x00\t\x00\x00\x00\xdb\x1a\x00\x00\x0c\x00\x00\x00\xe5\x1a\x00\x00\x0f\x00\x00\x00\xf2\x1a\x00\x00\x11\x00\x00\x00\x02\x1b\x00\x00\x1a\x00\x00\x00\x14\x1b\x00\x00\x0c\x00\x00\x00/\x1b\x00\x00\x1d\x00\x00\x00<\x1b\x00\x00\x0f\x00\x00\x00Z\x1b\x00\x00\r\x00\x00\x00j\x1b\x00\x00)\x00\x00\x00x\x1b\x00\x00"\x00\x00\x00\xa2\x1b\x00\x00\x18\x00\x00\x00\xc5\x1b\x00\x00\x0b\x00\x00\x00\xde\x1b\x00\x00\x10\x00\x00\x00\xea\x1b\x00\x00\x17\x00\x00\x00\xfb\x1b\x00\x00\n\x00\x00\x00\x13\x1c\x00\x00\x0c\x00\x00\x00\x1e\x1c\x00\x00\x1e\x00\x00\x00+\x1c\x00\x00\t\x00\x00\x00J\x1c\x00\x00\x0c\x00\x00\x00T\x1c\x00\x00\x08\x00\x00\x00a\x1c\x00\x00\x14\x00\x00\x00j\x1c\x00\x00\x0e\x00\x00\x00\x7f\x1c\x00\x00\r\x00\x00\x00\x8e\x1c\x00\x00\x0e\x00\x00\x00\x9c\x1c\x00\x00\x08\x00\x00\x00\xab\x1c\x00\x00\x08\x00\x00\x00\xb4\x1c\x00\x00\x07\x00\x00\x00\xbd\x1c\x00\x00\x0c\x00\x00\x00\xc5\x1c\x00\x00\x0e\x00\x00\x00\xd2\x1c\x00\x00\x12\x00\x00\x00\xe1\x1c\x00\x00\x05\x00\x00\x00\xf4\x1c\x00\x00\x08\x00\x00\x00\xfa\x1c\x00\x00\x0c\x00\x00\x00\x03\x1d\x00\x00\n\x00\x00\x00\x10\x1d\x00\x00\x0e\x00\x00\x00\x1b\x1d\x00\x00\x03\x00\x00\x00*\x1d\x00\x001\x00\x00\x00.\x1d\x00\x00"\x00\x00\x00`\x1d\x00\x00=\x00\x00\x00\x83\x1d\x00\x00\x18\x00\x00\x00\xc1\x1d\x00\x00+\x00\x00\x00\xda\x1d\x00\x00\x00\x02\x00\x00\x06\x1e\x00\x00\xa3\x01\x00\x00\x07 \x00\x00\x82\x02\x00\x00\xab!\x00\x00>\x00\x00\x00.$\x00\x00S\x00\x00\x00m$\x00\x005\x00\x00\x00\xc1$\x00\x00p\x00\x00\x00\xf7$\x00\x00a\x00\x00\x00h%\x00\x00G\x00\x00\x00\xca%\x00\x00(\x00\x00\x00\x12&\x00\x00\xa7\x00\x00\x00;&\x00\x00W\x00\x00\x00\xe3&\x00\x00\x96\x00\x00\x00;\'\x00\x00=\x01\x00\x00\xd2\'\x00\x002\x00\x00\x00\x10)\x00\x00\x01\x00\x00\x00C)\x00\x00C\x00\x00\x00E)\x00\x00\r\x00\x00\x00\x89)\x00\x00\x0f\x00\x00\x00\x97)\x00\x00\x0b\x00\x00\x00\xa7)\x00\x00\x0b\x00\x00\x00\xb3)\x00\x00\x18\x00\x00\x00\xbf)\x00\x007\x00\x00\x00\xd8)\x00\x004\x00\x00\x00\x10*\x00\x00.\x00\x00\x00E*\x00\x00\t\x00\x00\x00t*\x00\x00!\x00\x00\x00~*\x00\x00b\x00\x00\x00\xa0*\x00\x00o\x00\x00\x00\x03+\x00\x00\x16\x00\x00\x00s+\x00\x00\x12\x00\x00\x00\x8a+\x00\x006\x00\x00\x00\x9d+\x00\x00\x12\x00\x00\x00\xd4+\x00\x00m\x00\x00\x00\xe7+\x00\x00\x08\x00\x00\x00U,\x00\x00\x0f\x00\x00\x00^,\x00\x00\x0f\x00\x00\x00n,\x00\x00\x0e\x00\x00\x00~,\x00\x00\x05\x00\x00\x00\x8d,\x00\x00\x03\x00\x00\x00\x93,\x00\x00\x19\x00\x00\x00\x97,\x00\x00\x1b\x00\x00\x00\xb1,\x00\x00\x16\x00\x00\x00\xcd,\x00\x00\x06\x00\x00\x00\xe4,\x00\x00\x0e\x00\x00\x00\xeb,\x00\x00\r\x00\x00\x00\xfa,\x00\x00\t\x00\x00\x00\x08-\x00\x00\x08\x00\x00\x00\x12-\x00\x00\x11\x00\x00\x00\x1b-\x00\x00\x16\x00\x00\x00--\x00\x00\x04\x00\x00\x00D-\x00\x00\x10\x00\x00\x00I-\x00\x00\x05\x00\x00\x00Z-\x00\x00!\x00\x00\x00`-\x00\x00\x10\x00\x00\x00\x82-\x00\x00\x05\x00\x00\x00\x93-\x00\x00(\x00\x00\x00\x99-\x00\x00\n\x00\x00\x00\xc2-\x00\x00.\x00\x00\x00\xcd-\x00\x005\x00\x00\x00\xfc-\x00\x00$\x00\x00\x002.\x00\x00\x0c\x00\x00\x00W.\x00\x00\x1a\x00\x00\x00d.\x00\x00\x10\x00\x00\x00\x7f.\x00\x00.\x00\x00\x00\x90.\x00\x00\x0e\x00\x00\x00\xbf.\x00\x00\x0e\x00\x00\x00\xce.\x00\x007\x00\x00\x00\xdd.\x00\x00\x14\x00\x00\x00\x15/\x00\x00\x12\x00\x00\x00*/\x00\x00#\x00\x00\x00=/\x00\x00\x0f\x00\x00\x00a/\x00\x00Z\x00\x00\x00q/\x00\x00\x19\x00\x00\x00\xcc/\x00\x00\x0b\x00\x00\x00\xe6/\x00\x00\x13\x00\x00\x00\xf2/\x00\x00\x0b\x00\x00\x00\x060\x00\x00\x11\x00\x00\x00\x120\x00\x00\x08\x00\x00\x00$0\x00\x00\x14\x00\x00\x00-0\x00\x00\x0f\x00\x00\x00B0\x00\x00R\x00\x00\x00R0\x00\x00!\x00\x00\x00\xa50\x00\x00\x1d\x00\x00\x00\xc70\x00\x00H\x00\x00\x00\xe50\x00\x00\x11\x00\x00\x00.1\x00\x00\r\x00\x00\x00@1\x00\x00%\x00\x00\x00N1\x00\x00\x19\x00\x00\x00t1\x00\x00!\x00\x00\x00\x8e1\x00\x007\x00\x00\x00\xb01\x00\x00\x08\x00\x00\x00\xe81\x00\x00\r\x00\x00\x00\xf11\x00\x00\t\x00\x00\x00\xff1\x00\x00\x10\x00\x00\x00\t2\x00\x00\x11\x00\x00\x00\x1a2\x00\x00\x0f\x00\x00\x00,2\x00\x00\x14\x00\x00\x00<2\x00\x00\x0e\x00\x00\x00Q2\x00\x00\x1c\x00\x00\x00`2\x00\x00;\x00\x00\x00}2\x00\x00\x15\x00\x00\x00\xb92\x00\x00R\x00\x00\x00\xcf2\x00\x00\x17\x00\x00\x00"3\x00\x00\x18\x00\x00\x00:3\x00\x00\x0b\x00\x00\x00S3\x00\x00\x13\x00\x00\x00_3\x00\x00\x04\x00\x00\x00s3\x00\x00\x19\x00\x00\x00x3\x00\x00\x03\x00\x00\x00\x923\x00\x00h\x00\x00\x00\x963\x00\x00\x0e\x00\x00\x00\xff3\x00\x00\x1b\x00\x00\x00\x0e4\x00\x00\x1a\x00\x00\x00*4\x00\x00\x11\x00\x00\x00E4\x00\x00\x19\x00\x00\x00W4\x00\x00\x11\x00\x00\x00q4\x00\x00\x01\x00\x00\x00\x834\x00\x00\x05\x00\x00\x00\x854\x00\x00\x15\x00\x00\x00\x8b4\x00\x00\x15\x00\x00\x00\xa14\x00\x00\x15\x00\x00\x00\xb74\x00\x00\x15\x00\x00\x00\xcd4\x00\x00\x1a\x00\x00\x00\xe34\x00\x00\x0e\x00\x00\x00\xfe4\x00\x00\x1f\x00\x00\x00\r5\x00\x00C\x00\x00\x00-5\x00\x00\x05\x00\x00\x00q5\x00\x00\x1f\x00\x00\x00w5\x00\x00\x12\x00\x00\x00\x975\x00\x00\x17\x00\x00\x00\xaa5\x00\x00\x1f\x00\x00\x00\xc25\x00\x00\'\x00\x00\x00\xe25\x00\x003\x00\x00\x00\n6\x00\x00*\x00\x00\x00>6\x00\x00\n\x00\x00\x00i6\x00\x00\x14\x00\x00\x00t6\x00\x00\x16\x00\x00\x00\x896\x00\x00\x16\x00\x00\x00\xa06\x00\x00\x0f\x00\x00\x00\xb76\x00\x00\x05\x00\x00\x00\xc76\x00\x00\x1d\x00\x00\x00\xcd6\x00\x00\x0e\x00\x00\x00\xeb6\x00\x00\x1a\x00\x00\x00\xfa6\x00\x00\n\x00\x00\x00\x157\x00\x00\x10\x00\x00\x00 7\x00\x00\r\x00\x00\x0017\x00\x00\x11\x00\x00\x00?7\x00\x00\x1f\x00\x00\x00Q7\x00\x00\x13\x00\x00\x00q7\x00\x00\x1b\x00\x00\x00\x857\x00\x00\x05\x00\x00\x00\xa17\x00\x00\x0b\x00\x00\x00\xa77\x00\x008\x00\x00\x00\xb37\x00\x00\x08\x00\x00\x00\xec7\x00\x00\x8a\x00\x00\x00\xf57\x00\x00\x1d\x01\x00\x00\x808\x00\x00J\x00\x00\x00\x9e9\x00\x00#\x00\x00\x00\xe99\x00\x00\x04\x00\x00\x00\r:\x00\x00\x06\x00\x00\x00\x12:\x00\x00\x07\x00\x00\x00\x19:\x00\x00\x07\x00\x00\x00!:\x00\x00\'\x00\x00\x00):\x00\x00\x1b\x00\x00\x00Q:\x00\x00\x19\x00\x00\x00m:\x00\x00\x06\x00\x00\x00\x87:\x00\x00\x0c\x00\x00\x00\x8e:\x00\x00\t\x00\x00\x00\x9b:\x00\x00\x06\x00\x00\x00\xa5:\x00\x00\xdc\x01\x00\x00\xac:\x00\x00n\x00\x00\x00\x89<\x00\x00a\x00\x00\x00\xf8<\x00\x00\x0e\x00\x00\x00Z=\x00\x00\x0e\x00\x00\x00i=\x00\x00\xa8\x00\x00\x00x=\x00\x00&\x00\x00\x00!>\x00\x00\x10\x00\x00\x00H>\x00\x00\x19\x00\x00\x00Y>\x00\x00\x1a\x00\x00\x00s>\x00\x00.\x00\x00\x00\x8e>\x00\x00\r\x00\x00\x00\xbd>\x00\x00\x1a\x00\x00\x00\xcb>\x00\x00\x1e\x00\x00\x00\xe6>\x00\x00\x03\x00\x00\x00\x05?\x00\x00\x12\x00\x00\x00\t?\x00\x00\x05\x00\x00\x00\x1c?\x00\x00\n\x00\x00\x00"?\x00\x00,\x00\x00\x00-?\x00\x00\x07\x00\x00\x00Z?\x00\x00-\x00\x00\x00b?\x00\x00\x0b\x00\x00\x00\x90?\x00\x00$\x00\x00\x00\x9c?\x00\x00$\x00\x00\x00\xc1?\x00\x00\x07\x00\x00\x00\xe6?\x00\x000\x00\x00\x00\xee?\x00\x00\x10\x00\x00\x00\x1f@\x00\x00\x08\x00\x00\x000@\x00\x00y\x00\x00\x009@\x00\x00\x10\x00\x00\x00\xb3@\x00\x00\x04\x00\x00\x00\xc4@\x00\x00\x06\x00\x00\x00\xc9@\x00\x00"\x00\x00\x00\xd0@\x00\x00\t\x00\x00\x00\xf3@\x00\x00\n\x00\x00\x00\xfd@\x00\x00\x14\x00\x00\x00\x08A\x00\x00\x10\x00\x00\x00\x1dA\x00\x00\x11\x00\x00\x00.A\x00\x00\x08\x00\x00\x00@A\x00\x00\x10\x00\x00\x00IA\x00\x00\x12\x00\x00\x00ZA\x00\x00\x04\x00\x00\x00mA\x00\x00^\x00\x00\x00rA\x00\x00\x0f\x00\x00\x00\xd1A\x00\x00\n\x00\x00\x00\xe1A\x00\x00\x07\x00\x00\x00\xecA\x00\x00-\x00\x00\x00\xf4A\x00\x00+\x00\x00\x00"B\x00\x00F\x00\x00\x00NB\x00\x008\x00\x00\x00\x95B\x00\x00s\x00\x00\x00\xceB\x00\x00\x0f\x00\x00\x00BC\x00\x00\n\x00\x00\x00RC\x00\x00\x10\x00\x00\x00]C\x00\x00:\x00\x00\x00nC\x00\x00\x0f\x00\x00\x00\xa9C\x00\x00\x04\x00\x00\x00\xb9C\x00\x00;\x00\x00\x00\xbeC\x00\x00G\x00\x00\x00\xfaC\x00\x001\x00\x00\x00BD\x00\x00Y\x00\x00\x00tD\x00\x004\x00\x00\x00\xceD\x00\x00\x80\x00\x00\x00\x03E\x00\x00H\x00\x00\x00\x84E\x00\x00\r\x00\x00\x00\xcdE\x00\x00\xbc\x00\x00\x00\xdbE\x00\x00\x08\x00\x00\x00\x98F\x00\x00\t\x00\x00\x00\xa1F\x00\x00\x06\x00\x00\x00\xabF\x00\x00\x1e\x00\x00\x00\xb2F\x00\x00\x13\x00\x00\x00\xd1F\x00\x00\x0e\x00\x00\x00\xe5F\x00\x00\x1b\x00\x00\x00\xf4F\x00\x00\x13\x00\x00\x00\x10G\x00\x00+\x00\x00\x00$G\x00\x00*\x00\x00\x00PG\x00\x000\x00\x00\x00{G\x00\x00)\x00\x00\x00\xacG\x00\x00<\x00\x00\x00\xd6G\x00\x00\x0c\x00\x00\x00\x13H\x00\x00\x17\x00\x00\x00 H\x00\x00<\x00\x00\x008H\x00\x000\x00\x00\x00uH\x00\x00\x84\x00\x00\x00\xa6H\x00\x00X\x00\x00\x00+I\x00\x00\x0f\x00\x00\x00\x84I\x00\x00\x12\x00\x00\x00\x94I\x00\x00-\x00\x00\x00\xa7I\x00\x00\x0c\x00\x00\x00\xd5I\x00\x00\x0c\x00\x00\x00\xe2I\x00\x00\x0c\x00\x00\x00\xefI\x00\x00"\x00\x00\x00\xfcI\x00\x009\x00\x00\x00\x1fJ\x00\x00\x0f\x00\x00\x00YJ\x00\x00V\x00\x00\x00iJ\x00\x00r\x00\x00\x00\xc0J\x00\x00G\x00\x00\x003K\x00\x00\'\x00\x00\x00{K\x00\x00\x0e\x00\x00\x00\xa3K\x00\x00\x13\x00\x00\x00\xb2K\x00\x00\x14\x00\x00\x00\xc6K\x00\x00#\x00\x00\x00\xdbK\x00\x00\x06\x00\x00\x00\xffK\x00\x00\r\x00\x00\x00\x06L\x00\x00\r\x00\x00\x00\x14L\x00\x00\x07\x00\x00\x00"L\x00\x00\x1e\x00\x00\x00*L\x00\x00\x0b\x00\x00\x00IL\x00\x00\x17\x00\x00\x00UL\x00\x00\x1b\x00\x00\x00mL\x00\x00\x1a\x00\x00\x00\x89L\x00\x00\x0e\x00\x00\x00\xa4L\x00\x00^\x00\x00\x00\xb3L\x00\x00\x12\x00\x00\x00\x12M\x00\x00\x10\x00\x00\x00%M\x00\x00\x10\x00\x00\x006M\x00\x00g\x00\x00\x00GM\x00\x00c\x00\x00\x00\xafM\x00\x007\x00\x00\x00\x13N\x00\x00!\x00\x00\x00KN\x00\x00d\x00\x00\x00mN\x00\x00\t\x00\x00\x00\xd2N\x00\x00\x17\x00\x00\x00\xdcN\x00\x00\x16\x00\x00\x00\xf4N\x00\x00\x11\x00\x00\x00\x0bO\x00\x00\x04\x01\x00\x00\x1dO\x00\x00z\x00\x00\x00"P\x00\x00\x85\x00\x00\x00\x9dP\x00\x00\xb6\x00\x00\x00#Q\x00\x00P\x00\x00\x00\xdaQ\x00\x00+\x01\x00\x00+R\x00\x00#\x00\x00\x00WS\x00\x00\x06\x00\x00\x00{S\x00\x00\x17\x00\x00\x00\x82S\x00\x00\x14\x00\x00\x00\x9aS\x00\x00\x07\x00\x00\x00\xafS\x00\x00\x03\x00\x00\x00\xb7S\x00\x00\n\x00\x00\x00\xbbS\x00\x00\x13\x00\x00\x00\xc6S\x00\x00\x04\x00\x00\x00\xdaS\x00\x00\x85\x00\x00\x00\xdfS\x00\x00\x04\x00\x00\x00eT\x00\x00\t\x00\x00\x00jT\x00\x000\x00\x00\x00tT\x00\x00X\x00\x00\x00\xa5T\x00\x00\x1b\x00\x00\x00\xfeT\x00\x00\x1a\x00\x00\x00\x1aU\x00\x00\x9d\x00\x00\x005U\x00\x00&\x00\x00\x00\xd3U\x00\x00\x1e\x00\x00\x00\xfaU\x00\x00v\x00\x00\x00\x19V\x00\x00\'\x00\x00\x00\x90V\x00\x00"\x00\x00\x00\xb8V\x00\x00B\x00\x00\x00\xdbV\x00\x00^\x00\x00\x00\x1eW\x00\x00h\x00\x00\x00}W\x00\x00.\x00\x00\x00\xe6W\x00\x00\t\x00\x00\x00\x15X\x00\x00\x05\x00\x00\x00\x1fX\x00\x00\x15\x00\x00\x00%X\x00\x00\x06\x00\x00\x00;X\x00\x00+\x00\x00\x00BX\x00\x00\x1b\x00\x00\x00nX\x00\x00&\x00\x00\x00\x8aX\x00\x00\x0b\x00\x00\x00\xb1X\x00\x00\x07\x00\x00\x00\xbdX\x00\x00\x13\x00\x00\x00\xc5X\x00\x00\x0c\x00\x00\x00\xd9X\x00\x00\x10\x00\x00\x00\xe6X\x00\x00\x10\x00\x00\x00\xf7X\x00\x00%\x00\x00\x00\x08Y\x00\x00\x1b\x00\x00\x00.Y\x00\x00\xb4\x00\x00\x00JY\x00\x002\x00\x00\x00\xffY\x00\x00\x14\x00\x00\x002Z\x00\x00_\x00\x00\x00GZ\x00\x00:\x00\x00\x00\xa7Z\x00\x00*\x00\x00\x00\xe2Z\x00\x00\x04\x00\x00\x00\r[\x00\x00\x14\x00\x00\x00\x12[\x00\x00\x07\x00\x00\x00\'[\x00\x00\x07\x00\x00\x00/[\x00\x00-\x00\x00\x007[\x00\x00d\x00\x00\x00e[\x00\x00#\x00\x00\x00\xca[\x00\x002\x00\x00\x00\xee[\x00\x003\x00\x00\x00!\\\x00\x00\x08\x00\x00\x00U\\\x00\x00\t\x00\x00\x00^\\\x00\x008\x01\x00\x00h\\\x00\x00 \x00\x00\x00\xa1]\x00\x00\x1d\x00\x00\x00\xc2]\x00\x00\x05\x00\x00\x00\xe0]\x00\x00\x04\x00\x00\x00\xe6]\x00\x00\x18\x00\x00\x00\xeb]\x00\x00\x10\x00\x00\x00\x04^\x00\x00\x06\x00\x00\x00\x15^\x00\x00\x06\x00\x00\x00\x1c^\x00\x00\t\x00\x00\x00#^\x00\x00\x07\x00\x00\x00-^\x00\x00"\x00\x00\x005^\x00\x00\x12\x00\x00\x00X^\x00\x00\x14\x00\x00\x00k^\x00\x00\x0e\x00\x00\x00\x80^\x00\x00\x12\x00\x00\x00\x8f^\x00\x00\x07\x00\x00\x00\xa2^\x00\x00\x0e\x00\x00\x00\xaa^\x00\x00\x15\x00\x00\x00\xb9^\x00\x00 \x00\x00\x00\xcf^\x00\x00\x0c\x00\x00\x00\xf0^\x00\x00%\x00\x00\x00\xfd^\x00\x00\x12\x00\x00\x00#_\x00\x00\r\x00\x00\x006_\x00\x00/\x00\x00\x00D_\x00\x00&\x00\x00\x00t_\x00\x00\x1e\x00\x00\x00\x9b_\x00\x00\x0b\x00\x00\x00\xba_\x00\x00\x13\x00\x00\x00\xc6_\x00\x00\x1b\x00\x00\x00\xda_\x00\x00\n\x00\x00\x00\xf6_\x00\x00\x0f\x00\x00\x00\x01`\x00\x00(\x00\x00\x00\x11`\x00\x00\x08\x00\x00\x00:`\x00\x00\r\x00\x00\x00C`\x00\x00\x0b\x00\x00\x00Q`\x00\x00\x15\x00\x00\x00]`\x00\x00\x11\x00\x00\x00s`\x00\x00\x15\x00\x00\x00\x85`\x00\x00\x0e\x00\x00\x00\x9b`\x00\x00\x07\x00\x00\x00\xaa`\x00\x00\x08\x00\x00\x00\xb2`\x00\x00\x07\x00\x00\x00\xbb`\x00\x00\x13\x00\x00\x00\xc3`\x00\x00\x12\x00\x00\x00\xd7`\x00\x00\x1e\x00\x00\x00\xea`\x00\x00\x05\x00\x00\x00\ta\x00\x00\x07\x00\x00\x00\x0fa\x00\x00\r\x00\x00\x00\x17a\x00\x00\x0e\x00\x00\x00%a\x00\x00\r\x00\x00\x004a\x00\x00\x03\x00\x00\x00Ba\x00\x008\x00\x00\x00Fa\x00\x00-\x00\x00\x00\x7fa\x00\x00;\x00\x00\x00\xada\x00\x00\x1e\x00\x00\x00\xe9a\x00\x000\x00\x00\x00\x08b\x00\x00M\x02\x00\x009b\x00\x00\xa3\x01\x00\x00\x87d\x00\x00\x8c\x02\x00\x00+f\x00\x00>\x00\x00\x00\xb8h\x00\x00X\x00\x00\x00\xf7h\x00\x006\x00\x00\x00Pi\x00\x00\x90\x00\x00\x00\x87i\x00\x00\x86\x00\x00\x00\x18j\x00\x00`\x00\x00\x00\x9fj\x00\x00/\x00\x00\x00\x00k\x00\x00\xcd\x00\x00\x000k\x00\x00\x7f\x00\x00\x00\xfek\x00\x00\xcd\x00\x00\x00~l\x00\x00\xa4\x01\x00\x00Lm\x00\x00<\x00\x00\x00\xf1n\x00\x00\x01\x00\x00\x00.o\x00\x00M\x00\x00\x000o\x00\x00\x16\x00\x00\x00~o\x00\x00\x16\x00\x00\x00\x95o\x00\x00\x10\x00\x00\x00\xaco\x00\x00\x18\x00\x00\x00\xbdo\x00\x00/\x00\x00\x00\xd6o\x00\x00I\x00\x00\x00\x06p\x00\x00?\x00\x00\x00Pp\x00\x00;\x00\x00\x00\x90p\x00\x00\x13\x00\x00\x00\xccp\x00\x003\x00\x00\x00\xe0p\x00\x00}\x00\x00\x00\x14q\x00\x00\x98\x00\x00\x00\x92q\x00\x00$\x00\x00\x00+r\x00\x00\x1b\x00\x00\x00Pr\x00\x00Q\x00\x00\x00lr\x00\x00"\x00\x00\x00\xber\x00\x00e\x00\x00\x00\xe1r\x00\x00\t\x00\x00\x00Gs\x00\x00\x10\x00\x00\x00Qs\x00\x00\x10\x00\x00\x00bs\x00\x00\x10\x00\x00\x00ss\x00\x00\x05\x00\x00\x00\x84s\x00\x00\t\x00\x00\x00\x8as\x00\x00#\x00\x00\x00\x94s\x00\x00!\x00\x00\x00\xb8s\x00\x00\x13\x00\x00\x00\xdas\x00\x00\x05\x00\x00\x00\xees\x00\x00\x17\x00\x00\x00\xf4s\x00\x00\x17\x00\x00\x00\x0ct\x00\x00\t\x00\x00\x00$t\x00\x00\x08\x00\x00\x00.t\x00\x00\x13\x00\x00\x007t\x00\x00\x1c\x00\x00\x00Kt\x00\x00\x07\x00\x00\x00ht\x00\x00\x18\x00\x00\x00pt\x00\x00\x07\x00\x00\x00\x89t\x00\x003\x00\x00\x00\x91t\x00\x00\x16\x00\x00\x00\xc5t\x00\x00\x04\x00\x00\x00\xdct\x00\x00)\x00\x00\x00\xe1t\x00\x00\x0c\x00\x00\x00\x0bu\x00\x00>\x00\x00\x00\x18u\x00\x00 \x00\x00\x00Wu\x00\x00)\x00\x00\x00xu\x00\x00\x17\x00\x00\x00\xa2u\x00\x00%\x00\x00\x00\xbau\x00\x00\x1c\x00\x00\x00\xe0u\x00\x00D\x00\x00\x00\xfdu\x00\x00\x19\x00\x00\x00Bv\x00\x00\x1c\x00\x00\x00\\v\x00\x00R\x00\x00\x00yv\x00\x00\x1f\x00\x00\x00\xccv\x00\x00\x1e\x00\x00\x00\xecv\x00\x005\x00\x00\x00\x0bw\x00\x00\x1d\x00\x00\x00Aw\x00\x00g\x00\x00\x00_w\x00\x00-\x00\x00\x00\xc7w\x00\x00\x14\x00\x00\x00\xf5w\x00\x00\'\x00\x00\x00\nx\x00\x00\x16\x00\x00\x002x\x00\x00\x13\x00\x00\x00Ix\x00\x00\t\x00\x00\x00]x\x00\x00\x16\x00\x00\x00gx\x00\x00\x10\x00\x00\x00~x\x00\x00R\x00\x00\x00\x8fx\x00\x00!\x00\x00\x00\xe2x\x00\x00\x1b\x00\x00\x00\x04y\x00\x00H\x00\x00\x00 y\x00\x00\x16\x00\x00\x00iy\x00\x00\x0e\x00\x00\x00\x80y\x00\x00:\x00\x00\x00\x8fy\x00\x00\x1b\x00\x00\x00\xcay\x00\x00&\x00\x00\x00\xe6y\x00\x00J\x00\x00\x00\rz\x00\x00\t\x00\x00\x00Xz\x00\x00\r\x00\x00\x00bz\x00\x00\r\x00\x00\x00pz\x00\x00\x15\x00\x00\x00~z\x00\x00\x15\x00\x00\x00\x94z\x00\x00\x13\x00\x00\x00\xaaz\x00\x00\x14\x00\x00\x00\xbez\x00\x00\x13\x00\x00\x00\xd3z\x00\x00#\x00\x00\x00\xe7z\x00\x00W\x00\x00\x00\x0b{\x00\x00 \x00\x00\x00c{\x00\x00e\x00\x00\x00\x84{\x00\x00"\x00\x00\x00\xea{\x00\x00"\x00\x00\x00\r|\x00\x00\r\x00\x00\x000|\x00\x00\x1f\x00\x00\x00>|\x00\x00\x05\x00\x00\x00^|\x00\x00B\x00\x00\x00d|\x00\x00\x08\x00\x00\x00\xa7|\x00\x00r\x00\x00\x00\xb0|\x00\x00\x14\x00\x00\x00#}\x00\x00\x1f\x00\x00\x008}\x00\x00!\x00\x00\x00X}\x00\x00\x10\x00\x00\x00z}\x00\x00\x18\x00\x00\x00\x8b}\x00\x00\x12\x00\x00\x00\xa4}\x00\x00\x01\x00\x00\x00\xb7}\x00\x00\x06\x00\x00\x00\xb9}\x00\x00\x1d\x00\x00\x00\xc0}\x00\x00\x1d\x00\x00\x00\xde}\x00\x00\x1c\x00\x00\x00\xfc}\x00\x00 \x00\x00\x00\x19~\x00\x00\x1d\x00\x00\x00:~\x00\x00\x16\x00\x00\x00X~\x00\x00.\x00\x00\x00o~\x00\x00M\x00\x00\x00\x9e~\x00\x00\x06\x00\x00\x00\xec~\x00\x00+\x00\x00\x00\xf3~\x00\x00\x1b\x00\x00\x00\x1f\x7f\x00\x00&\x00\x00\x00;\x7f\x00\x00#\x00\x00\x00b\x7f\x00\x00,\x00\x00\x00\x86\x7f\x00\x00:\x00\x00\x00\xb3\x7f\x00\x00/\x00\x00\x00\xee\x7f\x00\x00\n\x00\x00\x00\x1e\x80\x00\x00\x17\x00\x00\x00)\x80\x00\x00\x1a\x00\x00\x00A\x80\x00\x00$\x00\x00\x00\\\x80\x00\x00\x11\x00\x00\x00\x81\x80\x00\x00\x07\x00\x00\x00\x93\x80\x00\x00\x1f\x00\x00\x00\x9b\x80\x00\x00\x12\x00\x00\x00\xbb\x80\x00\x00\x1d\x00\x00\x00\xce\x80\x00\x00\x13\x00\x00\x00\xec\x80\x00\x00\x17\x00\x00\x00\x00\x81\x00\x00\x0c\x00\x00\x00\x18\x81\x00\x00\x10\x00\x00\x00%\x81\x00\x00!\x00\x00\x006\x81\x00\x00\x17\x00\x00\x00X\x81\x00\x00\x1d\x00\x00\x00p\x81\x00\x00\x07\x00\x00\x00\x8e\x81\x00\x00\x0b\x00\x00\x00\x96\x81\x00\x00D\x00\x00\x00\xa2\x81\x00\x00\x06\x00\x00\x00\xe7\x81\x00\x00\xc3\x00\x00\x00\xee\x81\x00\x004\x01\x00\x00\xb2\x82\x00\x00[\x00\x00\x00\xe7\x83\x00\x00&\x00\x00\x00C\x84\x00\x00\x03\x00\x00\x00j\x84\x00\x00\x06\x00\x00\x00n\x84\x00\x00\x07\x00\x00\x00u\x84\x00\x00\x06\x00\x00\x00}\x84\x00\x004\x00\x00\x00\x84\x84\x00\x00\x1e\x00\x00\x00\xb9\x84\x00\x00\x1e\x00\x00\x00\xd8\x84\x00\x00\t\x00\x00\x00\xf7\x84\x00\x00\x1f\x00\x00\x00\x01\x85\x00\x00\x18\x00\x00\x00!\x85\x00\x00\x06\x00\x00\x00:\x85\x00\x00:\x02\x00\x00A\x85\x00\x00\x8f\x00\x00\x00|\x87\x00\x00\x82\x00\x00\x00\x0c\x88\x00\x00\x16\x00\x00\x00\x8f\x88\x00\x00\x14\x00\x00\x00\xa6\x88\x00\x00\xcc\x00\x00\x00\xbb\x88\x00\x00*\x00\x00\x00\x88\x89\x00\x00\x14\x00\x00\x00\xb3\x89\x00\x00"\x00\x00\x00\xc8\x89\x00\x00"\x00\x00\x00\xeb\x89\x00\x00?\x00\x00\x00\x0e\x8a\x00\x00\x12\x00\x00\x00N\x8a\x00\x00\x1f\x00\x00\x00a\x8a\x00\x00#\x00\x00\x00\x81\x8a\x00\x00\x07\x00\x00\x00\xa5\x8a\x00\x00"\x00\x00\x00\xad\x8a\x00\x00\n\x00\x00\x00\xd0\x8a\x00\x00\n\x00\x00\x00\xdb\x8a\x00\x00=\x00\x00\x00\xe6\x8a\x00\x00\n\x00\x00\x00$\x8b\x00\x00@\x00\x00\x00/\x8b\x00\x00\x0b\x00\x00\x00p\x8b\x00\x003\x00\x00\x00|\x8b\x00\x009\x00\x00\x00\xb0\x8b\x00\x00\x07\x00\x00\x00\xea\x8b\x00\x001\x00\x00\x00\xf2\x8b\x00\x00\x12\x00\x00\x00$\x8c\x00\x00\n\x00\x00\x007\x8c\x00\x00\xa4\x00\x00\x00B\x8c\x00\x00\x17\x00\x00\x00\xe7\x8c\x00\x00\x04\x00\x00\x00\xff\x8c\x00\x00\n\x00\x00\x00\x04\x8d\x00\x006\x00\x00\x00\x0f\x8d\x00\x00\x0e\x00\x00\x00F\x8d\x00\x00\x11\x00\x00\x00U\x8d\x00\x00\x1a\x00\x00\x00g\x8d\x00\x00\x15\x00\x00\x00\x82\x8d\x00\x00\x19\x00\x00\x00\x98\x8d\x00\x00\x0c\x00\x00\x00\xb2\x8d\x00\x00\x16\x00\x00\x00\xbf\x8d\x00\x00\x14\x00\x00\x00\xd6\x8d\x00\x00\x05\x00\x00\x00\xeb\x8d\x00\x00_\x00\x00\x00\xf1\x8d\x00\x00\x18\x00\x00\x00Q\x8e\x00\x00\r\x00\x00\x00j\x8e\x00\x00\x15\x00\x00\x00x\x8e\x00\x00\x1d\x00\x00\x00\x8e\x8e\x00\x00\x1b\x00\x00\x00\xac\x8e\x00\x00H\x00\x00\x00\xc8\x8e\x00\x00S\x00\x00\x00\x11\x8f\x00\x00\x92\x00\x00\x00e\x8f\x00\x00\x15\x00\x00\x00\xf8\x8f\x00\x00\x11\x00\x00\x00\x0e\x90\x00\x00\x14\x00\x00\x00 \x90\x00\x00J\x00\x00\x005\x90\x00\x00\x15\x00\x00\x00\x80\x90\x00\x00\x04\x00\x00\x00\x96\x90\x00\x00O\x00\x00\x00\x9b\x90\x00\x00V\x00\x00\x00\xeb\x90\x00\x00"\x00\x00\x00B\x91\x00\x00r\x00\x00\x00e\x91\x00\x00J\x00\x00\x00\xd8\x91\x00\x00\x97\x00\x00\x00#\x92\x00\x00Q\x00\x00\x00\xbb\x92\x00\x00\x0f\x00\x00\x00\r\x93\x00\x00\xc6\x00\x00\x00\x1d\x93\x00\x00\x0b\x00\x00\x00\xe4\x93\x00\x00\x0b\x00\x00\x00\xf0\x93\x00\x00\t\x00\x00\x00\xfc\x93\x00\x00#\x00\x00\x00\x06\x94\x00\x00\x14\x00\x00\x00*\x94\x00\x00\x13\x00\x00\x00?\x94\x00\x00 \x00\x00\x00S\x94\x00\x00\x14\x00\x00\x00t\x94\x00\x00-\x00\x00\x00\x89\x94\x00\x00-\x00\x00\x00\xb7\x94\x00\x002\x00\x00\x00\xe5\x94\x00\x00+\x00\x00\x00\x18\x95\x00\x00K\x00\x00\x00D\x95\x00\x00\x11\x00\x00\x00\x90\x95\x00\x00\x1d\x00\x00\x00\xa2\x95\x00\x00:\x00\x00\x00\xc0\x95\x00\x001\x00\x00\x00\xfb\x95\x00\x00\x92\x00\x00\x00-\x96\x00\x00N\x00\x00\x00\xc0\x96\x00\x00\x10\x00\x00\x00\x0f\x97\x00\x00\x15\x00\x00\x00 \x97\x00\x00>\x00\x00\x006\x97\x00\x00\x08\x00\x00\x00u\x97\x00\x00\x0c\x00\x00\x00~\x97\x00\x00\x0e\x00\x00\x00\x8b\x97\x00\x004\x00\x00\x00\x9a\x97\x00\x00=\x00\x00\x00\xcf\x97\x00\x00\r\x00\x00\x00\r\x98\x00\x00z\x00\x00\x00\x1b\x98\x00\x00\x9e\x00\x00\x00\x96\x98\x00\x00P\x00\x00\x005\x99\x00\x000\x00\x00\x00\x86\x99\x00\x00\x15\x00\x00\x00\xb7\x99\x00\x00\x17\x00\x00\x00\xcd\x99\x00\x00\x17\x00\x00\x00\xe5\x99\x00\x00%\x00\x00\x00\xfd\x99\x00\x00\x05\x00\x00\x00#\x9a\x00\x00\x11\x00\x00\x00)\x9a\x00\x00\r\x00\x00\x00;\x9a\x00\x00\x07\x00\x00\x00I\x9a\x00\x005\x00\x00\x00Q\x9a\x00\x00\x18\x00\x00\x00\x87\x9a\x00\x00*\x00\x00\x00\xa0\x9a\x00\x00\x15\x00\x00\x00\xcb\x9a\x00\x00\x15\x00\x00\x00\xe1\x9a\x00\x00\x16\x00\x00\x00\xf7\x9a\x00\x00q\x00\x00\x00\x0e\x9b\x00\x00\x1a\x00\x00\x00\x80\x9b\x00\x00\x1c\x00\x00\x00\x9b\x9b\x00\x00\x1c\x00\x00\x00\xb8\x9b\x00\x00\x95\x00\x00\x00\xd5\x9b\x00\x00}\x00\x00\x00k\x9c\x00\x00]\x00\x00\x00\xe9\x9c\x00\x002\x00\x00\x00G\x9d\x00\x00v\x00\x00\x00z\x9d\x00\x00\x0c\x00\x00\x00\xf1\x9d\x00\x00\x15\x00\x00\x00\xfe\x9d\x00\x00\x15\x00\x00\x00\x14\x9e\x00\x00\x1c\x00\x00\x00*\x9e\x00\x00\x1c\x01\x00\x00G\x9e\x00\x00v\x00\x00\x00d\x9f\x00\x00\x9f\x00\x00\x00\xdb\x9f\x00\x00\n\x01\x00\x00{\xa0\x00\x00R\x00\x00\x00\x86\xa1\x00\x00\x8f\x01\x00\x00\xd9\xa1\x00\x00%\x00\x00\x00i\xa3\x00\x00\x06\x00\x00\x00\x8f\xa3\x00\x00\x1f\x00\x00\x00\x96\xa3\x00\x00\x18\x00\x00\x00\xb6\xa3\x00\x00\x0b\x00\x00\x00\xcf\xa3\x00\x00\x07\x00\x00\x00\xdb\xa3\x00\x00\x10\x00\x00\x00\xe3\xa3\x00\x00#\x00\x00\x00\xf4\xa3\x00\x00\t\x00\x00\x00\x18\xa4\x00\x00\xab\x00\x00\x00"\xa4\x00\x00\x04\x00\x00\x00\xce\xa4\x00\x00\t\x00\x00\x00\xd3\xa4\x00\x003\x00\x00\x00\xdd\xa4\x00\x00l\x00\x00\x00\x11\xa5\x00\x00\x1a\x00\x00\x00~\xa5\x00\x00\x1a\x00\x00\x00\x99\xa5\x00\x00\xb9\x00\x00\x00\xb4\xa5\x00\x00.\x00\x00\x00n\xa6\x00\x00#\x00\x00\x00\x9d\xa6\x00\x00\x99\x00\x00\x00\xc1\xa6\x00\x00\'\x00\x00\x00[\xa7\x00\x00"\x00\x00\x00\x83\xa7\x00\x00^\x00\x00\x00\xa6\xa7\x00\x00s\x00\x00\x00\x05\xa8\x00\x00\x8f\x00\x00\x00y\xa8\x00\x005\x00\x00\x00\t\xa9\x00\x00\x0b\x00\x00\x00?\xa9\x00\x00\x05\x00\x00\x00K\xa9\x00\x00\x1f\x00\x00\x00Q\xa9\x00\x00\x06\x00\x00\x00q\xa9\x00\x00=\x00\x00\x00x\xa9\x00\x00!\x00\x00\x00\xb6\xa9\x00\x00$\x00\x00\x00\xd8\xa9\x00\x00\x10\x00\x00\x00\xfd\xa9\x00\x00\t\x00\x00\x00\x0e\xaa\x00\x00\x1b\x00\x00\x00\x18\xaa\x00\x00\x0e\x00\x00\x004\xaa\x00\x00\x12\x00\x00\x00C\xaa\x00\x00\x12\x00\x00\x00V\xaa\x00\x005\x00\x00\x00i\xaa\x00\x00&\x00\x00\x00\x9f\xaa\x00\x00\xe2\x00\x00\x00\xc6\xaa\x00\x00B\x00\x00\x00\xa9\xab\x00\x00\x1d\x00\x00\x00\xec\xab\x00\x00i\x00\x00\x00\n\xac\x00\x00N\x00\x00\x00t\xac\x00\x007\x00\x00\x00\xc3\xac\x00\x00\x08\x00\x00\x00\xfb\xac\x00\x00\x19\x00\x00\x00\x04\xad\x00\x00\x1b\x00\x00\x00\x1e\xad\x00\x00\x11\x00\x00\x00:\xad\x00\x00=\x00\x00\x00L\xad\x00\x00\x92\x00\x00\x00\x8a\xad\x00\x001\x00\x00\x00\x1d\xae\x00\x00R\x00\x00\x00O\xae\x00\x00.\x00\x00\x00\xa2\xae\x00\x00\n\x00\x00\x00\xd1\xae\x00\x00\t\x00\x00\x00\xdc\xae\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book <font face="serif">%s</font> of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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<br>CSS\x00Page Setup\x00Parsing LRF file\x00Password for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: libprs500 0.4.17\nPOT-Creation-Date: 2008-03-31 15:53+PDT\nPO-Revision-Date: 2008-03-30 13:26+0100\nLast-Translator: S. Dorscht <stdoonline@googlemail.com>\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\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\nArtikel %s von %s geladen\n%s\x00 Tage\x00 von\x00 ist kein g\xc3\xbcltiges Bild\x00 nicht gefunden.\x00 Punkt\x00 Pixel\x00 Sekunden\x00 Sterne\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00&Zugriffsschl\xc3\xbcssel:\x00Feed &anf\xc3\xbcgen\x00Etikett &anf\xc3\xbcgen:\x00&Autor:\x00&Unterer Rand:\x00Datenbank verdi&chten\x00Kapitel Ermittlung &deaktivieren\x00&Feed Titel:\x00Seitenumbruch vor Element &erzwingen:\x00&Kopfzeilenformat:\x00&Linker Rand:\x00Speicherort der B\xc3\xbccherdatenbank (&library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace:\x00\xc3\x84<ester Artikel:\x00&Seitenumbruch vor Element:\x00&Passwort:\x00&Vorbearbeiten:\x00&Priorit\xc3\xa4t der Konvertierungsauftr\xc3\xa4ge:\x00&Profil:\x00&Herausgeber:\x00&Bewertung:\x00&Regul\xc3\xa4rer Ausdruck:\x00Rezept entfe&rnen\x00Etiketten entfe&rnen:\x00&Rechter Rand:\x00&Suche:\x00&Serien:\x00&Serif:\x00Kopfzeile an&zeigen\x00Pa&sswort anzeigen\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&Titel:\x00&Oberer Rand:\x00Ben&utzername:\x00&Wortabstand:\x00...\x00<b>\xc3\x84nderungen treten erst nach einem Neustart in Kraft.\x00<b>Konnte kein Umschlagbild abrufen.</b><br/>\x00<b>Keine Treffer</b> f\xc3\xbcr die Suchworte <i>%s</i> gefunden.\x00<br>Muss ein Verzeichnis sein.\x00<font color="gray">Keine Hilfe verf\xc3\xbcgbar</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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 gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML Dateien von Book Designer</li>\x00<li><b>pdftohtml</b> - HTML Dateien, die mit dem Programm pdftohtml erstellt wurden</li>\x00<ol><li><b>baen</b> - B\xc3\xbccher von BAEN Publishers</li>\x00<p>Es existiert bereits eine ung\xc3\xbcltige Datenbank in %s, bitte l\xc3\xb6schen Sie diese, bevor sie die bestehende Datenbank verschieben.<br>Fehler: %s\x00<p>Es existieren bereits B\xc3\xbccher mit dem selben Titel in der Datenbank. Sollen die folgenden B\xc3\xbccher trotzdem hinzugef\xc3\xbcgt werden?<ul>\x00<p>Es k\xc3\xb6nnen keine B\xc3\xbccher mehr auf das Ger\xc3\xa4t geladen werden, da der Ger\xc3\xa4tespeicher voll ist \x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr <b>LibraryThing.com</b> an. <br/>Insofern Sie dies nicht besitzen, k\xc3\xb6nnen Sie sich kostenlos <a href=\'http://www.librarything.com\'>anmelden</a>! </p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Es trat ein Fehler beim Lesen dieser Datei auf: <br /><b>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Zuge&wiesene Etiketten\x00&Verf\xc3\xbcgbare Etiketten\x00Aktive Auftr\xc3\xa4ge\x00&Etiketten hinzuf\xc3\xbcgen: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Ein Verzeichnis zur Liste der h\xc3\xa4ufig genutzten Verzeichnisse 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\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Aussehen der erstellten LRF Datei durch die Angabe von Schriftgr\xc3\xb6\xc3\x9fen und Wortabst\xc3\xa4nden angleichen.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Irgendein\x00Etikett dem aktuellen Buch zuweisen\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00S&ortierung nach Autor:\x00So&rtierung nach Autor:\x00Autor(en)\x00Autoren:\x00Verf\xc3\xbcgbare Formate\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Zur\xc3\xbcck\x00Ausgangsschrift&gr\xc3\xb6\xc3\x9fe:\x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Buch\x00Buch <font face="serif">%s</font> von %s.\x00Umschlagbild\x00Unterer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Nach Umschlagbild durchsuchen...\x00Zu einem neuen Ort der Datenbank wechseln\x00Auf einmal konvertieren\x00eBooks auf einmal zu LRF konvertieren\x00Konfiguration nicht m\xc3\xb6glich\x00Konfiguration nicht m\xc3\xb6glich w\xc3\xa4hrend Auftr\xc3\xa4ge abgearbeitet werden.\x00Verbindung nicht m\xc3\xb6glich\x00Konvertierung nicht m\xc3\xb6glich\x00Kann %s nicht konvertieren, da dieses Buch nicht den bekannten Formaten entspricht\x00Kann Metadaten nicht bearbeiten\x00Kann kein Umschlagbild abrufen\x00Kann schon fertiggestellte Auftr\xc3\xa4ge nicht abbrechen.\x00Kann Auftrag nicht abbrechen.\x00Kann Auftr\xc3\xa4ge nicht abbrechen, die mit dem Ger\xc3\xa4t kommunizieren, da dies zu Datenverlust f\xc3\xbchren kann.\x00Kann Auftr\xc3\xa4ge in Warteliste nicht abbrechen.\x00Lesen nicht m\xc3\xb6glich\x00Speichern auf Festplatte nicht m\xc3\xb6glich\x00Ansehen nicht m\xc3\xb6glich\x00Karte\n%s verf\xc3\xbcgbar\x00Kategorie\x00&Umschlagbild \xc3\xa4ndern:\x00Passwort \xc3\xa4ndern\x00Autor dieses Buches \xc3\xa4ndern. Mehrere Autoren sollten durch Kommata getrennt werden\x00Herausgeber dieses Buches \xc3\xa4ndern\x00Titel dieses Buches \xc3\xa4ndern\x00Benutzername und/oder Passwort Ihres Kontos bei LibraryThing.com \xc3\xa4ndern\x00Ermittlung der Kapitel\x00Format w\xc3\xa4hlen\x00W\xc3\xa4hlen Sie das Format, das zu LRF konvertiert werden soll\x00Format zur Vorschau w\xc3\xa4hlen\x00Ein Klick zeigt die aktiven Auftr\xc3\xa4ge.\x00Durch getrennte Liste der Etiketten, die von den B\xc3\xbcchern entfernt werden.\x00Bemerkung\x00Konfiguration\x00Konfigurieren\x00Viewer konfigurieren \x00Konvertiere %s in LRF\x00In eBooks umwandeln\x00Einzeln konvertieren\x00Zu LRF konvertieren\x00Konnte Umschlagbild nicht laden: %s\x00Konnte Artikel nicht abrufen. Der erneute Start mit --debug zeigt m\xc3\xb6gliche Gr\xc3\xbcnde an \x00Konnte kein Umschlagbild abrufen\x00Konnte aufgrund zu hoher Serverlast kein Umschlagbild abrufen. Bitte versuchen sie es sp\xc3\xa4ter wieder.\x00Konnte Datenbank nicht verschieben\x00Konnte Datei nicht analysieren: %s\x00Erstellt von \x00Individuelle Nachrichtenquellen\x00Datum\x00Voreinstellung f\xc3\xbcr Zei&t\xc3\xbcberschreitung bei Netzwerkverbindungen:\x00L\xc3\xb6schen\x00Etikett aus der Datenbank l\xc3\xb6schen. Entfernt das Etikett von allen B\xc3\xbcchern und l\xc3\xb6scht es dann aus der Datenbank.\x00Details des Auftrags\x00Was wei\xc3\x9f ich, f\xc3\xbcr was das ist\x00Fortschrittsbalken nicht anzeigen\x00Download beendet\x00Lade Umschlagbild von %s\x00Duplikate gefunden\x00E\x00FEHLER\x00Meta-Informationen bearbeiten\x00Meta-Informationen bearbeiten\x00Meta-Informationen editieren\x00Meta-Daten auf einmal bearbeiten\x00Meta-Daten einzeln bearbeiten\x00Eingebundene Schriften\x00Automatische &Rotation von Bildern einschalten\x00Automatische Rotation von Bildern, die breiter als die Bildschirmbreite sind.\x00Fehler\x00Fehler bei der Kommunikation mit dem Ger\xc3\xa4t\x00Fehler beim Lesen der Datei\x00Fehler in der Kommunikation zum Ger\xc3\xa4t\x00Thumbnail von LRF Datei extrahieren\x00Laden der Artikel fehlgeschlagen: %s von %s\n\x00Der Download von Teilen der folgenden Artikel schlug fehl:\x00Der Download der folgenden Artikel schlug fehl:\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Abrufen\x00Umschlagbild vom Server abrufen\x00Meta-Daten abrufen\x00Meta-Daten vom Server abrufen\x00Nachrichten abrufen\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Meta-Daten abrufen f\xc3\xbcr <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Feineinstellung der Erkennung von Kapitel- und Absatz\xc3\xbcberschriften.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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, verwenden Sie "h\\d,class,chapter". Voreinstellung ist %default\x00Seitenumbruch erzwingen vor Elementen, deren Namen diesem regul\xc3\xa4ren Ausdruck entsprechen. \x00Seitenumbruch vor &Attribut erzwingen:\x00Art\x00Format\x00Formate\x00Weiter\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00H\xc3\xa4ufig benutzte Verzeichnisse\x00Feeds der Index Seite erhalten\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.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Falls die Quelldatei ein Umschlagbild enth\xc3\xa4lt, das Umschlagbild der Quelldatei benutzen, anstatt des angegebenen Umschlagbildes. \x00Farben nicht bea&chten\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\x00Ung\xc3\xbcltige Datenbank\x00Ortsangabe der Datenbank ung\xc3\xbcltig\x00Ortsangabe der Datenbank ung\xc3\xbcltig\x00Ortsangabe der Datenbank ung\xc3\xbcltig.<br>Speichern nicht m\xc3\xb6glich\x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Auftrag\x00Auftrag durch Benutzer abgebrochen\x00Auftr\xc3\xa4ge:\x00LRF Viewer\x00Linker Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Bibliothek\x00Liste der bekannten Serien. Sie k\xc3\xb6nnen neue Serien hinzuf\xc3\xbcgen.\x00Look & Feel\x00\xc3\x9cbereinstimmung mit a&llen der folgenden Kriterien\x00\xc3\x9cbereinstimmung mit irge&ndeinem der folgenden Kriterien\x00Treffer\x00Maximale Anzahl der zu ladenden Artikel pro feed.\x00Meta-Informationen\x00Meta-Daten\x00Speicherbenutzung verringern auf Kosten l\xc3\xa4ngerer Bearbeitungszeiten. Benutzen Sie diese Einstellung, wenn sie an einem Rechner mit geringem Hauptspeicher arbeiten.\x00E&inr\xc3\xbccken mindestens:\x00Mehr\x00Ausblenden\x00Nachrichten abgerufen. \xc3\x9cbertragung ans Ger\xc3\xa4t l\xc3\xa4uft.\x00N\xc3\xa4chste Seite\x00N\xc3\xa4chster Treffer\x00Keine verf\xc3\xbcgbaren Formate\x00Kein Buch ausgew\xc3\xa4hlt\x00Keine B\xc3\xbccher ausgew\xc3\xa4hlt\x00Kein Treffer\x00Keine Treffer gefunden\x00Ger\xc3\xa4tespeicher voll\x00Keine\x00Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. Voreinstellung %default\x00Etiketten-Editor \xc3\xb6ffnen\x00eBook \xc3\xb6ffnen\x00Auswahlm\xc3\xb6glichkeiten\x00Einstellungen f\xc3\xbcr feeds2disk\x00Einstellungen f\xc3\xbcr html2lrf\x00Einstellungen f\xc3\xbcr web2disk (um von Feeds verlinkte Webseiten abzurufen)\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<br>\xc3\xbcberschreiben\x00Seiteneinrichtung\x00Analysiere LRF Datei\x00Passwort f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Passwort erforderlich\x00Pfad\x00Pfad zu einer Grafik, die als Thumbnail f\xc3\xbcr diese Datei verwendet werden soll \x00Pfad zu einer Text Datei, deren Inhalt als Bemerkung in der LRF Datei gespeichert wird\x00Pfad zur Datei des Umschlagbildes \x00Pfad zum Ausgabeverzeichnis, in dem die HTML Datei erstellt werden soll. Voreinstellung auf aktuelles Verzeichnis.\x00Baen HTML Dateien vorbearbeiten, um die erstellte LRF Datei zu verbessern.\x00Datei vorbearbeiten bevor sie zu LRF konvertiert wird. Das ist hilfreich, wenn Sie wissen, dass die Datei von einer der folgenden Bezugsquellen stammt:\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:\x00Fortschritt\x00Herausgeber\x00Bewertung\x00Bewertung dieses Buches: 0-5 Sterne\x00Reader\n%s verf\xc3\xbcgbar\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00B\xc3\xbccher entfernen\x00Feed aus dem Rezept entfernen\x00Markierte Formate dieses Buches aus der Datenbank l\xc3\xb6schen\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\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.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Quick Search l\xc3\xb6schen\x00Rechter Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Laufzeit\x00S&ans-serif:\x00Auf HD sichern\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Liste der B\xc3\xbccher nach Titel oder Autor durchsuchen<br><br>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<br><br>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\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00An Reader \xc3\xbcbertragen\x00An Hauptspeicher senden\x00An Speicherkarte senden\x00Paragraphen durch Leerzeilen trennen.\x00Serie\x00Index der Serien.\x00Serien Index:\x00Serien:\x00Server-Fehler. Bitte versuchen Sie es sp\xc3\xa4ter wieder.\x00Geben Sie die Buch ID an\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie den Autor an\x00Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt angegeben werden. Voreinstellung: %default\x00Geben Sie den Buchtitel an\x00Geben Sie eine Kategorie an.\x00Geben Sie eine Bemerkung an.\x00Voreinstellung der Zeit\xc3\xbcberschreitung f\xc3\xbcr Netzwerkabrufe festsetzen (Gilt immer dann, wenn aus dem Internet Informationen abgerufen werden sollen) \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 <a href="http://www.isbndb.com">ISBNdb.com</a> um einen Zugriffsschl\xc3\xbcssel zu erhalten.\x00Gr\xc3\xb6\xc3\x9fe (MB)\x00Sortierung nach Autor\x00Sortierung nach Titel\x00En&codierung der Quelldatei:\x00Geben Sie eine Liste von Feeds zum Download an. Zum Beispiel: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nWenn Sie diese Option w\xc3\xa4hlen, wird jedes Argument %prog ignoriert und die Voreinstellung zum Download der Feeds verwendet. \x00Geben Sie an, wie der Autor dieses Buches sortiert werden soll. "Charles Dickens" zum Beispiel als "Dickens, Charles".\x00Geben Sie Meta-Daten wie den Titel und den Autor des Buches an. <p>Meta-Daten werden sowohl in der Datenbank als auch in der erstellten LRF Datei aktualisiert.\x00Geben Sie die Ausgangsschriftgr\xc3\xb6\xc3\x9fe in Punkt an. Alle Schriften werden dementsprechend im Ma\xc3\x9fstab angepasst. Diese Einstellung setzt die --font-delta Einstellung au\xc3\x9fer Gebrauch und nimmt den Vorrang ein. Um --font-delta zu benutzen, stellen Sie diesen Wert auf 0.\x00Seiteneinstellungen wie R\xc3\xa4nder und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4ts angeben.\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 individuell 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\x00Starte Download von [%d Thread(s)]...\x00Status\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00&Etiketten:\x00Etikett\x00Etiketten Editor\x00Auf Etiketten basierende Ermittlung\x00Etiketten\x00Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach B\xc3\xbcchern. <br><br>Sie k\xc3\xb6nnen f\xc3\xbcr Etiketten durch Kommata getrennte W\xc3\xb6rter oder S\xc3\xa4tze verwenden.\x00Test\x00TextLabel\x00Die Kategorie dieses Buches ... (Z. B.: Geschichte)\x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\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 <a> Elemente ignoriert werden. \x00Nichtproportionale Schriftartfamilie einbetten\x00\xc3\x84ltester Artikel, der geladen wird\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\x00Der Text, nach dem gesucht werden soll. Dies wird als eine Regul\xc3\xa4re Expression interpretiert.\x00Der Titel f\xc3\xbcr dieses Rezept. Wird als Titel f\xc3\xbcr alle eBooks benutzt, die aus den geladenen Feeds erstellt wurden.\x00Es trat ein Fehler in der Kommunikation mit dem Ger\xc3\xa4t auf. Bitte entfernen und schlie\xc3\x9fen Sie das Ger\xc3\xa4t wieder an und - oder starten Sie neu.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Zeitstempel\x00Titel\x00Auf Titel basierende Ermittlung\x00Titel:\x00Oberer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Versuche Umschlagbild zu laden...\x00Etikett vom aktuellen Buch entfernen\x00Nicht verf\xc3\xbcgbar\x00Unbekannt\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00&R\xc3\xb6mische Ziffern f\xc3\xbcr Serien Nummerierung verwenden\x00Um&schlagbild der Quelldatei verwenden\x00Das <spine> 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\x00Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed und l\xc3\xa4dt h\xc3\xb6chstens 2 Feeds.\x00Benutzername f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Vorschau\x00Spezielles Format ansehen\x00Abwarten und Tee trinken...\x00Bei der Arbeit...\x00Sie haben nicht die n\xc3\xb6tigen Rechte, um diese Datei zu lesen:\x00Sie m\xc3\xbcssen diese Auswahl treffen, wenn sie Dateien, die von pdftohtml erstellt wurden, verarbeiten wollen, sonst schl\xc3\xa4gt die Konvertierung fehl.\x00Es muss eine einzelne PDF Datei angegeben werden.\x00Sie m\xc3\xbcssen einen g\xc3\xbcltigen Zugangsschl\xc3\xbcssel (access key) f\xc3\xbcr isbndb.com angeben\x00Sie m\xc3\xbcssen die ISBN f\xc3\xbcr dieses Buch angeben.\x00beinhaltet\x00libprs500\x00', 'it': '\xde\x12\x04\x95\x00\x00\x00\x00\xa1\x01\x00\x00\x1c\x00\x00\x00$\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x1a\x00\x00\x0e\x00\x00\x00-\x1a\x00\x00!\x00\x00\x00<\x1a\x00\x00\x05\x00\x00\x00^\x1a\x00\x00\x06\x00\x00\x00d\x1a\x00\x00\x17\x00\x00\x00k\x1a\x00\x00\x0b\x00\x00\x00\x83\x1a\x00\x00\x04\x00\x00\x00\x8f\x1a\x00\x00\x03\x00\x00\x00\x94\x1a\x00\x00\x08\x00\x00\x00\x98\x1a\x00\x00\x06\x00\x00\x00\xa1\x1a\x00\x00\x1c\x00\x00\x00\xa8\x1a\x00\x00\x0e\x00\x00\x00\xc5\x1a\x00\x00\x0c\x00\x00\x00\xd4\x1a\x00\x00\t\x00\x00\x00\xe1\x1a\x00\x00\t\x00\x00\x00\xeb\x1a\x00\x00\x0c\x00\x00\x00\xf5\x1a\x00\x00\x0f\x00\x00\x00\x02\x1b\x00\x00\x11\x00\x00\x00\x12\x1b\x00\x00\x1a\x00\x00\x00$\x1b\x00\x00\x0c\x00\x00\x00?\x1b\x00\x00\x1d\x00\x00\x00L\x1b\x00\x00\x0f\x00\x00\x00j\x1b\x00\x00\r\x00\x00\x00z\x1b\x00\x00)\x00\x00\x00\x88\x1b\x00\x00"\x00\x00\x00\xb2\x1b\x00\x00\x18\x00\x00\x00\xd5\x1b\x00\x00\x0b\x00\x00\x00\xee\x1b\x00\x00\x10\x00\x00\x00\xfa\x1b\x00\x00\x17\x00\x00\x00\x0b\x1c\x00\x00\n\x00\x00\x00#\x1c\x00\x00\x0c\x00\x00\x00.\x1c\x00\x00\x1e\x00\x00\x00;\x1c\x00\x00\t\x00\x00\x00Z\x1c\x00\x00\x0c\x00\x00\x00d\x1c\x00\x00\x08\x00\x00\x00q\x1c\x00\x00\x14\x00\x00\x00z\x1c\x00\x00\x0e\x00\x00\x00\x8f\x1c\x00\x00\r\x00\x00\x00\x9e\x1c\x00\x00\x0e\x00\x00\x00\xac\x1c\x00\x00\x08\x00\x00\x00\xbb\x1c\x00\x00\x08\x00\x00\x00\xc4\x1c\x00\x00\x07\x00\x00\x00\xcd\x1c\x00\x00\x0c\x00\x00\x00\xd5\x1c\x00\x00\x0e\x00\x00\x00\xe2\x1c\x00\x00\x12\x00\x00\x00\xf1\x1c\x00\x00\x05\x00\x00\x00\x04\x1d\x00\x00\x08\x00\x00\x00\n\x1d\x00\x00\x0c\x00\x00\x00\x13\x1d\x00\x00\n\x00\x00\x00 \x1d\x00\x00\x0e\x00\x00\x00+\x1d\x00\x00\x03\x00\x00\x00:\x1d\x00\x001\x00\x00\x00>\x1d\x00\x00"\x00\x00\x00p\x1d\x00\x00=\x00\x00\x00\x93\x1d\x00\x00\x18\x00\x00\x00\xd1\x1d\x00\x00+\x00\x00\x00\xea\x1d\x00\x00\x00\x02\x00\x00\x16\x1e\x00\x00\xa3\x01\x00\x00\x17 \x00\x00\x82\x02\x00\x00\xbb!\x00\x00>\x00\x00\x00>$\x00\x00S\x00\x00\x00}$\x00\x005\x00\x00\x00\xd1$\x00\x00p\x00\x00\x00\x07%\x00\x00a\x00\x00\x00x%\x00\x00G\x00\x00\x00\xda%\x00\x00(\x00\x00\x00"&\x00\x00\xa7\x00\x00\x00K&\x00\x00W\x00\x00\x00\xf3&\x00\x00\x96\x00\x00\x00K\'\x00\x00=\x01\x00\x00\xe2\'\x00\x002\x00\x00\x00 )\x00\x00\x01\x00\x00\x00S)\x00\x00C\x00\x00\x00U)\x00\x00X\x00\x00\x00\x99)\x00\x00\r\x00\x00\x00\xf2)\x00\x00\x0f\x00\x00\x00\x00*\x00\x00\x0b\x00\x00\x00\x10*\x00\x00\x0b\x00\x00\x00\x1c*\x00\x00\x18\x00\x00\x00(*\x00\x007\x00\x00\x00A*\x00\x004\x00\x00\x00y*\x00\x00.\x00\x00\x00\xae*\x00\x00\t\x00\x00\x00\xdd*\x00\x00!\x00\x00\x00\xe7*\x00\x00b\x00\x00\x00\t+\x00\x00o\x00\x00\x00l+\x00\x00\x16\x00\x00\x00\xdc+\x00\x00\x12\x00\x00\x00\xf3+\x00\x006\x00\x00\x00\x06,\x00\x00\x12\x00\x00\x00=,\x00\x00m\x00\x00\x00P,\x00\x00\x08\x00\x00\x00\xbe,\x00\x00\x0f\x00\x00\x00\xc7,\x00\x00\x0f\x00\x00\x00\xd7,\x00\x00\x0e\x00\x00\x00\xe7,\x00\x00\x05\x00\x00\x00\xf6,\x00\x00\x03\x00\x00\x00\xfc,\x00\x00\x19\x00\x00\x00\x00-\x00\x00\x1b\x00\x00\x00\x1a-\x00\x00\x16\x00\x00\x006-\x00\x00\x06\x00\x00\x00M-\x00\x00\x0e\x00\x00\x00T-\x00\x00\r\x00\x00\x00c-\x00\x00\t\x00\x00\x00q-\x00\x00\x08\x00\x00\x00{-\x00\x00\x11\x00\x00\x00\x84-\x00\x00\x16\x00\x00\x00\x96-\x00\x00\x04\x00\x00\x00\xad-\x00\x00\x10\x00\x00\x00\xb2-\x00\x00\x05\x00\x00\x00\xc3-\x00\x00!\x00\x00\x00\xc9-\x00\x00\x10\x00\x00\x00\xeb-\x00\x00\x05\x00\x00\x00\xfc-\x00\x00(\x00\x00\x00\x02.\x00\x00\n\x00\x00\x00+.\x00\x00.\x00\x00\x006.\x00\x005\x00\x00\x00e.\x00\x00$\x00\x00\x00\x9b.\x00\x00\x0c\x00\x00\x00\xc0.\x00\x00\x1a\x00\x00\x00\xcd.\x00\x00\x10\x00\x00\x00\xe8.\x00\x00.\x00\x00\x00\xf9.\x00\x00\x0e\x00\x00\x00(/\x00\x00\x0e\x00\x00\x007/\x00\x007\x00\x00\x00F/\x00\x00\x14\x00\x00\x00~/\x00\x00\x12\x00\x00\x00\x93/\x00\x00#\x00\x00\x00\xa6/\x00\x00\x0f\x00\x00\x00\xca/\x00\x00Z\x00\x00\x00\xda/\x00\x00\x19\x00\x00\x0050\x00\x00\x0b\x00\x00\x00O0\x00\x00\x13\x00\x00\x00[0\x00\x00\x0b\x00\x00\x00o0\x00\x00\x11\x00\x00\x00{0\x00\x00\x08\x00\x00\x00\x8d0\x00\x00\x14\x00\x00\x00\x960\x00\x00\x0f\x00\x00\x00\xab0\x00\x00R\x00\x00\x00\xbb0\x00\x00!\x00\x00\x00\x0e1\x00\x00\x1d\x00\x00\x0001\x00\x00H\x00\x00\x00N1\x00\x00\x11\x00\x00\x00\x971\x00\x00\r\x00\x00\x00\xa91\x00\x00%\x00\x00\x00\xb71\x00\x00\x19\x00\x00\x00\xdd1\x00\x00!\x00\x00\x00\xf71\x00\x007\x00\x00\x00\x192\x00\x00\x08\x00\x00\x00Q2\x00\x00\r\x00\x00\x00Z2\x00\x00\t\x00\x00\x00h2\x00\x00\x10\x00\x00\x00r2\x00\x00\x11\x00\x00\x00\x832\x00\x00\x0f\x00\x00\x00\x952\x00\x00\x14\x00\x00\x00\xa52\x00\x00\x0e\x00\x00\x00\xba2\x00\x00\x1c\x00\x00\x00\xc92\x00\x00;\x00\x00\x00\xe62\x00\x00\x15\x00\x00\x00"3\x00\x00R\x00\x00\x0083\x00\x00\x17\x00\x00\x00\x8b3\x00\x00\x18\x00\x00\x00\xa33\x00\x00\x0b\x00\x00\x00\xbc3\x00\x00\x13\x00\x00\x00\xc83\x00\x00\x04\x00\x00\x00\xdc3\x00\x00\x19\x00\x00\x00\xe13\x00\x00\x03\x00\x00\x00\xfb3\x00\x00h\x00\x00\x00\xff3\x00\x00\x0e\x00\x00\x00h4\x00\x00\x1b\x00\x00\x00w4\x00\x00\x1a\x00\x00\x00\x934\x00\x00\x11\x00\x00\x00\xae4\x00\x00\x19\x00\x00\x00\xc04\x00\x00\x11\x00\x00\x00\xda4\x00\x00\x01\x00\x00\x00\xec4\x00\x00\x05\x00\x00\x00\xee4\x00\x00\x15\x00\x00\x00\xf44\x00\x00\x15\x00\x00\x00\n5\x00\x00\x15\x00\x00\x00 5\x00\x00\x15\x00\x00\x0065\x00\x00\x1a\x00\x00\x00L5\x00\x00\x0e\x00\x00\x00g5\x00\x00\x1f\x00\x00\x00v5\x00\x00C\x00\x00\x00\x965\x00\x00\x05\x00\x00\x00\xda5\x00\x00\x1f\x00\x00\x00\xe05\x00\x00\x12\x00\x00\x00\x006\x00\x00\x17\x00\x00\x00\x136\x00\x00\x1f\x00\x00\x00+6\x00\x00\'\x00\x00\x00K6\x00\x003\x00\x00\x00s6\x00\x00*\x00\x00\x00\xa76\x00\x00\n\x00\x00\x00\xd26\x00\x00\x14\x00\x00\x00\xdd6\x00\x00\x16\x00\x00\x00\xf26\x00\x00\x16\x00\x00\x00\t7\x00\x00\x0f\x00\x00\x00 7\x00\x00\x05\x00\x00\x0007\x00\x00\x1d\x00\x00\x0067\x00\x00\x0e\x00\x00\x00T7\x00\x00\x1a\x00\x00\x00c7\x00\x00\n\x00\x00\x00~7\x00\x00\x10\x00\x00\x00\x897\x00\x00\r\x00\x00\x00\x9a7\x00\x00\x11\x00\x00\x00\xa87\x00\x00\x1f\x00\x00\x00\xba7\x00\x00\x13\x00\x00\x00\xda7\x00\x00\x1b\x00\x00\x00\xee7\x00\x00\x05\x00\x00\x00\n8\x00\x00\x0b\x00\x00\x00\x108\x00\x008\x00\x00\x00\x1c8\x00\x00\x08\x00\x00\x00U8\x00\x00\x8a\x00\x00\x00^8\x00\x00\x1d\x01\x00\x00\xe98\x00\x00J\x00\x00\x00\x07:\x00\x00#\x00\x00\x00R:\x00\x00\x04\x00\x00\x00v:\x00\x00\x06\x00\x00\x00{:\x00\x00\x07\x00\x00\x00\x82:\x00\x00\x07\x00\x00\x00\x8a:\x00\x00\'\x00\x00\x00\x92:\x00\x00\x1b\x00\x00\x00\xba:\x00\x00\x19\x00\x00\x00\xd6:\x00\x00\x06\x00\x00\x00\xf0:\x00\x00\x0c\x00\x00\x00\xf7:\x00\x00\t\x00\x00\x00\x04;\x00\x00\x06\x00\x00\x00\x0e;\x00\x00\xdc\x01\x00\x00\x15;\x00\x00n\x00\x00\x00\xf2<\x00\x00a\x00\x00\x00a=\x00\x00\x0e\x00\x00\x00\xc3=\x00\x00\x0e\x00\x00\x00\xd2=\x00\x00\xa8\x00\x00\x00\xe1=\x00\x00&\x00\x00\x00\x8a>\x00\x00\x10\x00\x00\x00\xb1>\x00\x00\x19\x00\x00\x00\xc2>\x00\x00\x1a\x00\x00\x00\xdc>\x00\x00.\x00\x00\x00\xf7>\x00\x00\r\x00\x00\x00&?\x00\x00\x1a\x00\x00\x004?\x00\x00\x1e\x00\x00\x00O?\x00\x00\x03\x00\x00\x00n?\x00\x00\x12\x00\x00\x00r?\x00\x00\x05\x00\x00\x00\x85?\x00\x00\n\x00\x00\x00\x8b?\x00\x00,\x00\x00\x00\x96?\x00\x00\x07\x00\x00\x00\xc3?\x00\x00-\x00\x00\x00\xcb?\x00\x00\x0b\x00\x00\x00\xf9?\x00\x00$\x00\x00\x00\x05@\x00\x00$\x00\x00\x00*@\x00\x00\x07\x00\x00\x00O@\x00\x000\x00\x00\x00W@\x00\x00\x10\x00\x00\x00\x88@\x00\x00\x08\x00\x00\x00\x99@\x00\x00y\x00\x00\x00\xa2@\x00\x00\x10\x00\x00\x00\x1cA\x00\x00\x04\x00\x00\x00-A\x00\x00\x06\x00\x00\x002A\x00\x00"\x00\x00\x009A\x00\x00\t\x00\x00\x00\\A\x00\x00\n\x00\x00\x00fA\x00\x00\x14\x00\x00\x00qA\x00\x00\x10\x00\x00\x00\x86A\x00\x00\x11\x00\x00\x00\x97A\x00\x00\x08\x00\x00\x00\xa9A\x00\x00\x10\x00\x00\x00\xb2A\x00\x00\x12\x00\x00\x00\xc3A\x00\x00\x04\x00\x00\x00\xd6A\x00\x00^\x00\x00\x00\xdbA\x00\x00\x0f\x00\x00\x00:B\x00\x00\n\x00\x00\x00JB\x00\x00\x07\x00\x00\x00UB\x00\x00-\x00\x00\x00]B\x00\x00+\x00\x00\x00\x8bB\x00\x00F\x00\x00\x00\xb7B\x00\x008\x00\x00\x00\xfeB\x00\x00s\x00\x00\x007C\x00\x00\x0f\x00\x00\x00\xabC\x00\x00\n\x00\x00\x00\xbbC\x00\x00\x10\x00\x00\x00\xc6C\x00\x00:\x00\x00\x00\xd7C\x00\x00\x0f\x00\x00\x00\x12D\x00\x00\x04\x00\x00\x00"D\x00\x00;\x00\x00\x00\'D\x00\x00G\x00\x00\x00cD\x00\x001\x00\x00\x00\xabD\x00\x00Y\x00\x00\x00\xddD\x00\x004\x00\x00\x007E\x00\x00\x80\x00\x00\x00lE\x00\x00H\x00\x00\x00\xedE\x00\x00\r\x00\x00\x006F\x00\x00\xbc\x00\x00\x00DF\x00\x00\x08\x00\x00\x00\x01G\x00\x00\t\x00\x00\x00\nG\x00\x00\x06\x00\x00\x00\x14G\x00\x00\x1e\x00\x00\x00\x1bG\x00\x00\x13\x00\x00\x00:G\x00\x00\x0e\x00\x00\x00NG\x00\x00\x1b\x00\x00\x00]G\x00\x00\x13\x00\x00\x00yG\x00\x00+\x00\x00\x00\x8dG\x00\x00*\x00\x00\x00\xb9G\x00\x000\x00\x00\x00\xe4G\x00\x00)\x00\x00\x00\x15H\x00\x00<\x00\x00\x00?H\x00\x00\x0c\x00\x00\x00|H\x00\x00\x17\x00\x00\x00\x89H\x00\x00<\x00\x00\x00\xa1H\x00\x000\x00\x00\x00\xdeH\x00\x00\x84\x00\x00\x00\x0fI\x00\x00X\x00\x00\x00\x94I\x00\x00\x0f\x00\x00\x00\xedI\x00\x00\x12\x00\x00\x00\xfdI\x00\x00-\x00\x00\x00\x10J\x00\x00\x0c\x00\x00\x00>J\x00\x00\x0c\x00\x00\x00KJ\x00\x00\x0c\x00\x00\x00XJ\x00\x00"\x00\x00\x00eJ\x00\x009\x00\x00\x00\x88J\x00\x00\x0f\x00\x00\x00\xc2J\x00\x00V\x00\x00\x00\xd2J\x00\x00r\x00\x00\x00)K\x00\x00G\x00\x00\x00\x9cK\x00\x00\'\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00\x0cL\x00\x00\x13\x00\x00\x00\x1bL\x00\x00\x14\x00\x00\x00/L\x00\x00#\x00\x00\x00DL\x00\x00\x06\x00\x00\x00hL\x00\x00\r\x00\x00\x00oL\x00\x00\r\x00\x00\x00}L\x00\x00\x07\x00\x00\x00\x8bL\x00\x00\x1e\x00\x00\x00\x93L\x00\x00\x0b\x00\x00\x00\xb2L\x00\x00\x17\x00\x00\x00\xbeL\x00\x00\x1b\x00\x00\x00\xd6L\x00\x00\x1a\x00\x00\x00\xf2L\x00\x00\x0e\x00\x00\x00\rM\x00\x00^\x00\x00\x00\x1cM\x00\x00\x12\x00\x00\x00{M\x00\x00\x10\x00\x00\x00\x8eM\x00\x00\x10\x00\x00\x00\x9fM\x00\x00g\x00\x00\x00\xb0M\x00\x00c\x00\x00\x00\x18N\x00\x007\x00\x00\x00|N\x00\x00!\x00\x00\x00\xb4N\x00\x00d\x00\x00\x00\xd6N\x00\x00\t\x00\x00\x00;O\x00\x00\x17\x00\x00\x00EO\x00\x00\x16\x00\x00\x00]O\x00\x00\x11\x00\x00\x00tO\x00\x00\x04\x01\x00\x00\x86O\x00\x00z\x00\x00\x00\x8bP\x00\x00\x85\x00\x00\x00\x06Q\x00\x00\xb6\x00\x00\x00\x8cQ\x00\x00P\x00\x00\x00CR\x00\x00+\x01\x00\x00\x94R\x00\x00#\x00\x00\x00\xc0S\x00\x00\x06\x00\x00\x00\xe4S\x00\x00\x17\x00\x00\x00\xebS\x00\x00\x14\x00\x00\x00\x03T\x00\x00\x07\x00\x00\x00\x18T\x00\x00\x03\x00\x00\x00 T\x00\x00\n\x00\x00\x00$T\x00\x00\x13\x00\x00\x00/T\x00\x00\x04\x00\x00\x00CT\x00\x00\x85\x00\x00\x00HT\x00\x00\x04\x00\x00\x00\xceT\x00\x00\t\x00\x00\x00\xd3T\x00\x000\x00\x00\x00\xddT\x00\x00X\x00\x00\x00\x0eU\x00\x00\x1b\x00\x00\x00gU\x00\x00\x1a\x00\x00\x00\x83U\x00\x00\x9d\x00\x00\x00\x9eU\x00\x00&\x00\x00\x00<V\x00\x00\x1e\x00\x00\x00cV\x00\x00v\x00\x00\x00\x82V\x00\x00\'\x00\x00\x00\xf9V\x00\x00"\x00\x00\x00!W\x00\x00B\x00\x00\x00DW\x00\x00^\x00\x00\x00\x87W\x00\x00h\x00\x00\x00\xe6W\x00\x00.\x00\x00\x00OX\x00\x00\t\x00\x00\x00~X\x00\x00\x05\x00\x00\x00\x88X\x00\x00\x15\x00\x00\x00\x8eX\x00\x00\x06\x00\x00\x00\xa4X\x00\x00+\x00\x00\x00\xabX\x00\x00\x1b\x00\x00\x00\xd7X\x00\x00&\x00\x00\x00\xf3X\x00\x00\x0b\x00\x00\x00\x1aY\x00\x00\x07\x00\x00\x00&Y\x00\x00\x13\x00\x00\x00.Y\x00\x00\x0c\x00\x00\x00BY\x00\x00\x10\x00\x00\x00OY\x00\x00\x10\x00\x00\x00`Y\x00\x00%\x00\x00\x00qY\x00\x00\x1b\x00\x00\x00\x97Y\x00\x00\xb4\x00\x00\x00\xb3Y\x00\x002\x00\x00\x00hZ\x00\x00\x14\x00\x00\x00\x9bZ\x00\x00_\x00\x00\x00\xb0Z\x00\x00:\x00\x00\x00\x10[\x00\x00*\x00\x00\x00K[\x00\x00\x04\x00\x00\x00v[\x00\x00\x14\x00\x00\x00{[\x00\x00\x07\x00\x00\x00\x90[\x00\x00\x07\x00\x00\x00\x98[\x00\x00-\x00\x00\x00\xa0[\x00\x00d\x00\x00\x00\xce[\x00\x00#\x00\x00\x003\\\x00\x002\x00\x00\x00W\\\x00\x003\x00\x00\x00\x8a\\\x00\x00\x08\x00\x00\x00\xbe\\\x00\x00\t\x00\x00\x00\xc7\\\x00\x00u\x01\x00\x00\xd1\\\x00\x00\x0e\x00\x00\x00G^\x00\x00\x1f\x00\x00\x00V^\x00\x00\x07\x00\x00\x00v^\x00\x00\x04\x00\x00\x00~^\x00\x00\x1a\x00\x00\x00\x83^\x00\x00\x0c\x00\x00\x00\x9e^\x00\x00\x03\x00\x00\x00\xab^\x00\x00\x03\x00\x00\x00\xaf^\x00\x00\x08\x00\x00\x00\xb3^\x00\x00\x07\x00\x00\x00\xbc^\x00\x00\x1d\x00\x00\x00\xc4^\x00\x00\x0c\x00\x00\x00\xe2^\x00\x00\x12\x00\x00\x00\xef^\x00\x00\x0e\x00\x00\x00\x02_\x00\x00\x0e\x00\x00\x00\x11_\x00\x00\x0c\x00\x00\x00 _\x00\x00\x13\x00\x00\x00-_\x00\x00\x12\x00\x00\x00A_\x00\x00)\x00\x00\x00T_\x00\x00\x11\x00\x00\x00~_\x00\x00,\x00\x00\x00\x90_\x00\x00\x16\x00\x00\x00\xbd_\x00\x00\x12\x00\x00\x00\xd4_\x00\x00/\x00\x00\x00\xe7_\x00\x00%\x00\x00\x00\x17`\x00\x00\x1b\x00\x00\x00=`\x00\x00\x12\x00\x00\x00Y`\x00\x00\x17\x00\x00\x00l`\x00\x00&\x00\x00\x00\x84`\x00\x00\n\x00\x00\x00\xab`\x00\x00\x12\x00\x00\x00\xb6`\x00\x00\'\x00\x00\x00\xc9`\x00\x00\t\x00\x00\x00\xf1`\x00\x00\n\x00\x00\x00\xfb`\x00\x00\n\x00\x00\x00\x06a\x00\x00\x16\x00\x00\x00\x11a\x00\x00\x10\x00\x00\x00(a\x00\x00\r\x00\x00\x009a\x00\x00\x10\x00\x00\x00Ga\x00\x00\x07\x00\x00\x00Xa\x00\x00\x07\x00\x00\x00`a\x00\x00\x0c\x00\x00\x00ha\x00\x00\x14\x00\x00\x00ua\x00\x00\x10\x00\x00\x00\x8aa\x00\x00!\x00\x00\x00\x9ba\x00\x00\x05\x00\x00\x00\xbda\x00\x00\t\x00\x00\x00\xc3a\x00\x00\x13\x00\x00\x00\xcda\x00\x00\r\x00\x00\x00\xe1a\x00\x00\x16\x00\x00\x00\xefa\x00\x00\x03\x00\x00\x00\x06b\x00\x00/\x00\x00\x00\nb\x00\x00.\x00\x00\x00:b\x00\x00<\x00\x00\x00ib\x00\x00\x1c\x00\x00\x00\xa6b\x00\x002\x00\x00\x00\xc3b\x00\x005\x02\x00\x00\xf6b\x00\x00\xa3\x01\x00\x00,e\x00\x00\x89\x02\x00\x00\xd0f\x00\x00;\x00\x00\x00Zi\x00\x00F\x00\x00\x00\x96i\x00\x002\x00\x00\x00\xddi\x00\x00x\x00\x00\x00\x10j\x00\x00[\x00\x00\x00\x89j\x00\x00V\x00\x00\x00\xe5j\x00\x00/\x00\x00\x00<k\x00\x00\xc0\x00\x00\x00lk\x00\x00m\x00\x00\x00-l\x00\x00\xaa\x00\x00\x00\x9bl\x00\x00\x84\x01\x00\x00Fm\x00\x00?\x00\x00\x00\xcbn\x00\x00\x01\x00\x00\x00\x0bo\x00\x00B\x00\x00\x00\ro\x00\x00d\x00\x00\x00Po\x00\x00\x0e\x00\x00\x00\xb5o\x00\x00\x10\x00\x00\x00\xc4o\x00\x00\r\x00\x00\x00\xd5o\x00\x00\x0f\x00\x00\x00\xe3o\x00\x00,\x00\x00\x00\xf3o\x00\x00D\x00\x00\x00 p\x00\x00J\x00\x00\x00ep\x00\x006\x00\x00\x00\xb0p\x00\x00\x0e\x00\x00\x00\xe7p\x00\x00&\x00\x00\x00\xf6p\x00\x00b\x00\x00\x00\x1dq\x00\x00u\x00\x00\x00\x80q\x00\x00,\x00\x00\x00\xf6q\x00\x00\x1d\x00\x00\x00#r\x00\x00B\x00\x00\x00Ar\x00\x00\x1a\x00\x00\x00\x84r\x00\x00\x87\x00\x00\x00\x9fr\x00\x00\x08\x00\x00\x00\'s\x00\x00\x10\x00\x00\x000s\x00\x00\x10\x00\x00\x00As\x00\x00\x0b\x00\x00\x00Rs\x00\x00\x05\x00\x00\x00^s\x00\x00\t\x00\x00\x00ds\x00\x00 \x00\x00\x00ns\x00\x00&\x00\x00\x00\x8fs\x00\x00\x16\x00\x00\x00\xb6s\x00\x00\x06\x00\x00\x00\xcds\x00\x00\x19\x00\x00\x00\xd4s\x00\x00\x18\x00\x00\x00\xees\x00\x00\t\x00\x00\x00\x07t\x00\x00\x07\x00\x00\x00\x11t\x00\x00\x13\x00\x00\x00\x19t\x00\x00\x1a\x00\x00\x00-t\x00\x00\x08\x00\x00\x00Ht\x00\x00\x1d\x00\x00\x00Qt\x00\x00\x04\x00\x00\x00ot\x00\x00*\x00\x00\x00tt\x00\x00\x11\x00\x00\x00\x9ft\x00\x00\x06\x00\x00\x00\xb1t\x00\x00(\x00\x00\x00\xb8t\x00\x00\x13\x00\x00\x00\xe1t\x00\x008\x00\x00\x00\xf5t\x00\x00H\x00\x00\x00.u\x00\x008\x00\x00\x00wu\x00\x00\x12\x00\x00\x00\xb0u\x00\x00%\x00\x00\x00\xc3u\x00\x00\x17\x00\x00\x00\xe9u\x00\x00;\x00\x00\x00\x01v\x00\x00\x17\x00\x00\x00=v\x00\x00\x16\x00\x00\x00Uv\x00\x00H\x00\x00\x00lv\x00\x00!\x00\x00\x00\xb5v\x00\x00"\x00\x00\x00\xd7v\x00\x00.\x00\x00\x00\xfav\x00\x00\x1f\x00\x00\x00)w\x00\x00w\x00\x00\x00Iw\x00\x00(\x00\x00\x00\xc1w\x00\x00\x13\x00\x00\x00\xeaw\x00\x00\x1d\x00\x00\x00\xfew\x00\x00\x13\x00\x00\x00\x1cx\x00\x00\x15\x00\x00\x000x\x00\x00\t\x00\x00\x00Fx\x00\x00 \x00\x00\x00Px\x00\x00\x0f\x00\x00\x00qx\x00\x00V\x00\x00\x00\x81x\x00\x00 \x00\x00\x00\xd8x\x00\x00 \x00\x00\x00\xf9x\x00\x00J\x00\x00\x00\x1ay\x00\x00\x17\x00\x00\x00ey\x00\x00\x14\x00\x00\x00}y\x00\x00)\x00\x00\x00\x92y\x00\x00\x1f\x00\x00\x00\xbcy\x00\x000\x00\x00\x00\xdcy\x00\x008\x00\x00\x00\rz\x00\x00\x08\x00\x00\x00Fz\x00\x00\x0e\x00\x00\x00Oz\x00\x00\x0e\x00\x00\x00^z\x00\x00\x18\x00\x00\x00mz\x00\x00\x12\x00\x00\x00\x86z\x00\x00\x0e\x00\x00\x00\x99z\x00\x00\x18\x00\x00\x00\xa8z\x00\x00\x0f\x00\x00\x00\xc1z\x00\x00&\x00\x00\x00\xd1z\x00\x00L\x00\x00\x00\xf8z\x00\x00"\x00\x00\x00E{\x00\x00Z\x00\x00\x00h{\x00\x00 \x00\x00\x00\xc3{\x00\x00"\x00\x00\x00\xe4{\x00\x00\n\x00\x00\x00\x07|\x00\x00\x1f\x00\x00\x00\x12|\x00\x00\x04\x00\x00\x002|\x00\x00 \x00\x00\x007|\x00\x00\x04\x00\x00\x00X|\x00\x00d\x00\x00\x00]|\x00\x00\x13\x00\x00\x00\xc2|\x00\x00\x1a\x00\x00\x00\xd6|\x00\x00"\x00\x00\x00\xf1|\x00\x00\x17\x00\x00\x00\x14}\x00\x00\x1c\x00\x00\x00,}\x00\x00\x13\x00\x00\x00I}\x00\x00\x01\x00\x00\x00]}\x00\x00\x06\x00\x00\x00_}\x00\x00\x11\x00\x00\x00f}\x00\x00\x11\x00\x00\x00x}\x00\x00\x11\x00\x00\x00\x8a}\x00\x00\x1b\x00\x00\x00\x9c}\x00\x00!\x00\x00\x00\xb8}\x00\x00\x11\x00\x00\x00\xda}\x00\x00,\x00\x00\x00\xec}\x00\x00Q\x00\x00\x00\x19~\x00\x00\x06\x00\x00\x00k~\x00\x00\'\x00\x00\x00r~\x00\x00\x1d\x00\x00\x00\x9a~\x00\x00\'\x00\x00\x00\xb8~\x00\x00"\x00\x00\x00\xe0~\x00\x00-\x00\x00\x00\x03\x7f\x00\x008\x00\x00\x001\x7f\x00\x00+\x00\x00\x00j\x7f\x00\x00\x0e\x00\x00\x00\x96\x7f\x00\x00\x1a\x00\x00\x00\xa5\x7f\x00\x00\x1c\x00\x00\x00\xc0\x7f\x00\x00\x14\x00\x00\x00\xdd\x7f\x00\x00\x12\x00\x00\x00\xf2\x7f\x00\x00\x07\x00\x00\x00\x05\x80\x00\x00(\x00\x00\x00\r\x80\x00\x00\x10\x00\x00\x006\x80\x00\x00\x1b\x00\x00\x00G\x80\x00\x00\x0f\x00\x00\x00c\x80\x00\x00\x13\x00\x00\x00s\x80\x00\x00\x11\x00\x00\x00\x87\x80\x00\x00\x14\x00\x00\x00\x99\x80\x00\x00#\x00\x00\x00\xae\x80\x00\x00\x18\x00\x00\x00\xd2\x80\x00\x00$\x00\x00\x00\xeb\x80\x00\x00\x04\x00\x00\x00\x10\x81\x00\x00\x0b\x00\x00\x00\x15\x81\x00\x00[\x00\x00\x00!\x81\x00\x00\x06\x00\x00\x00}\x81\x00\x00\x96\x00\x00\x00\x84\x81\x00\x00O\x01\x00\x00\x1b\x82\x00\x00d\x00\x00\x00k\x83\x00\x003\x00\x00\x00\xd0\x83\x00\x00\x07\x00\x00\x00\x04\x84\x00\x00\x07\x00\x00\x00\x0c\x84\x00\x00\x07\x00\x00\x00\x14\x84\x00\x00\x06\x00\x00\x00\x1c\x84\x00\x00,\x00\x00\x00#\x84\x00\x00\x1d\x00\x00\x00P\x84\x00\x00%\x00\x00\x00n\x84\x00\x00\x0c\x00\x00\x00\x94\x84\x00\x00\x14\x00\x00\x00\xa1\x84\x00\x00\x06\x00\x00\x00\xb6\x84\x00\x00\x06\x00\x00\x00\xbd\x84\x00\x00B\x02\x00\x00\xc4\x84\x00\x00\x85\x00\x00\x00\x07\x87\x00\x00n\x00\x00\x00\x8d\x87\x00\x00\x0e\x00\x00\x00\xfc\x87\x00\x00\x0f\x00\x00\x00\x0b\x88\x00\x00\xd9\x00\x00\x00\x1b\x88\x00\x00(\x00\x00\x00\xf5\x88\x00\x00\x13\x00\x00\x00\x1e\x89\x00\x00\x1c\x00\x00\x002\x89\x00\x00\x1d\x00\x00\x00O\x89\x00\x008\x00\x00\x00m\x89\x00\x00\x10\x00\x00\x00\xa6\x89\x00\x00\x1f\x00\x00\x00\xb7\x89\x00\x00#\x00\x00\x00\xd7\x89\x00\x00\x06\x00\x00\x00\xfb\x89\x00\x00\x1c\x00\x00\x00\x02\x8a\x00\x00\x07\x00\x00\x00\x1f\x8a\x00\x00\x12\x00\x00\x00\'\x8a\x00\x007\x00\x00\x00:\x8a\x00\x00\n\x00\x00\x00r\x8a\x00\x00>\x00\x00\x00}\x8a\x00\x00\x0f\x00\x00\x00\xbc\x8a\x00\x00,\x00\x00\x00\xcc\x8a\x00\x006\x00\x00\x00\xf9\x8a\x00\x00\x0e\x00\x00\x000\x8b\x00\x000\x00\x00\x00?\x8b\x00\x00\x08\x00\x00\x00p\x8b\x00\x00\x08\x00\x00\x00y\x8b\x00\x00\x8a\x00\x00\x00\x82\x8b\x00\x00\x15\x00\x00\x00\r\x8c\x00\x00\x07\x00\x00\x00#\x8c\x00\x00\x04\x00\x00\x00+\x8c\x00\x00.\x00\x00\x000\x8c\x00\x00\x11\x00\x00\x00_\x8c\x00\x00\x17\x00\x00\x00q\x8c\x00\x00\x1a\x00\x00\x00\x89\x8c\x00\x00\x18\x00\x00\x00\xa4\x8c\x00\x00\x18\x00\x00\x00\xbd\x8c\x00\x00\x16\x00\x00\x00\xd6\x8c\x00\x00\x1e\x00\x00\x00\xed\x8c\x00\x00$\x00\x00\x00\x0c\x8d\x00\x00\x07\x00\x00\x001\x8d\x00\x00g\x00\x00\x009\x8d\x00\x00\x15\x00\x00\x00\xa1\x8d\x00\x00\n\x00\x00\x00\xb7\x8d\x00\x00\x07\x00\x00\x00\xc2\x8d\x00\x006\x00\x00\x00\xca\x8d\x00\x004\x00\x00\x00\x01\x8e\x00\x00O\x00\x00\x006\x8e\x00\x00J\x00\x00\x00\x86\x8e\x00\x00\x83\x00\x00\x00\xd1\x8e\x00\x00\x12\x00\x00\x00U\x8f\x00\x00\x0e\x00\x00\x00h\x8f\x00\x00\x10\x00\x00\x00w\x8f\x00\x00O\x00\x00\x00\x88\x8f\x00\x00\x13\x00\x00\x00\xd8\x8f\x00\x00\x08\x00\x00\x00\xec\x8f\x00\x00I\x00\x00\x00\xf5\x8f\x00\x00M\x00\x00\x00?\x90\x00\x00>\x00\x00\x00\x8d\x90\x00\x00Z\x00\x00\x00\xcc\x90\x00\x00B\x00\x00\x00\'\x91\x00\x00{\x00\x00\x00j\x91\x00\x00Z\x00\x00\x00\xe6\x91\x00\x00\x11\x00\x00\x00A\x92\x00\x00\xc2\x00\x00\x00S\x92\x00\x00\t\x00\x00\x00\x16\x93\x00\x00\x07\x00\x00\x00 \x93\x00\x00\x08\x00\x00\x00(\x93\x00\x00$\x00\x00\x001\x93\x00\x00\x16\x00\x00\x00V\x93\x00\x00\x10\x00\x00\x00m\x93\x00\x00 \x00\x00\x00~\x93\x00\x00\x15\x00\x00\x00\x9f\x93\x00\x008\x00\x00\x00\xb5\x93\x00\x007\x00\x00\x00\xee\x93\x00\x00=\x00\x00\x00&\x94\x00\x007\x00\x00\x00d\x94\x00\x00D\x00\x00\x00\x9c\x94\x00\x00\r\x00\x00\x00\xe1\x94\x00\x00\x1d\x00\x00\x00\xef\x94\x00\x00<\x00\x00\x00\r\x95\x00\x000\x00\x00\x00J\x95\x00\x00\xa0\x00\x00\x00{\x95\x00\x00b\x00\x00\x00\x1c\x96\x00\x00\x19\x00\x00\x00\x7f\x96\x00\x00\x16\x00\x00\x00\x99\x96\x00\x005\x00\x00\x00\xb0\x96\x00\x00\x13\x00\x00\x00\xe6\x96\x00\x00\x0e\x00\x00\x00\xfa\x96\x00\x00\x0e\x00\x00\x00\t\x97\x00\x00&\x00\x00\x00\x18\x97\x00\x00@\x00\x00\x00?\x97\x00\x00\x12\x00\x00\x00\x80\x97\x00\x00h\x00\x00\x00\x93\x97\x00\x00\x80\x00\x00\x00\xfc\x97\x00\x00\\\x00\x00\x00}\x98\x00\x007\x00\x00\x00\xda\x98\x00\x00\x14\x00\x00\x00\x12\x99\x00\x00\x1d\x00\x00\x00\'\x99\x00\x00\x1c\x00\x00\x00E\x99\x00\x00$\x00\x00\x00b\x99\x00\x00\x05\x00\x00\x00\x87\x99\x00\x00\x0c\x00\x00\x00\x8d\x99\x00\x00\r\x00\x00\x00\x9a\x99\x00\x00\x06\x00\x00\x00\xa8\x99\x00\x00\'\x00\x00\x00\xaf\x99\x00\x00\x16\x00\x00\x00\xd7\x99\x00\x00\'\x00\x00\x00\xee\x99\x00\x004\x00\x00\x00\x16\x9a\x00\x003\x00\x00\x00K\x9a\x00\x00\x10\x00\x00\x00\x7f\x9a\x00\x00^\x00\x00\x00\x90\x9a\x00\x00\x1b\x00\x00\x00\xef\x9a\x00\x00\x14\x00\x00\x00\x0b\x9b\x00\x00\x13\x00\x00\x00 \x9b\x00\x00\x80\x00\x00\x004\x9b\x00\x00\x7f\x00\x00\x00\xb5\x9b\x00\x00K\x00\x00\x005\x9c\x00\x00-\x00\x00\x00\x81\x9c\x00\x00x\x00\x00\x00\xaf\x9c\x00\x00\x0f\x00\x00\x00(\x9d\x00\x00)\x00\x00\x008\x9d\x00\x00(\x00\x00\x00b\x9d\x00\x00\x13\x00\x00\x00\x8b\x9d\x00\x00\x1b\x01\x00\x00\x9f\x9d\x00\x00\x8d\x00\x00\x00\xbb\x9e\x00\x00|\x00\x00\x00I\x9f\x00\x00\xe1\x00\x00\x00\xc6\x9f\x00\x00c\x00\x00\x00\xa8\xa0\x00\x00\x8e\x01\x00\x00\x0c\xa1\x00\x00\'\x00\x00\x00\x9b\xa2\x00\x00\x05\x00\x00\x00\xc3\xa2\x00\x00\x1d\x00\x00\x00\xc9\xa2\x00\x00\x19\x00\x00\x00\xe7\xa2\x00\x00\x06\x00\x00\x00\x01\xa3\x00\x00\x03\x00\x00\x00\x08\xa3\x00\x00\r\x00\x00\x00\x0c\xa3\x00\x00\x1d\x00\x00\x00\x1a\xa3\x00\x00\x03\x00\x00\x008\xa3\x00\x00\x97\x00\x00\x00<\xa3\x00\x00\x04\x00\x00\x00\xd4\xa3\x00\x00\x10\x00\x00\x00\xd9\xa3\x00\x006\x00\x00\x00\xea\xa3\x00\x00K\x00\x00\x00!\xa4\x00\x00\x1d\x00\x00\x00m\xa4\x00\x00\x1c\x00\x00\x00\x8b\xa4\x00\x00\xb4\x00\x00\x00\xa8\xa4\x00\x008\x00\x00\x00]\xa5\x00\x00$\x00\x00\x00\x96\xa5\x00\x00\x97\x00\x00\x00\xbb\xa5\x00\x002\x00\x00\x00S\xa6\x00\x000\x00\x00\x00\x86\xa6\x00\x00A\x00\x00\x00\xb7\xa6\x00\x00^\x00\x00\x00\xf9\xa6\x00\x00\x81\x00\x00\x00X\xa7\x00\x00/\x00\x00\x00\xda\xa7\x00\x00\t\x00\x00\x00\n\xa8\x00\x00\x06\x00\x00\x00\x14\xa8\x00\x00 \x00\x00\x00\x1b\xa8\x00\x00\x07\x00\x00\x00<\xa8\x00\x008\x00\x00\x00D\xa8\x00\x00,\x00\x00\x00}\xa8\x00\x00!\x00\x00\x00\xaa\xa8\x00\x00\x0f\x00\x00\x00\xcc\xa8\x00\x00\x0b\x00\x00\x00\xdc\xa8\x00\x00\x1f\x00\x00\x00\xe8\xa8\x00\x00\x10\x00\x00\x00\x08\xa9\x00\x00\x15\x00\x00\x00\x19\xa9\x00\x00\x15\x00\x00\x00/\xa9\x00\x00-\x00\x00\x00E\xa9\x00\x00"\x00\x00\x00s\xa9\x00\x00\xba\x00\x00\x00\x96\xa9\x00\x004\x00\x00\x00Q\xaa\x00\x00\x15\x00\x00\x00\x86\xaa\x00\x00`\x00\x00\x00\x9c\xaa\x00\x00R\x00\x00\x00\xfd\xaa\x00\x00-\x00\x00\x00P\xab\x00\x00\x05\x00\x00\x00~\xab\x00\x00\x1b\x00\x00\x00\x84\xab\x00\x00\t\x00\x00\x00\xa0\xab\x00\x00\r\x00\x00\x00\xaa\xab\x00\x00-\x00\x00\x00\xb8\xab\x00\x00\x84\x00\x00\x00\xe6\xab\x00\x00-\x00\x00\x00k\xac\x00\x00F\x00\x00\x00\x99\xac\x00\x008\x00\x00\x00\xe0\xac\x00\x00\x08\x00\x00\x00\x19\xad\x00\x00\t\x00\x00\x00"\xad\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book <font face="serif">%s</font> of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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<br>CSS\x00Page Setup\x00Parsing LRF file\x00Password for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: it\nPOT-Creation-Date: 2008-03-31 15:53+PDT\nPO-Revision-Date: 2008-03-31 13:49+0200\nLast-Translator: Iacopo Benesperi <iacchi@iacchi.org>\nLanguage-Team: italiano\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\nX-Generator: KBabel 1.11.4\nPlural-Forms: nplurals=2; plural=(n != 1);\n\x00\tLink falliti:\x00\nScaricato articolo %s da %s\n%s\x00 giorni\x00 da \x00 non \xc3\xa8 un\'immagine valida\x00 non trovato\x00 pt\x00 px\x00 secondi\x00 stelle\x00%s non ha formati disponibili\x00%sUso%s: %s\n\x00&Chiave d\'accesso;\x00&Aggiungi feed\x00&Aggiungi tag:\x00A&utore(i): \x00Margine i&nferiore:\x00&Compatta database\x00&Disabilita l\'individuazione del capitoli\x00Tit&olo del feed:\x00&Forza interruzione di pagina prima del tag:\x00&Formato intestazione:\x00Margine &sinistro:\x00&Posizione del database dei libri (library1.db)\x00&Numero massimo di articoli per feed:\x00&Metadati dal nome del file\x00&Dimensione fissa:\x00Arti&colo pi\xc3\xb9 vecchio:\x00I&nterruzione di pagina prima del tag:\x00&Password:\x00&Preprocessamento:\x00Pri&orit\xc3\xa0 per i lavori di conversione:\x00&Profilo:\x00&Editore: \x00&Giudizio:\x00&Espressione regolare:\x00Rimuo&vi formula\x00&Rimuovi tag:\x00Margine &destro:\x00&Cerca:\x00&Serie:\x00&Con grazie:\x00&Mostra intestazione\x00&Mostra password\x00I&nterrompi il lavoro selezionato\x00&Test\x00&Titolo: \x00Margine s&uperiore:\x00&Nome utente:\x00Spaziat&ura caratteri:\x00...\x00<b>Le modifiche avranno effetto dopo il riavvio\x00<b>Impossibile scaricare la copertina</b><br/>\x00<b>Nessuna corrispondenza</b> trovata per la frase <i>%s</i>\x00<br>Deve essere una cartella\x00<font color="gray">Nessun aiuto disponibile</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Crea una formula di notizie di base, aggiungendo ad essa dei feed RSS. <br />Per la maggior parte dei feed, bisogner\xc3\xa0 usare la "Modalit\xc3\xa0 avanzata" per personalizzare ulteriormente il processo di scaricamento.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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;">Visitare <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a> per la guida<br /><br /><span style=" font-weight:600;">libprs500</span>: %1 di <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - File HTML0 da Book Designer</li>\x00<li><b>pdftohtml</b> - File HTML generati dal programma pdftohtml</li>\x00<ol><li><b>baen</b> - Libri dall\'editore BAEN</li>\x00<p>Esiste gi\xc3\xa0 un database non valido in %s, eliminarlo prima di provare a spostare il database esistente.<br>Errore: %s\x00<p>Nel database sono gi\xc3\xa0 presenti libri con i seguenti titoli. Aggiungerli ugualmente?<ul>\x00<p>Impossibile salvare libri sul dispositivo perch\xc3\xa9 non c\'\xc3\xa8 pi\xc3\xb9 spazio disponibile \x00<p>Impossibile creare la formula. Errore:<br>%s\x00<p>Inserire il proprio nome utente e password per <b>LibraryThing.com</b>. <br/>Se non se ne possiede uno, \xc3\xa8 possibile <a href=\'http://www.librarything.com\'>registrarsi</a> gratuitamente!</p>\x00<p>Nega questa corrispondenza. Restituisce soltanto i risultati che <b>non</b> corrispondono a questa ricerca\x00<p>Inserire il proprio nome utente e password per %s<br>Se non se ne possiede uno, sottoscriversi per avere accesso a questi articoli.<br/> Fare clic su OK per procedere.\x00<p>Impostare un modello di espressione regolare da usare nel tentativo di indovinare i metadati dei libri dal nome del file. <p>\xc3\x88 disponibile un <a href="http://docs.python.org/lib/re-syntax.html">riferimento</a> sulla sintassi delle espressioni regolari. Usare la funzionalit\xc3\xa0 <b>Test</b> sottostante per testare le proprie espressioni regolari su una serie di nomi di file di esempio.\x00<p>Si \xc3\xa8 verificato un errore nella lettura del file: <br /><b>\x00A\x00Esiste gi\xc3\xa0 una formula personalizzata di nome %s. Sovrascriverla?\x00Un\'espressione regolare. I tag <a> i cui href corrispondono verranno ignorati. Predefinita: %default\x00&Tag applicati\x00Tag &disponibili\x00Lavori attivi\x00&Aggiungi tag: \x00Aggiungi una fonte di notizie personalizzata\x00Aggiunge una cartella alla lista delle cartelle usate frequentemente\x00Aggiunge a tutte le pagine un\'intestazione contenente il titolo e l\'autore\x00Aggiungi un nuovo formato al database per questo libro\x00Aggiungi libri\x00Aggiungi libri da una singola cartella\x00Aggiungi libri ricorsivamente (pi\xc3\xb9 libri per cartella, assume che ogni file sia un libro diverso)\x00Aggiungi libri ricorsivamente (un libro per cartella, assume che ogni file sia lo stesso libro in un diverso formato)\x00Aggiungi una fonte di notizie personalizzata\x00Aggiunge il feed alla formula\x00Aggiungi il tag a quelli disponibili e applicalo al libro corrente\x00Aggiungi/Aggiorna for&mula\x00Aggiusta la visualizzazione del file LRF generato specificando parametri come la dimensione dei caratteri e la spaziatura tra le parole\x00Avanzata\x00Ricerca avanzata\x00Ricerca avanzata\x00Esiste gi\xc3\xa0\x00Alt+S\x00Qualunque\x00Applica il tag al libro corrente\x00Scaricamento fallito dell\'articolo: %s\x00Articolo scaricato: %s\x00Autore\x00&Classificazione autore: \x00Classifica&zione autore:\x00Autore(i)\x00Autori:\x00Formati disponibili\x00Formule utente disponibili\x00Indietro\x00&Grandezza caratteri di base:\x00Base\x00Sii pi\xc3\xb9 prolisso durante il processamento\x00Sii pi\xc3\xb9 prolisso\x00Libro \x00Libro <font face="serif">%s</font> di %s\x00Copertina del libro\x00Margine inferiore della pagina. Predefinito: %default px\x00Sfoglia per trovare un\'immagine da usare come copertina per questo libro\x00Sfoglia per specificare una nuova posizione del database\x00Converti in gruppo\x00Conversione in gruppo di libri in LRF\x00Impossibile configurare\x00Impossibile configurare mentre ci sono lavori in esecuzione\x00Impossibile connettersi\x00Impossibile convertire\x00Impossibile convertire %s perch\xc3\xa9 questo libro non ha formati supportati\x00Impossibile modificare i metadati\x00Impossibile scaricare la copertina\x00Impossibile terminare i lavori gi\xc3\xa0 completati\x00Impossibile terminare il lavoro\x00Impossibile terminare i lavori che stanno comunicando col dispositivo dato che potrebbe causare una corruzione dei dati\x00Impossibile terminare i lavori in attesa\x00Impossibile leggere\x00Impossibile salvare sul disco\x00Impossibile leggere\x00Scheda\n%s disponibili\x00Categoria\x00Ca&mbia l\'immagine di copertina:\x00Cambia password\x00Cambia l\'autore di questo libro. Autori multipli devono essere separati da una virgola\x00Cambia l\'editore di questo libro\x00Cambia il titolo di questo libro\x00Cambia il nome utente e/o password del proprio account su LibraryThing.com\x00Individuazione capitoli\x00Scegliere il formato\x00Scegliere il formato da convertire in LRF\x00Scegliere il formato da leggere\x00Fare clic per vedere una lista dei lavori attivi\x00Lista separata da virgole dei tag da rimuovere dal libro\x00Commenti\x00Configurazione\x00Configurazione\x00Configura visualizzatore\x00Converte %s in LRF\x00Converti libri\x00Converti individualmente\x00Converti in LRF\x00Impossibile scaricare la copertina: %s\x00Impossibile scaricare l\'articolo. Eseguire con --debug per vedere la ragione\x00Impossibile scaricare la copertina\x00Impossibile scaricare la copertina perch\xc3\xa9 il server \xc3\xa8 sovraccarico. Ritentare pi\xc3\xb9 tardi\x00Impossibile spostare il database\x00Impossibile analizzare il file: %s\x00Creato da \x00Fonti di notizie personalizzate\x00Data\x00&Timeout predefinito della rete:\x00Canc\x00Rimuovi il tag dal database. Questa operazione rimuover\xc3\xa0 il tag da tutti i libri e poi dal database\x00Dettagli del lavoro\x00Non so a cosa serve questo\x00Non mostrare la barra di progresso\x00Scaricamento completato\x00Scaricamento copertina da %s\x00Scoperti duplicati!\x00E\x00ERRORE\x00Modifica metadati\x00Modifica metadati\x00Modifica metadati\x00Modifica metadati in gruppo\x00Modifica metadati individualmente\x00Caratteri inclusi\x00Abilita &rotazione automatica delle immagini\x00Abilita la rotazione automatica delle immagini che sono pi\xc3\xb9 larghe dello schermo\x00Errore\x00Errore di comunicazione col dispositivo\x00Errore nella lettura del file\x00Errore di comunicazione col dispositivo\x00Estrae la miniatura da un file LRF\x00Scaricamento fallito dell\'articolo: %s da %s\n\x00Scaricamento dei seguenti articoli fallito parzialmente:\x00Scaricamento dei seguenti articoli fallito:\x00&URL del feed:\x00Il feed deve avere una URL\x00Il feed deve avere un titolo\x00Feed scaricati in %s\x00Feed nella formula\x00Scarica\x00Scarica immagine di copertina dal server\x00Scarica metadati\x00Scarica metadati dal server\x00Scarica notizie\x00Scarica notizie da \x00Scaricamento feed\x00Scaricamento feed...\x00Scaricamento metadati per <b>%1</b>\x00Scaricamento notizie da \x00Scaricamento della formula fallito: \x00Meno\x00&Nome file:\x00Mette a punto in modo fine l\'individuazione delle intestazioni dei capitoli e delle sezioni\x00Finito\x00Per un aiuto su come scrivere formule di notizie avanzate, visitare <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">Formule utente</a>\x00Forza un\'interruzione di pagina prima di un elemento che possiede l\'attributo specificato. Il formato per questa opzione \xc3\xa8 nometag regexp, nome attributo, valore attributo regexp. Per esempio, per far corrispondere tutti i tag intestazione che hanno l\'attributo class="chapter" bisogna usare "h\\d,class,chapter". Predefinita: %default\x00Forza un\'interruzione di pagina prima dei tag i cui nomi corrispondono a questa espressione regolare\x00Forza interruzione di pagina prima dell\'&attributo:\x00Formato\x00Formato\x00Formati\x00Avanti\x00Libera lo spazio non utilizzato dal database\x00Cartelle usate frequentemente\x00Ricevuti feed dalla pagina principale\x00Intestazione\x00Aiuto per l\'elemento\x00Unisci\x00IS&BN:\x00Se html2lrf non trova nessuna interruzione di pagina nel file HTML e non riesce a individuare le intestazioni dei capitoli, inserir\xc3\xa0 automaticamente un\'interruzione di pagina prima dei tag il cui nome corrisponde a questa espressione regolare. Predefinita: %default. \xc3\x88 possibile disabilitarla impostando la regexp a "$". Lo scopo di questa opzione \xc3\xa8 quello di provare ad assicurarsi che non ci siano pagine molto lunghe, dato che queste degradano le prestazioni dell\'LRF nel girare la pagina. Questa opzione viene perci\xc3\xb2 ignorata se la pagina corrente ha solo pochi elementi\x00Se il tag voluto non \xc3\xa8 nella lista di quelli disponibili, \xc3\xa8 possibile aggiungerlo qui. Accetta una lista di tag separati da virgola\x00Se esiste una copertina grafica individuata nel file di origine, usa quella invece della copertina specificata\x00Ignor&a colori\x00Ignora ta&belle\x00Aumenta la dimensione dei caratteri di 2 * FONT_DELTA punti e la spaziatura tra le linee di FONT_DELTA punti. FONT_DELTA pu\xc3\xb2 essere una frazione. Se FONT_DELTA \xc3\xa8 negativo, la grandezza dei caratteri verr\xc3\xa0 diminuita\x00Ins&erisci linee bianche tra i paragrafi\x00Database non valido\x00Percorso database non valido\x00Percorso database non valido \x00Percorso database non valido.<br>Impossibile scrivere su\x00Input non valido\x00Espressione regolare non valida\x00Espressione regolare non valida: %s\x00Lavoro\x00Lavoro terminato dall\'utente\x00Lavori:\x00Visualizzatore LRF\x00Margine sinistro della pagina. Predefinito: %default px\x00Biblioteca\x00Lista di serie conosciute. \xc3\x88 possibile aggiungere nuove serie\x00Visualizzazione\x00&Corrispondenza con tutti i criteri seguenti\x00C&orrispondenza con uno qualunque dei criteri seguenti\x00Corrispondenze\x00Massimo numero di articoli da scaricare per feed\x00Metadati\x00Metadati\x00Minimizza l\'uso di memoria al costo di un maggior tempo di processamento. Usare questa opzione se si \xc3\xa8 su una macchina a corto di memoria\x00I&ndentazione minima:\x00Di pi\xc3\xb9\x00Nega\x00Notizie scaricate. Salvataggio sul dispositivo\x00Pagina successiva\x00Prossima corrispondenza\x00Nessun formato disponibile\x00Nessun libro selezionato\x00Nessun libro selezionato\x00Nessuna corrispondenza\x00Nessuna corrispondenza trovata\x00Spazio insufficiente sul dispositivo\x00Nessuno\x00Numero di livelli di link da seguire nelle pagine web che sono collegate ai feed. Predefinito: %default\x00Apri l\'editor dei tag\x00Apri libro\x00Opzioni\x00Opzioni per controllare il comportamento di feeds2disk\x00Opzioni per controllare il comportamento di html2lrf\x00Opzioni per controllare web2disk (usato per scaricare i siti collegati ai feed)\x00Nome del file in uscita. Il nome predefinito \xc3\xa8 preso dal file in ingresso\x00Sovrascrive il CSS. Pu\xc3\xb2 essere un percorso ad un foglio di stile CSS o una stringa. Se \xc3\xa8 una stringa, sar\xc3\xa0 interpretata come CSS\x00Sovrascrivi<br>CSS\x00Imposta pagina\x00Analisi file LRF\x00Password per i siti che richiedono un\'identificazione per accedere ai contenuti\x00Password necessaria\x00Percorso\x00Percorso a un\'immagine che verr\xc3\xa0 impostata come miniatura di questo file\x00Percorso a un file TXT contenente il commento che verr\xc3\xa0 incluso nel file LRF\x00Percorso al file contenente l\'immagine da usare come copertina\x00Percorso della cartella in uscita dove creare il file HTML. Predefinito: cartella corrente\x00Preprocessa i file HTML di Baen per migliorare i file LRF generati\x00Preprocessa il file prima di convertirlo in LRF. \xc3\x88 utile se si conosce la fonte da cui proviene il file. Fonti conosciute:\x00Previene l\'inserimento automatico di interruzioni di pagina prima dei capitoli individuati\x00Pagina precedente\x00Profilo del dispositivo per cui viene generato questo LRF. Il profilo determina parametri come la risoluzione e la dimensione dello schermo del dispositivo. Predefinito: %s. Profili supportati: \x00Progresso\x00Editore\x00Giudizio\x00Giudizio su questo libro. 0-5 stelle\x00Lettore\n%s disponibili\x00&Titolo formula:\x00Codice sorgente formula (python)\x00&Espressione regolare\x00Nome del gruppo per l\'espressione regolare (?P<authors>)\x00Nome del gruppo per l\'espressione regolare (?P<series>)\x00Nome del gruppo per l\'espressione regolare (?P<series_index>)\x00Nome del gruppo per l\'espressione regolare (?P< title>)\x00Rimuove una cartella dalla lista delle cartelle usate frequentemente\x00Rimuovi libri\x00Rimuove il feed dalla formula\x00Rimuovi il formato selezionato dal database per questo libro\x00Rimuovi serie inutilizzate (che non hanno libri)\x00Trasforma le tabelle HTML in blocchi di testo invece che in vere tabelle.\nQuesta opzione \xc3\xa8 necessaria se il file HTML contiene tabelle molto grandi o complesse\x00Trasforma tutto il contenuto in bianco e nero al posto dei colori specificati dall\'HTML o dal CSS.\x00Sovrascrivere la formula?\x00Resetta ricerca veloce\x00Margine destro della pagina. Predefinito: %default px\x00Tempo di esecuzione\x00&Senza grazie:\x00Salva su disco\x00Salva su disco in una singola cartella\x00Cerca (Per la ricerca avanzata fare clic sul bottone a sinistra)\x00Criteri di ricerca\x00Cerca nella lista dei libri per titolo o autore<br><br>Parole separate da spazi hanno come operatore AND\x00Cerca nella lista dei libri per titolo, autore, editore, tag e commenti<br><br>Parole separate da spazi hanno come operatore AND\x00Selezionare il libro che corrisponde maggiormente alla propria copia dall\'elenco sottostante\x00&Selezionare le colonne visibili nella vista biblioteca\x00Invia al dispositivo\x00Invia alla memoria principale\x00Invia alla scheda di memoria\x00Separa i paragrafi con linee bianche\x00Serie\x00Indice serie\x00Indice serie:\x00Serie:\x00Errore del server. Ritentare pi\xc3\xb9 tardi\x00Imposta l\'ID del libro\x00Impostazioni di conversione predefinite\x00Imposta la chiave per la classificazione dell\'autore\x00Imposta la chiave per la classificazione del titolo\x00Imposta l\'autore\x00Imposta l\'autore. Autori multipli devono essere separati da una virgola. Predefinito: %default\x00Imposta il titolo del libro\x00Imposta la categoria\x00Imposta il commento\x00Imposta il timeout predefinito per gli scaricamenti dalla rete (cio\xc3\xa8 ogni volta che si usa Internet per prelevare informazioni)\x00Imposta il formato dell\'intestazione. %a verr\xc3\xa0 rimpiazzato dall\'autore e %t dal titolo. L\'impostazione predefinita \xc3\xa8 %default\x00Imposta lo spazio tra le parole in punti. Il valore predefinito \xc3\xa8 %default\x00Imposta il titolo. Predefinito: nome del file\x00Sottoscrivere un account gratuito su <a href="http://www.isbndb.com">ISBNdb.com</a> per ottenere delle chiavi d\'accesso.\x00Dimensione (MB)\x00Chiave per la classificazione dell\'autore\x00Chiave per la classificazione del titolo\x00C&odifica sorgente:\x00Specificare una lista di feed da scaricare. Per esempio: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nSe si specifica questa opzione, ogni indice per %prog viene ignorato e viene usata una formula predefinita per scaricare i feed.\x00Specifica come deve essere classificato l\'autore di questo libro. Ad esempio, Charles Dickens deve essere classificato come Dickens, Charles.\x00Specifica metadati come il titolo e l\'autore del libro.<p>I metadati saranno aggiornati nel database e nel file LRF generato\x00Specifica la dimensione del testo base in punti. Tutti i caratteri saranno scalati in accordo.\nQuesta opzione rende obsoleta l\'opzione --font-delta e ha precedenza su quest\'ultima. Per usare --font-delta, impostare questa a 0\x00Specifica le impostazioni della pagina come i margini e la dimensione dello schermo del dispositivo\x00Specifica la famiglia di caratteri truetype per i caratteri con grazie, senza grazie e a spaziatura fissa. Questi caratteri saranno inclusi nel file LRF. Si noti che i caratteri personalizzati portano a una maggiore lentezza nel girare le pagine. Ogni specificazione di famiglia \xc3\xa8 della forma: "percorso alla cartella dei caratteri, famiglia". Ad esempio: --serif-family "%s, Times New Roman"\n \x00Inizio scaricamento [%d articolo(i)]...\x00Stato\x00Passa alla modalit\xc3\xa0 avanzata\x00Passa alla modalit\xc3\xa0 base\x00T&ag: \x00Tag\x00Editor di tag\x00Individuazione basata sui tag\x00Tag\x00I tag categorizzano un libro. Questo \xc3\xa8 particolarmente utile durante le ricerche. <br>Possono essere qualsiasi parola o frase, separati da una virgola\x00Test\x00EtichettaDiTesto\x00La categoria a cui questo libro appartiene. Es: Storia\x00La cartella in cui salvare i feed scaricati. Perdefinita: cartella corrente\x00Il feed %S deve avere una URL\x00Il feed deve avere un titolo\x00Il numero massimo di livelli per processare ricorsivamente i link. Il valore 0 significa che i link non vengono seguiti. Un valore negativo significa che i tag <a> vengono ignorati\x00La famiglia di caratteri a spaziatura fissa da includere\x00L\'articolo pi\xc3\xb9 vecchio da scaricare\x00L\'espressione regolare utilizzata per individuare i titoli dei capitoli. I titoli vengono cercati nei tag d\'intestazione (H1-H6). Predefinita: %default\x00La famiglia di caratteri senza grazie da includere\x00La famiglia di caratteri con grazie da includere\x00Il testo da cercare. \xc3\x88 interpretato come un\'espressione regolare\x00Il titolo per questa formula. Usato come titolo per ogni libro creato da questi feed scaricati\x00Si \xc3\xa8 verificato un errore di comunicazione temporaneo col dispositivo. Disconnettere e riconnettere il dispositivo e/o riavviare\x00Questo feed \xc3\xa8 gi\xc3\xa0 stato aggiunto alla formula\x00Timestamp\x00Titolo\x00Individuazione basata sul titolo\x00Titolo:\x00Margine superiore della pagina. Predefinito: %default px\x00Tentativo di scaricamento della copertina...\x00Rimuovi il tag dal libro corrente\x00Non disponibile\x00Sconosciuto\x00Sorgente di notizie sconosciuta\x00Feed sconosciuto\x00Articolo senza titolo\x00Articolo senza titolo\x00&Usare numeri romani per i numeri delle serie\x00Usa copertina del file di &origine\x00Usa l\'elemento <spine> dal file OPF per determinare in quale ordine i file HTML devono essere aggiunti al file LRF. Il file OPF deve essere nella stessa cartella del file HTML principale\x00Usare questa opzione sui file html0 di Book Designer\x00Usa uno sfondo bianco\x00Utile per lo sviluppo delle formule. Forza max_articles_per_feed a 2 e scarica al massimo 2 feed\x00Nome utente per i siti che richiedono un\'identificazione per accedere ai contenuti\x00Output molto prolisso, utile per il debugging\x00Leggi\x00Leggi uno specifico formato\x00In attesa\x00In esecuzione\x00Non si hanno i permessi per leggere il file: \x00\xc3\x88 necessario aggiungere questa opzione se si stanno processando file generati da pdftohtml, altrimenti la conversione non riuscir\xc3\xa0\x00\xc3\x88 necessario specificare un singolo file PDF\x00\xc3\x88 necessario specificare delle chiavi d\'accesso valide per isbndb.com\x00\xc3\x88 necessario specificare il codice ISBN di questo libro\x00contiene\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: 2008-03-31 15:53+PDT\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', 'es': '\xde\x12\x04\x95\x00\x00\x00\x00\xa1\x01\x00\x00\x1c\x00\x00\x00$\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x1a\x00\x00\x0e\x00\x00\x00-\x1a\x00\x00!\x00\x00\x00<\x1a\x00\x00\x05\x00\x00\x00^\x1a\x00\x00\x06\x00\x00\x00d\x1a\x00\x00\x17\x00\x00\x00k\x1a\x00\x00\x0b\x00\x00\x00\x83\x1a\x00\x00\x04\x00\x00\x00\x8f\x1a\x00\x00\x03\x00\x00\x00\x94\x1a\x00\x00\x08\x00\x00\x00\x98\x1a\x00\x00\x06\x00\x00\x00\xa1\x1a\x00\x00\x1c\x00\x00\x00\xa8\x1a\x00\x00\x0e\x00\x00\x00\xc5\x1a\x00\x00\x0c\x00\x00\x00\xd4\x1a\x00\x00\t\x00\x00\x00\xe1\x1a\x00\x00\t\x00\x00\x00\xeb\x1a\x00\x00\x0c\x00\x00\x00\xf5\x1a\x00\x00\x0f\x00\x00\x00\x02\x1b\x00\x00\x11\x00\x00\x00\x12\x1b\x00\x00\x1a\x00\x00\x00$\x1b\x00\x00\x0c\x00\x00\x00?\x1b\x00\x00\x1d\x00\x00\x00L\x1b\x00\x00\x0f\x00\x00\x00j\x1b\x00\x00\r\x00\x00\x00z\x1b\x00\x00)\x00\x00\x00\x88\x1b\x00\x00"\x00\x00\x00\xb2\x1b\x00\x00\x18\x00\x00\x00\xd5\x1b\x00\x00\x0b\x00\x00\x00\xee\x1b\x00\x00\x10\x00\x00\x00\xfa\x1b\x00\x00\x17\x00\x00\x00\x0b\x1c\x00\x00\n\x00\x00\x00#\x1c\x00\x00\x0c\x00\x00\x00.\x1c\x00\x00\x1e\x00\x00\x00;\x1c\x00\x00\t\x00\x00\x00Z\x1c\x00\x00\x0c\x00\x00\x00d\x1c\x00\x00\x08\x00\x00\x00q\x1c\x00\x00\x14\x00\x00\x00z\x1c\x00\x00\x0e\x00\x00\x00\x8f\x1c\x00\x00\r\x00\x00\x00\x9e\x1c\x00\x00\x0e\x00\x00\x00\xac\x1c\x00\x00\x08\x00\x00\x00\xbb\x1c\x00\x00\x08\x00\x00\x00\xc4\x1c\x00\x00\x07\x00\x00\x00\xcd\x1c\x00\x00\x0c\x00\x00\x00\xd5\x1c\x00\x00\x0e\x00\x00\x00\xe2\x1c\x00\x00\x12\x00\x00\x00\xf1\x1c\x00\x00\x05\x00\x00\x00\x04\x1d\x00\x00\x08\x00\x00\x00\n\x1d\x00\x00\x0c\x00\x00\x00\x13\x1d\x00\x00\n\x00\x00\x00 \x1d\x00\x00\x0e\x00\x00\x00+\x1d\x00\x00\x03\x00\x00\x00:\x1d\x00\x001\x00\x00\x00>\x1d\x00\x00"\x00\x00\x00p\x1d\x00\x00=\x00\x00\x00\x93\x1d\x00\x00\x18\x00\x00\x00\xd1\x1d\x00\x00+\x00\x00\x00\xea\x1d\x00\x00\x00\x02\x00\x00\x16\x1e\x00\x00\xa3\x01\x00\x00\x17 \x00\x00\x82\x02\x00\x00\xbb!\x00\x00>\x00\x00\x00>$\x00\x00S\x00\x00\x00}$\x00\x005\x00\x00\x00\xd1$\x00\x00p\x00\x00\x00\x07%\x00\x00a\x00\x00\x00x%\x00\x00G\x00\x00\x00\xda%\x00\x00(\x00\x00\x00"&\x00\x00\xa7\x00\x00\x00K&\x00\x00W\x00\x00\x00\xf3&\x00\x00\x96\x00\x00\x00K\'\x00\x00=\x01\x00\x00\xe2\'\x00\x002\x00\x00\x00 )\x00\x00\x01\x00\x00\x00S)\x00\x00C\x00\x00\x00U)\x00\x00X\x00\x00\x00\x99)\x00\x00\r\x00\x00\x00\xf2)\x00\x00\x0f\x00\x00\x00\x00*\x00\x00\x0b\x00\x00\x00\x10*\x00\x00\x0b\x00\x00\x00\x1c*\x00\x00\x18\x00\x00\x00(*\x00\x007\x00\x00\x00A*\x00\x004\x00\x00\x00y*\x00\x00.\x00\x00\x00\xae*\x00\x00\t\x00\x00\x00\xdd*\x00\x00!\x00\x00\x00\xe7*\x00\x00b\x00\x00\x00\t+\x00\x00o\x00\x00\x00l+\x00\x00\x16\x00\x00\x00\xdc+\x00\x00\x12\x00\x00\x00\xf3+\x00\x006\x00\x00\x00\x06,\x00\x00\x12\x00\x00\x00=,\x00\x00m\x00\x00\x00P,\x00\x00\x08\x00\x00\x00\xbe,\x00\x00\x0f\x00\x00\x00\xc7,\x00\x00\x0f\x00\x00\x00\xd7,\x00\x00\x0e\x00\x00\x00\xe7,\x00\x00\x05\x00\x00\x00\xf6,\x00\x00\x03\x00\x00\x00\xfc,\x00\x00\x19\x00\x00\x00\x00-\x00\x00\x1b\x00\x00\x00\x1a-\x00\x00\x16\x00\x00\x006-\x00\x00\x06\x00\x00\x00M-\x00\x00\x0e\x00\x00\x00T-\x00\x00\r\x00\x00\x00c-\x00\x00\t\x00\x00\x00q-\x00\x00\x08\x00\x00\x00{-\x00\x00\x11\x00\x00\x00\x84-\x00\x00\x16\x00\x00\x00\x96-\x00\x00\x04\x00\x00\x00\xad-\x00\x00\x10\x00\x00\x00\xb2-\x00\x00\x05\x00\x00\x00\xc3-\x00\x00!\x00\x00\x00\xc9-\x00\x00\x10\x00\x00\x00\xeb-\x00\x00\x05\x00\x00\x00\xfc-\x00\x00(\x00\x00\x00\x02.\x00\x00\n\x00\x00\x00+.\x00\x00.\x00\x00\x006.\x00\x005\x00\x00\x00e.\x00\x00$\x00\x00\x00\x9b.\x00\x00\x0c\x00\x00\x00\xc0.\x00\x00\x1a\x00\x00\x00\xcd.\x00\x00\x10\x00\x00\x00\xe8.\x00\x00.\x00\x00\x00\xf9.\x00\x00\x0e\x00\x00\x00(/\x00\x00\x0e\x00\x00\x007/\x00\x007\x00\x00\x00F/\x00\x00\x14\x00\x00\x00~/\x00\x00\x12\x00\x00\x00\x93/\x00\x00#\x00\x00\x00\xa6/\x00\x00\x0f\x00\x00\x00\xca/\x00\x00Z\x00\x00\x00\xda/\x00\x00\x19\x00\x00\x0050\x00\x00\x0b\x00\x00\x00O0\x00\x00\x13\x00\x00\x00[0\x00\x00\x0b\x00\x00\x00o0\x00\x00\x11\x00\x00\x00{0\x00\x00\x08\x00\x00\x00\x8d0\x00\x00\x14\x00\x00\x00\x960\x00\x00\x0f\x00\x00\x00\xab0\x00\x00R\x00\x00\x00\xbb0\x00\x00!\x00\x00\x00\x0e1\x00\x00\x1d\x00\x00\x0001\x00\x00H\x00\x00\x00N1\x00\x00\x11\x00\x00\x00\x971\x00\x00\r\x00\x00\x00\xa91\x00\x00%\x00\x00\x00\xb71\x00\x00\x19\x00\x00\x00\xdd1\x00\x00!\x00\x00\x00\xf71\x00\x007\x00\x00\x00\x192\x00\x00\x08\x00\x00\x00Q2\x00\x00\r\x00\x00\x00Z2\x00\x00\t\x00\x00\x00h2\x00\x00\x10\x00\x00\x00r2\x00\x00\x11\x00\x00\x00\x832\x00\x00\x0f\x00\x00\x00\x952\x00\x00\x14\x00\x00\x00\xa52\x00\x00\x0e\x00\x00\x00\xba2\x00\x00\x1c\x00\x00\x00\xc92\x00\x00;\x00\x00\x00\xe62\x00\x00\x15\x00\x00\x00"3\x00\x00R\x00\x00\x0083\x00\x00\x17\x00\x00\x00\x8b3\x00\x00\x18\x00\x00\x00\xa33\x00\x00\x0b\x00\x00\x00\xbc3\x00\x00\x13\x00\x00\x00\xc83\x00\x00\x04\x00\x00\x00\xdc3\x00\x00\x19\x00\x00\x00\xe13\x00\x00\x03\x00\x00\x00\xfb3\x00\x00h\x00\x00\x00\xff3\x00\x00\x0e\x00\x00\x00h4\x00\x00\x1b\x00\x00\x00w4\x00\x00\x1a\x00\x00\x00\x934\x00\x00\x11\x00\x00\x00\xae4\x00\x00\x19\x00\x00\x00\xc04\x00\x00\x11\x00\x00\x00\xda4\x00\x00\x01\x00\x00\x00\xec4\x00\x00\x05\x00\x00\x00\xee4\x00\x00\x15\x00\x00\x00\xf44\x00\x00\x15\x00\x00\x00\n5\x00\x00\x15\x00\x00\x00 5\x00\x00\x15\x00\x00\x0065\x00\x00\x1a\x00\x00\x00L5\x00\x00\x0e\x00\x00\x00g5\x00\x00\x1f\x00\x00\x00v5\x00\x00C\x00\x00\x00\x965\x00\x00\x05\x00\x00\x00\xda5\x00\x00\x1f\x00\x00\x00\xe05\x00\x00\x12\x00\x00\x00\x006\x00\x00\x17\x00\x00\x00\x136\x00\x00\x1f\x00\x00\x00+6\x00\x00\'\x00\x00\x00K6\x00\x003\x00\x00\x00s6\x00\x00*\x00\x00\x00\xa76\x00\x00\n\x00\x00\x00\xd26\x00\x00\x14\x00\x00\x00\xdd6\x00\x00\x16\x00\x00\x00\xf26\x00\x00\x16\x00\x00\x00\t7\x00\x00\x0f\x00\x00\x00 7\x00\x00\x05\x00\x00\x0007\x00\x00\x1d\x00\x00\x0067\x00\x00\x0e\x00\x00\x00T7\x00\x00\x1a\x00\x00\x00c7\x00\x00\n\x00\x00\x00~7\x00\x00\x10\x00\x00\x00\x897\x00\x00\r\x00\x00\x00\x9a7\x00\x00\x11\x00\x00\x00\xa87\x00\x00\x1f\x00\x00\x00\xba7\x00\x00\x13\x00\x00\x00\xda7\x00\x00\x1b\x00\x00\x00\xee7\x00\x00\x05\x00\x00\x00\n8\x00\x00\x0b\x00\x00\x00\x108\x00\x008\x00\x00\x00\x1c8\x00\x00\x08\x00\x00\x00U8\x00\x00\x8a\x00\x00\x00^8\x00\x00\x1d\x01\x00\x00\xe98\x00\x00J\x00\x00\x00\x07:\x00\x00#\x00\x00\x00R:\x00\x00\x04\x00\x00\x00v:\x00\x00\x06\x00\x00\x00{:\x00\x00\x07\x00\x00\x00\x82:\x00\x00\x07\x00\x00\x00\x8a:\x00\x00\'\x00\x00\x00\x92:\x00\x00\x1b\x00\x00\x00\xba:\x00\x00\x19\x00\x00\x00\xd6:\x00\x00\x06\x00\x00\x00\xf0:\x00\x00\x0c\x00\x00\x00\xf7:\x00\x00\t\x00\x00\x00\x04;\x00\x00\x06\x00\x00\x00\x0e;\x00\x00\xdc\x01\x00\x00\x15;\x00\x00n\x00\x00\x00\xf2<\x00\x00a\x00\x00\x00a=\x00\x00\x0e\x00\x00\x00\xc3=\x00\x00\x0e\x00\x00\x00\xd2=\x00\x00\xa8\x00\x00\x00\xe1=\x00\x00&\x00\x00\x00\x8a>\x00\x00\x10\x00\x00\x00\xb1>\x00\x00\x19\x00\x00\x00\xc2>\x00\x00\x1a\x00\x00\x00\xdc>\x00\x00.\x00\x00\x00\xf7>\x00\x00\r\x00\x00\x00&?\x00\x00\x1a\x00\x00\x004?\x00\x00\x1e\x00\x00\x00O?\x00\x00\x03\x00\x00\x00n?\x00\x00\x12\x00\x00\x00r?\x00\x00\x05\x00\x00\x00\x85?\x00\x00\n\x00\x00\x00\x8b?\x00\x00,\x00\x00\x00\x96?\x00\x00\x07\x00\x00\x00\xc3?\x00\x00-\x00\x00\x00\xcb?\x00\x00\x0b\x00\x00\x00\xf9?\x00\x00$\x00\x00\x00\x05@\x00\x00$\x00\x00\x00*@\x00\x00\x07\x00\x00\x00O@\x00\x000\x00\x00\x00W@\x00\x00\x10\x00\x00\x00\x88@\x00\x00\x08\x00\x00\x00\x99@\x00\x00y\x00\x00\x00\xa2@\x00\x00\x10\x00\x00\x00\x1cA\x00\x00\x04\x00\x00\x00-A\x00\x00\x06\x00\x00\x002A\x00\x00"\x00\x00\x009A\x00\x00\t\x00\x00\x00\\A\x00\x00\n\x00\x00\x00fA\x00\x00\x14\x00\x00\x00qA\x00\x00\x10\x00\x00\x00\x86A\x00\x00\x11\x00\x00\x00\x97A\x00\x00\x08\x00\x00\x00\xa9A\x00\x00\x10\x00\x00\x00\xb2A\x00\x00\x12\x00\x00\x00\xc3A\x00\x00\x04\x00\x00\x00\xd6A\x00\x00^\x00\x00\x00\xdbA\x00\x00\x0f\x00\x00\x00:B\x00\x00\n\x00\x00\x00JB\x00\x00\x07\x00\x00\x00UB\x00\x00-\x00\x00\x00]B\x00\x00+\x00\x00\x00\x8bB\x00\x00F\x00\x00\x00\xb7B\x00\x008\x00\x00\x00\xfeB\x00\x00s\x00\x00\x007C\x00\x00\x0f\x00\x00\x00\xabC\x00\x00\n\x00\x00\x00\xbbC\x00\x00\x10\x00\x00\x00\xc6C\x00\x00:\x00\x00\x00\xd7C\x00\x00\x0f\x00\x00\x00\x12D\x00\x00\x04\x00\x00\x00"D\x00\x00;\x00\x00\x00\'D\x00\x00G\x00\x00\x00cD\x00\x001\x00\x00\x00\xabD\x00\x00Y\x00\x00\x00\xddD\x00\x004\x00\x00\x007E\x00\x00\x80\x00\x00\x00lE\x00\x00H\x00\x00\x00\xedE\x00\x00\r\x00\x00\x006F\x00\x00\xbc\x00\x00\x00DF\x00\x00\x08\x00\x00\x00\x01G\x00\x00\t\x00\x00\x00\nG\x00\x00\x06\x00\x00\x00\x14G\x00\x00\x1e\x00\x00\x00\x1bG\x00\x00\x13\x00\x00\x00:G\x00\x00\x0e\x00\x00\x00NG\x00\x00\x1b\x00\x00\x00]G\x00\x00\x13\x00\x00\x00yG\x00\x00+\x00\x00\x00\x8dG\x00\x00*\x00\x00\x00\xb9G\x00\x000\x00\x00\x00\xe4G\x00\x00)\x00\x00\x00\x15H\x00\x00<\x00\x00\x00?H\x00\x00\x0c\x00\x00\x00|H\x00\x00\x17\x00\x00\x00\x89H\x00\x00<\x00\x00\x00\xa1H\x00\x000\x00\x00\x00\xdeH\x00\x00\x84\x00\x00\x00\x0fI\x00\x00X\x00\x00\x00\x94I\x00\x00\x0f\x00\x00\x00\xedI\x00\x00\x12\x00\x00\x00\xfdI\x00\x00-\x00\x00\x00\x10J\x00\x00\x0c\x00\x00\x00>J\x00\x00\x0c\x00\x00\x00KJ\x00\x00\x0c\x00\x00\x00XJ\x00\x00"\x00\x00\x00eJ\x00\x009\x00\x00\x00\x88J\x00\x00\x0f\x00\x00\x00\xc2J\x00\x00V\x00\x00\x00\xd2J\x00\x00r\x00\x00\x00)K\x00\x00G\x00\x00\x00\x9cK\x00\x00\'\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00\x0cL\x00\x00\x13\x00\x00\x00\x1bL\x00\x00\x14\x00\x00\x00/L\x00\x00#\x00\x00\x00DL\x00\x00\x06\x00\x00\x00hL\x00\x00\r\x00\x00\x00oL\x00\x00\r\x00\x00\x00}L\x00\x00\x07\x00\x00\x00\x8bL\x00\x00\x1e\x00\x00\x00\x93L\x00\x00\x0b\x00\x00\x00\xb2L\x00\x00\x17\x00\x00\x00\xbeL\x00\x00\x1b\x00\x00\x00\xd6L\x00\x00\x1a\x00\x00\x00\xf2L\x00\x00\x0e\x00\x00\x00\rM\x00\x00^\x00\x00\x00\x1cM\x00\x00\x12\x00\x00\x00{M\x00\x00\x10\x00\x00\x00\x8eM\x00\x00\x10\x00\x00\x00\x9fM\x00\x00g\x00\x00\x00\xb0M\x00\x00c\x00\x00\x00\x18N\x00\x007\x00\x00\x00|N\x00\x00!\x00\x00\x00\xb4N\x00\x00d\x00\x00\x00\xd6N\x00\x00\t\x00\x00\x00;O\x00\x00\x17\x00\x00\x00EO\x00\x00\x16\x00\x00\x00]O\x00\x00\x11\x00\x00\x00tO\x00\x00\x04\x01\x00\x00\x86O\x00\x00z\x00\x00\x00\x8bP\x00\x00\x85\x00\x00\x00\x06Q\x00\x00\xb6\x00\x00\x00\x8cQ\x00\x00P\x00\x00\x00CR\x00\x00+\x01\x00\x00\x94R\x00\x00#\x00\x00\x00\xc0S\x00\x00\x06\x00\x00\x00\xe4S\x00\x00\x17\x00\x00\x00\xebS\x00\x00\x14\x00\x00\x00\x03T\x00\x00\x07\x00\x00\x00\x18T\x00\x00\x03\x00\x00\x00 T\x00\x00\n\x00\x00\x00$T\x00\x00\x13\x00\x00\x00/T\x00\x00\x04\x00\x00\x00CT\x00\x00\x85\x00\x00\x00HT\x00\x00\x04\x00\x00\x00\xceT\x00\x00\t\x00\x00\x00\xd3T\x00\x000\x00\x00\x00\xddT\x00\x00X\x00\x00\x00\x0eU\x00\x00\x1b\x00\x00\x00gU\x00\x00\x1a\x00\x00\x00\x83U\x00\x00\x9d\x00\x00\x00\x9eU\x00\x00&\x00\x00\x00<V\x00\x00\x1e\x00\x00\x00cV\x00\x00v\x00\x00\x00\x82V\x00\x00\'\x00\x00\x00\xf9V\x00\x00"\x00\x00\x00!W\x00\x00B\x00\x00\x00DW\x00\x00^\x00\x00\x00\x87W\x00\x00h\x00\x00\x00\xe6W\x00\x00.\x00\x00\x00OX\x00\x00\t\x00\x00\x00~X\x00\x00\x05\x00\x00\x00\x88X\x00\x00\x15\x00\x00\x00\x8eX\x00\x00\x06\x00\x00\x00\xa4X\x00\x00+\x00\x00\x00\xabX\x00\x00\x1b\x00\x00\x00\xd7X\x00\x00&\x00\x00\x00\xf3X\x00\x00\x0b\x00\x00\x00\x1aY\x00\x00\x07\x00\x00\x00&Y\x00\x00\x13\x00\x00\x00.Y\x00\x00\x0c\x00\x00\x00BY\x00\x00\x10\x00\x00\x00OY\x00\x00\x10\x00\x00\x00`Y\x00\x00%\x00\x00\x00qY\x00\x00\x1b\x00\x00\x00\x97Y\x00\x00\xb4\x00\x00\x00\xb3Y\x00\x002\x00\x00\x00hZ\x00\x00\x14\x00\x00\x00\x9bZ\x00\x00_\x00\x00\x00\xb0Z\x00\x00:\x00\x00\x00\x10[\x00\x00*\x00\x00\x00K[\x00\x00\x04\x00\x00\x00v[\x00\x00\x14\x00\x00\x00{[\x00\x00\x07\x00\x00\x00\x90[\x00\x00\x07\x00\x00\x00\x98[\x00\x00-\x00\x00\x00\xa0[\x00\x00d\x00\x00\x00\xce[\x00\x00#\x00\x00\x003\\\x00\x002\x00\x00\x00W\\\x00\x003\x00\x00\x00\x8a\\\x00\x00\x08\x00\x00\x00\xbe\\\x00\x00\t\x00\x00\x00\xc7\\\x00\x00%\x01\x00\x00\xd1\\\x00\x00 \x00\x00\x00\xf7]\x00\x00\x1d\x00\x00\x00\x18^\x00\x00\x05\x00\x00\x006^\x00\x00\x04\x00\x00\x00<^\x00\x00\x19\x00\x00\x00A^\x00\x00\r\x00\x00\x00[^\x00\x00\x07\x00\x00\x00i^\x00\x00\t\x00\x00\x00q^\x00\x00\t\x00\x00\x00{^\x00\x00\n\x00\x00\x00\x85^\x00\x00"\x00\x00\x00\x90^\x00\x00\x12\x00\x00\x00\xb3^\x00\x00\x11\x00\x00\x00\xc6^\x00\x00\x0e\x00\x00\x00\xd8^\x00\x00\x0f\x00\x00\x00\xe7^\x00\x00\x0b\x00\x00\x00\xf7^\x00\x00\x11\x00\x00\x00\x03_\x00\x00\x15\x00\x00\x00\x15_\x00\x00$\x00\x00\x00+_\x00\x00\x0c\x00\x00\x00P_\x00\x000\x00\x00\x00]_\x00\x00\x18\x00\x00\x00\x8e_\x00\x00\x12\x00\x00\x00\xa7_\x00\x00-\x00\x00\x00\xba_\x00\x00&\x00\x00\x00\xe8_\x00\x00\x1e\x00\x00\x00\x0f`\x00\x00\x0b\x00\x00\x00.`\x00\x00\x13\x00\x00\x00:`\x00\x001\x00\x00\x00N`\x00\x00\r\x00\x00\x00\x80`\x00\x00\x12\x00\x00\x00\x8e`\x00\x00+\x00\x00\x00\xa1`\x00\x00\x08\x00\x00\x00\xcd`\x00\x00\x0b\x00\x00\x00\xd6`\x00\x00\r\x00\x00\x00\xe2`\x00\x00\x14\x00\x00\x00\xf0`\x00\x00\x11\x00\x00\x00\x05a\x00\x00\x1a\x00\x00\x00\x17a\x00\x00\x10\x00\x00\x002a\x00\x00\x08\x00\x00\x00Ca\x00\x00\x08\x00\x00\x00La\x00\x00\x07\x00\x00\x00Ua\x00\x00\x13\x00\x00\x00]a\x00\x00\x18\x00\x00\x00qa\x00\x00\x1e\x00\x00\x00\x8aa\x00\x00\x05\x00\x00\x00\xa9a\x00\x00\t\x00\x00\x00\xafa\x00\x00\x11\x00\x00\x00\xb9a\x00\x00\t\x00\x00\x00\xcba\x00\x00\x17\x00\x00\x00\xd5a\x00\x00\x03\x00\x00\x00\xeda\x00\x00/\x00\x00\x00\xf1a\x00\x00-\x00\x00\x00!b\x00\x00;\x00\x00\x00Ob\x00\x00\x1b\x00\x00\x00\x8bb\x00\x00-\x00\x00\x00\xa7b\x00\x00M\x02\x00\x00\xd5b\x00\x00\xa3\x01\x00\x00#e\x00\x00\x8c\x02\x00\x00\xc7f\x00\x00?\x00\x00\x00Ti\x00\x00K\x00\x00\x00\x94i\x00\x004\x00\x00\x00\xe0i\x00\x00\x8f\x00\x00\x00\x15j\x00\x00j\x00\x00\x00\xa5j\x00\x00K\x00\x00\x00\x10k\x00\x00/\x00\x00\x00\\k\x00\x00\xd5\x00\x00\x00\x8ck\x00\x00\x7f\x00\x00\x00bl\x00\x00\xcd\x00\x00\x00\xe2l\x00\x00\xa4\x01\x00\x00\xb0m\x00\x00.\x00\x00\x00Uo\x00\x00\x01\x00\x00\x00\x84o\x00\x00M\x00\x00\x00\x86o\x00\x00e\x00\x00\x00\xd4o\x00\x00\n\x00\x00\x00:p\x00\x00\x16\x00\x00\x00Ep\x00\x00\x10\x00\x00\x00\\p\x00\x00\x18\x00\x00\x00mp\x00\x00/\x00\x00\x00\x86p\x00\x007\x00\x00\x00\xb6p\x00\x00H\x00\x00\x00\xeep\x00\x00<\x00\x00\x007q\x00\x00\x0e\x00\x00\x00tq\x00\x003\x00\x00\x00\x83q\x00\x00}\x00\x00\x00\xb7q\x00\x00\x98\x00\x00\x005r\x00\x00$\x00\x00\x00\xcer\x00\x00\x1b\x00\x00\x00\xf3r\x00\x00M\x00\x00\x00\x0fs\x00\x00"\x00\x00\x00]s\x00\x00r\x00\x00\x00\x80s\x00\x00\t\x00\x00\x00\xf3s\x00\x00\x10\x00\x00\x00\xfds\x00\x00\x10\x00\x00\x00\x0et\x00\x00\x10\x00\x00\x00\x1ft\x00\x00\x05\x00\x00\x000t\x00\x00\t\x00\x00\x006t\x00\x00\'\x00\x00\x00@t\x00\x00!\x00\x00\x00ht\x00\x00\x13\x00\x00\x00\x8at\x00\x00\x05\x00\x00\x00\x9et\x00\x00\x11\x00\x00\x00\xa4t\x00\x00\x12\x00\x00\x00\xb6t\x00\x00\t\x00\x00\x00\xc9t\x00\x00\x08\x00\x00\x00\xd3t\x00\x00\x14\x00\x00\x00\xdct\x00\x00\x1c\x00\x00\x00\xf1t\x00\x00\x06\x00\x00\x00\x0eu\x00\x00\x1b\x00\x00\x00\x15u\x00\x00\x07\x00\x00\x001u\x00\x003\x00\x00\x009u\x00\x00\x16\x00\x00\x00mu\x00\x00\x06\x00\x00\x00\x84u\x00\x00)\x00\x00\x00\x8bu\x00\x00\x07\x00\x00\x00\xb5u\x00\x008\x00\x00\x00\xbdu\x00\x00;\x00\x00\x00\xf6u\x00\x001\x00\x00\x002v\x00\x00\x13\x00\x00\x00dv\x00\x00%\x00\x00\x00xv\x00\x00\x16\x00\x00\x00\x9ev\x00\x00/\x00\x00\x00\xb5v\x00\x00\x14\x00\x00\x00\xe5v\x00\x00\x15\x00\x00\x00\xfav\x00\x00=\x00\x00\x00\x10w\x00\x00!\x00\x00\x00Nw\x00\x00 \x00\x00\x00pw\x00\x005\x00\x00\x00\x91w\x00\x00\x1d\x00\x00\x00\xc7w\x00\x00g\x00\x00\x00\xe5w\x00\x00-\x00\x00\x00Mx\x00\x00\x10\x00\x00\x00{x\x00\x00\x1c\x00\x00\x00\x8cx\x00\x00\x16\x00\x00\x00\xa9x\x00\x00\x15\x00\x00\x00\xc0x\x00\x00\n\x00\x00\x00\xd6x\x00\x00\x1d\x00\x00\x00\xe1x\x00\x00\x17\x00\x00\x00\xffx\x00\x00S\x00\x00\x00\x17y\x00\x00\x1d\x00\x00\x00ky\x00\x00\x1c\x00\x00\x00\x89y\x00\x00V\x00\x00\x00\xa6y\x00\x00\x18\x00\x00\x00\xfdy\x00\x00\x0e\x00\x00\x00\x16z\x00\x00#\x00\x00\x00%z\x00\x00\x1b\x00\x00\x00Iz\x00\x00&\x00\x00\x00ez\x00\x00E\x00\x00\x00\x8cz\x00\x00\x0b\x00\x00\x00\xd2z\x00\x00\x0e\x00\x00\x00\xdez\x00\x00\n\x00\x00\x00\xedz\x00\x00\x13\x00\x00\x00\xf8z\x00\x00\x12\x00\x00\x00\x0c{\x00\x00\x10\x00\x00\x00\x1f{\x00\x00\x19\x00\x00\x000{\x00\x00\x0f\x00\x00\x00J{\x00\x00#\x00\x00\x00Z{\x00\x00W\x00\x00\x00~{\x00\x00!\x00\x00\x00\xd6{\x00\x00}\x00\x00\x00\xf8{\x00\x00"\x00\x00\x00v|\x00\x00"\x00\x00\x00\x99|\x00\x00\x0b\x00\x00\x00\xbc|\x00\x00\x1f\x00\x00\x00\xc8|\x00\x00\x05\x00\x00\x00\xe8|\x00\x002\x00\x00\x00\xee|\x00\x00\x06\x00\x00\x00!}\x00\x00\x8f\x00\x00\x00(}\x00\x00\x14\x00\x00\x00\xb8}\x00\x00\x1b\x00\x00\x00\xcd}\x00\x00!\x00\x00\x00\xe9}\x00\x00\x10\x00\x00\x00\x0b~\x00\x00\x18\x00\x00\x00\x1c~\x00\x00#\x00\x00\x005~\x00\x00\x01\x00\x00\x00Y~\x00\x00\x05\x00\x00\x00[~\x00\x00\x18\x00\x00\x00a~\x00\x00\x18\x00\x00\x00z~\x00\x00\x1b\x00\x00\x00\x93~\x00\x00\x19\x00\x00\x00\xaf~\x00\x00 \x00\x00\x00\xc9~\x00\x00\x13\x00\x00\x00\xea~\x00\x00-\x00\x00\x00\xfe~\x00\x00V\x00\x00\x00,\x7f\x00\x00\x06\x00\x00\x00\x83\x7f\x00\x00,\x00\x00\x00\x8a\x7f\x00\x00\x15\x00\x00\x00\xb7\x7f\x00\x00)\x00\x00\x00\xcd\x7f\x00\x00$\x00\x00\x00\xf7\x7f\x00\x00,\x00\x00\x00\x1c\x80\x00\x00:\x00\x00\x00I\x80\x00\x00/\x00\x00\x00\x84\x80\x00\x00\n\x00\x00\x00\xb4\x80\x00\x00\x17\x00\x00\x00\xbf\x80\x00\x00\x1a\x00\x00\x00\xd7\x80\x00\x00$\x00\x00\x00\xf2\x80\x00\x00\x11\x00\x00\x00\x17\x81\x00\x00\x06\x00\x00\x00)\x81\x00\x00\x1d\x00\x00\x000\x81\x00\x00\x10\x00\x00\x00N\x81\x00\x00\x1f\x00\x00\x00_\x81\x00\x00\x18\x00\x00\x00\x7f\x81\x00\x00\x17\x00\x00\x00\x98\x81\x00\x00\x0c\x00\x00\x00\xb0\x81\x00\x00\x10\x00\x00\x00\xbd\x81\x00\x00!\x00\x00\x00\xce\x81\x00\x00\x17\x00\x00\x00\xf0\x81\x00\x00\x1d\x00\x00\x00\x08\x82\x00\x00\x07\x00\x00\x00&\x82\x00\x00\x0b\x00\x00\x00.\x82\x00\x00/\x00\x00\x00:\x82\x00\x00\x06\x00\x00\x00j\x82\x00\x00\xc3\x00\x00\x00q\x82\x00\x00"\x01\x00\x005\x83\x00\x00^\x00\x00\x00X\x84\x00\x001\x00\x00\x00\xb7\x84\x00\x00\x03\x00\x00\x00\xe9\x84\x00\x00\x07\x00\x00\x00\xed\x84\x00\x00\x08\x00\x00\x00\xf5\x84\x00\x00\t\x00\x00\x00\xfe\x84\x00\x004\x00\x00\x00\x08\x85\x00\x00!\x00\x00\x00=\x85\x00\x00\x1e\x00\x00\x00_\x85\x00\x00\n\x00\x00\x00~\x85\x00\x00\x12\x00\x00\x00\x89\x85\x00\x00\x16\x00\x00\x00\x9c\x85\x00\x00\x06\x00\x00\x00\xb3\x85\x00\x00\xe2\x01\x00\x00\xba\x85\x00\x00\x8f\x00\x00\x00\x9d\x87\x00\x00r\x00\x00\x00-\x88\x00\x00\x16\x00\x00\x00\xa0\x88\x00\x00\x12\x00\x00\x00\xb7\x88\x00\x00\xc7\x00\x00\x00\xca\x88\x00\x00*\x00\x00\x00\x92\x89\x00\x00\x19\x00\x00\x00\xbd\x89\x00\x00\x15\x00\x00\x00\xd7\x89\x00\x00\x15\x00\x00\x00\xed\x89\x00\x000\x00\x00\x00\x03\x8a\x00\x00\x12\x00\x00\x004\x8a\x00\x00\x1f\x00\x00\x00G\x8a\x00\x00#\x00\x00\x00g\x8a\x00\x00\x07\x00\x00\x00\x8b\x8a\x00\x00"\x00\x00\x00\x93\x8a\x00\x00\t\x00\x00\x00\xb6\x8a\x00\x00\t\x00\x00\x00\xc0\x8a\x00\x009\x00\x00\x00\xca\x8a\x00\x00\n\x00\x00\x00\x04\x8b\x00\x00<\x00\x00\x00\x0f\x8b\x00\x00\n\x00\x00\x00L\x8b\x00\x003\x00\x00\x00W\x8b\x00\x009\x00\x00\x00\x8b\x8b\x00\x00\r\x00\x00\x00\xc5\x8b\x00\x001\x00\x00\x00\xd3\x8b\x00\x00\x11\x00\x00\x00\x05\x8c\x00\x00\t\x00\x00\x00\x17\x8c\x00\x00|\x00\x00\x00!\x8c\x00\x00\x17\x00\x00\x00\x9e\x8c\x00\x00\x04\x00\x00\x00\xb6\x8c\x00\x00\n\x00\x00\x00\xbb\x8c\x00\x006\x00\x00\x00\xc6\x8c\x00\x00\x11\x00\x00\x00\xfd\x8c\x00\x00\x16\x00\x00\x00\x0f\x8d\x00\x00\x17\x00\x00\x00&\x8d\x00\x00\x13\x00\x00\x00>\x8d\x00\x00\x1b\x00\x00\x00R\x8d\x00\x00\x0c\x00\x00\x00n\x8d\x00\x00"\x00\x00\x00{\x8d\x00\x00 \x00\x00\x00\x9e\x8d\x00\x00\x07\x00\x00\x00\xbf\x8d\x00\x00_\x00\x00\x00\xc7\x8d\x00\x00\x1e\x00\x00\x00\'\x8e\x00\x00\x0b\x00\x00\x00F\x8e\x00\x00\x08\x00\x00\x00R\x8e\x00\x00\x1d\x00\x00\x00[\x8e\x00\x00\x1b\x00\x00\x00y\x8e\x00\x00H\x00\x00\x00\x95\x8e\x00\x00K\x00\x00\x00\xde\x8e\x00\x00\x93\x00\x00\x00*\x8f\x00\x00\x11\x00\x00\x00\xbe\x8f\x00\x00\x19\x00\x00\x00\xd0\x8f\x00\x00\x19\x00\x00\x00\xea\x8f\x00\x00J\x00\x00\x00\x04\x90\x00\x00\x18\x00\x00\x00O\x90\x00\x00\x04\x00\x00\x00h\x90\x00\x00:\x00\x00\x00m\x90\x00\x00J\x00\x00\x00\xa8\x90\x00\x001\x00\x00\x00\xf3\x90\x00\x00r\x00\x00\x00%\x91\x00\x00G\x00\x00\x00\x98\x91\x00\x00w\x00\x00\x00\xe0\x91\x00\x00Z\x00\x00\x00X\x92\x00\x00\x10\x00\x00\x00\xb3\x92\x00\x00\xc8\x00\x00\x00\xc4\x92\x00\x00\x08\x00\x00\x00\x8d\x93\x00\x00\t\x00\x00\x00\x96\x93\x00\x00\x0b\x00\x00\x00\xa0\x93\x00\x00 \x00\x00\x00\xac\x93\x00\x00\x19\x00\x00\x00\xcd\x93\x00\x00\x13\x00\x00\x00\xe7\x93\x00\x00 \x00\x00\x00\xfb\x93\x00\x00\x14\x00\x00\x00\x1c\x94\x00\x00-\x00\x00\x001\x94\x00\x00-\x00\x00\x00_\x94\x00\x002\x00\x00\x00\x8d\x94\x00\x00+\x00\x00\x00\xc0\x94\x00\x008\x00\x00\x00\xec\x94\x00\x00\x0f\x00\x00\x00%\x95\x00\x00\x1d\x00\x00\x005\x95\x00\x00G\x00\x00\x00S\x95\x00\x001\x00\x00\x00\x9b\x95\x00\x00\x95\x00\x00\x00\xcd\x95\x00\x00N\x00\x00\x00c\x96\x00\x00\x10\x00\x00\x00\xb2\x96\x00\x00\x1f\x00\x00\x00\xc3\x96\x00\x007\x00\x00\x00\xe3\x96\x00\x00\x08\x00\x00\x00\x1b\x97\x00\x00\x0c\x00\x00\x00$\x97\x00\x00\x13\x00\x00\x001\x97\x00\x004\x00\x00\x00E\x97\x00\x00=\x00\x00\x00z\x97\x00\x00\r\x00\x00\x00\xb8\x97\x00\x00\\\x00\x00\x00\xc6\x97\x00\x00~\x00\x00\x00#\x98\x00\x00C\x00\x00\x00\xa2\x98\x00\x000\x00\x00\x00\xe6\x98\x00\x00\x15\x00\x00\x00\x17\x99\x00\x00\x1b\x00\x00\x00-\x99\x00\x00\x1d\x00\x00\x00I\x99\x00\x000\x00\x00\x00g\x99\x00\x00\x06\x00\x00\x00\x98\x99\x00\x00\x11\x00\x00\x00\x9f\x99\x00\x00\r\x00\x00\x00\xb1\x99\x00\x00\x07\x00\x00\x00\xbf\x99\x00\x001\x00\x00\x00\xc7\x99\x00\x00\x18\x00\x00\x00\xf9\x99\x00\x00(\x00\x00\x00\x12\x9a\x00\x00$\x00\x00\x00;\x9a\x00\x00&\x00\x00\x00`\x9a\x00\x00\x11\x00\x00\x00\x87\x9a\x00\x00`\x00\x00\x00\x99\x9a\x00\x00\x1c\x00\x00\x00\xfa\x9a\x00\x00\x16\x00\x00\x00\x17\x9b\x00\x00\x15\x00\x00\x00.\x9b\x00\x00\x95\x00\x00\x00D\x9b\x00\x00n\x00\x00\x00\xda\x9b\x00\x00?\x00\x00\x00I\x9c\x00\x002\x00\x00\x00\x89\x9c\x00\x00m\x00\x00\x00\xbc\x9c\x00\x00\x0c\x00\x00\x00*\x9d\x00\x00\x18\x00\x00\x007\x9d\x00\x00\x1d\x00\x00\x00P\x9d\x00\x00\x1c\x00\x00\x00n\x9d\x00\x00\x1c\x01\x00\x00\x8b\x9d\x00\x00y\x00\x00\x00\xa8\x9e\x00\x00\x88\x00\x00\x00"\x9f\x00\x00\xc5\x00\x00\x00\xab\x9f\x00\x00M\x00\x00\x00q\xa0\x00\x00V\x01\x00\x00\xbf\xa0\x00\x00%\x00\x00\x00\x16\xa2\x00\x00\x06\x00\x00\x00<\xa2\x00\x00\x1f\x00\x00\x00C\xa2\x00\x00\x18\x00\x00\x00c\xa2\x00\x00\x0b\x00\x00\x00|\xa2\x00\x00\x07\x00\x00\x00\x88\xa2\x00\x00\x15\x00\x00\x00\x90\xa2\x00\x00\x1e\x00\x00\x00\xa6\xa2\x00\x00\t\x00\x00\x00\xc5\xa2\x00\x00\x89\x00\x00\x00\xcf\xa2\x00\x00\x04\x00\x00\x00Y\xa3\x00\x00\t\x00\x00\x00^\xa3\x00\x00<\x00\x00\x00h\xa3\x00\x00l\x00\x00\x00\xa5\xa3\x00\x00\x1a\x00\x00\x00\x12\xa4\x00\x00\x1a\x00\x00\x00-\xa4\x00\x00\x98\x00\x00\x00H\xa4\x00\x00-\x00\x00\x00\xe1\xa4\x00\x00#\x00\x00\x00\x0f\xa5\x00\x00\x89\x00\x00\x003\xa5\x00\x00*\x00\x00\x00\xbd\xa5\x00\x00)\x00\x00\x00\xe8\xa5\x00\x00^\x00\x00\x00\x12\xa6\x00\x00s\x00\x00\x00q\xa6\x00\x00z\x00\x00\x00\xe5\xa6\x00\x005\x00\x00\x00`\xa7\x00\x00\x0f\x00\x00\x00\x96\xa7\x00\x00\x07\x00\x00\x00\xa6\xa7\x00\x00\x1f\x00\x00\x00\xae\xa7\x00\x00\x06\x00\x00\x00\xce\xa7\x00\x008\x00\x00\x00\xd5\xa7\x00\x00!\x00\x00\x00\x0e\xa8\x00\x00%\x00\x00\x000\xa8\x00\x00\r\x00\x00\x00V\xa8\x00\x00\x0b\x00\x00\x00d\xa8\x00\x00\x1b\x00\x00\x00p\xa8\x00\x00\x0e\x00\x00\x00\x8c\xa8\x00\x00\x12\x00\x00\x00\x9b\xa8\x00\x00\x12\x00\x00\x00\xae\xa8\x00\x00;\x00\x00\x00\xc1\xa8\x00\x000\x00\x00\x00\xfd\xa8\x00\x00\xbc\x00\x00\x00.\xa9\x00\x00:\x00\x00\x00\xeb\xa9\x00\x00\x15\x00\x00\x00&\xaa\x00\x00i\x00\x00\x00<\xaa\x00\x00N\x00\x00\x00\xa6\xaa\x00\x007\x00\x00\x00\xf5\xaa\x00\x00\x07\x00\x00\x00-\xab\x00\x00\x19\x00\x00\x005\xab\x00\x00\x0c\x00\x00\x00O\xab\x00\x00\r\x00\x00\x00\\\xab\x00\x00,\x00\x00\x00j\xab\x00\x00n\x00\x00\x00\x97\xab\x00\x001\x00\x00\x00\x06\xac\x00\x006\x00\x00\x008\xac\x00\x002\x00\x00\x00o\xac\x00\x00\n\x00\x00\x00\xa2\xac\x00\x00\t\x00\x00\x00\xad\xac\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book <font face="serif">%s</font> of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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<br>CSS\x00Page Setup\x00Parsing LRF file\x00Password for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: es\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2008-03-31 15:53+PDT\nPO-Revision-Date: 2007-11-16 09:21+0100\nLast-Translator: libprs500\nLanguage-Team: Spanish\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nX-Generator: KBabel 1.11.4\n\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\nArtikel %s von %s geladen\n%s\x00 Tage\x00 von\x00 no es una imagen v\xc3\xa1lida\x00 pas trouv\xc3\xa9.\x00 puntos\x00 P\xc3\xadxeles\x00 secondes\x00 estrellas\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00Clave de &acceso;\x00Feed &anf\xc3\xbcgen\x00Ajoute mot-clef\x00&Autor(es):\x00Margen &Inferior:\x00Datenbank verdi&chten\x00&Desactivar detecci\xc3\xb3n de cap\xc3\xadtulos\x00&Feed Titel:\x00&Fuerza un salto de p\xc3\xa1gina delante de la marca:\x00&Formato del encabezado:\x00Margen &Izquierdo:\x00&Ubicaci\xc3\xb3n de la base de datos (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace:\x00\xc3\x84<ester Artikel:\x00Inserta un salto de &p\xc3\xa1gina delante de la marca:\x00&Contrase\xc3\xb1a:\x00&Preprocesamiento:\x00&Priorit\xc3\xa9 pour les travaux de conversion :\x00&Perfil:\x00&Editorial:\x00&Valoraci\xc3\xb3n:\x00Expresi\xc3\xb3n &Regular:\x00Rezept entfe&rnen\x00&Supprime des mots-clefs :\x00Margen &Derecho:\x00&Buscar:\x00&Series:\x00&Serif:\x00&Mostrar encabezado\x00&Affiche le mot de passe\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&T\xc3\xadtulo:\x00Margen &Superior:\x00&Usuario:\x00&Espaciado de palabras:\x00...\x00<b>Los cambios no se aplicaran hasta reiniciar.\x00<b>No se puede descargar la portada.</b><br/>\x00<b>No </b>se han encontrado coincidencias para "<i>%s</i>".\x00<br>Debe ser un directorio.\x00<font color="gray">Ayuda no disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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 gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Archivos HTML0 de Book Designer</li>\x00<li><b>pdftohtml</b> - Archivos HTML creados con el programa pdftohtml</li>\x00<ol><li><b>baen</b> - Libros de BAEN Publishers</li>\x00<p>Une base de donn\xc3\xa9es invalide existe d\xc3\xa9j\xc3\xa0 ici : %s, spprimez la avant d\'essayer de d\xc3\xa9placer la base de donn\xc3\xa9es existante.<br>Erreur : %s\x00<p>Des livres ayant le m\xc3\xaame titre existent d\xc3\xa9j\xc3\xa0 dans la base de donn\xc3\xa9es. Les ajouter quand m\xc3\xaame ?<ul>\x00<p>No se pueden guardar los libros porque no hay espacio en el dispositivo \x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Veuillez saisir votre nom d\'utilisateur et votre mot de passe de <b>LibraryThing.com</b>. <br/>Si vous n\'en avez pas, vous pouvez <a href=\'http://www.librarything.com\'>y cr\xc3\xa9er un compte </a> gratuitement !</p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Hubo un error leyendo el archivo: <br /><b>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Expresi\xc3\xb3n regular. Las marcas <a> que tengan href coincidentes, son ignoradas. Por defecto: %default\x00Mots-clefs\x00Mots-clefs disponibles\x00Trebajos activos\x00A\xc3\xb1a&dir las etiquetas: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00A\xc3\xb1adir directorio a la lista de directorios frecuentes\x00A\xc3\xb1adir el encabezado en todas las p\xc3\xa1ginas, poniendo t\xc3\xad\xc2\xadtulo y autor.\x00A\xc3\xb1adir un nuevo formato para este libro en la base de datos\x00A\xc3\xb1adir libros\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Mejorar la apariencia del archivo LRF generado, especificando el tama\xc3\xb1o de fuente y el espaciado entre palabras.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Irgendein\x00Applique le mot-clef au livre en cours.\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00&Ordenar autores:\x00O&rd&en por autor:\x00Autor(es)\x00Autoren:\x00Formatos disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Atr\xc3\xa1s\x00Tama\xc3\xb1o de la &fuente base:\x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Libro \x00Libro <font face="serif">%s</font> de %s.\x00Portada\x00Margen inferior de la p\xc3\xa1gina. Por defecto: %default px.\x00Localizar una imagen a utilizar como portada de este libro.\x00Navegar a la nueva ubicaci\xc3\xb3n de la base de datos\x00Convertir en bloque\x00eBooks auf einmal zu LRF konvertieren\x00No se puede configurar\x00No se puede configurar con trabajos en proceso.\x00No se puede conectar\x00No se puede convertir\x00No se puede convertir %s porque el formato no est\xc3\xa1 soportado\x00No se pueden editar los metadatos\x00No se puede descargar la portada\x00Kann schon fertiggestellte Auftr\xc3\xa4ge nicht abbrechen.\x00Kann Auftrag nicht abbrechen.\x00Kann Auftr\xc3\xa4ge nicht abbrechen, die mit dem Ger\xc3\xa4t kommunizieren, da dies zu Datenverlust f\xc3\xbchren kann.\x00Kann Auftr\xc3\xa4ge in Warteliste nicht abbrechen.\x00No se puede leer\x00No se puede guardar en disco\x00No se puede visualizar\x00Tarjeta\n%s disponible\x00Categor\xc3\xada\x00Cambia la imagen de &portada:\x00Modifie le mot de passe\x00Cambia el(los) autor(es). Para especificar m\xc3\xa1s de uno, separarlos mediante comas.\x00Cambia la editorial del libro\x00Cambiar el t\xc3\xadtulo del libro\x00Modifie le nom d\'utilisateur et/ou le mot de passe de votre compte \xc3\xa0 LibraryThing.com\x00Detecci\xc3\xb3n de cap\xc3\xadtulos\x00Elegir formato\x00Elegir el formato a conertir en LRF\x00Format zur Vorschau w\xc3\xa4hlen\x00Ein Klick zeigt die aktiven Auftr\xc3\xa4ge.\x00Liste de mots-clefs s\xc3\xa9par\xc3\xa9s par des virgules \xc3\xa0 retirer des livres.\x00Comentarios\x00Configuraci\xc3\xb3n\x00Configurar\x00Configurar el visor\x00Convertir %s a LRF\x00Convertir Ebooks\x00Convertir individualmente\x00Convertir a LRF\x00Konnte Umschlagbild nicht laden: %s\x00Konnte Artikel nicht abrufen. Der erneute Start mit --debug zeigt m\xc3\xb6gliche Gr\xc3\xbcnde an \x00No se puede descargar la portada.\x00L\'image de couverture n\'a pas pu \xc3\xaatre r\xc3\xa9cup\xc3\xa9r\xc3\xa9e \xc3\xa0 cause de probl\xc3\xa8mes de connexion. Veuillez r\xc3\xa9essayer ult\xc3\xa9rieurement.\x00No se puede mover la base de datos\x00Konnte Datei nicht analysieren: %s\x00Creado por \x00Individuelle Nachrichtenquellen\x00Fecha\x00&Timeout par d\xc3\xa9faut pour les connexions r\xc3\xa9seau :\x00Borrar\x00Supprime un mot-clef de la base de donn\xc3\xa9es. Cette op\xc3\xa9ration va retirer ce mot-clef de tous les livres et le supprimer de la base de donn\xc3\xa9es.\x00Details des Auftrags\x00No s\xc3\xa9 para qu\xc3\xa9 sirve esto\x00Fortschrittsbalken nicht anzeigen\x00Download beendet\x00Lade Umschlagbild von %s\x00Des doublons ont \xc3\xa9t\xc3\xa9 d\xc3\xa9tect\xc3\xa9s !\x00E\x00ERROR\x00Editar meta-informaci\xc3\xb3n\x00Editar Meta-informaci\xc3\xb3n\x00Editar la meta-informaci\xc3\xb3n\x00Edita metadatos en bloque\x00Editar metadatos individualmente\x00Fuentes incrustadas\x00Activa la &rotaci\xc3\xb3n autom\xc3\xa1tica de im\xc3\xa1genes\x00Activa la rotaci\xc3\xb3n autom\xc3\xa1tica de im\xc3\xa1genes m\xc3\xa1s grandes que el ancho de la pantalla.\x00Fehler\x00Error en la comunicaci\xc3\xb3n con el dispositivo\x00Error leyendo archivo\x00Error de comunicaci\xc3\xb3n con el dispositivo\x00Extraer la miniatura del archivo LRF\x00Laden der Artikel fehlgeschlagen: %s von %s\n\x00Der Download von Teilen der folgenden Artikel schlug fehl:\x00Der Download der folgenden Artikel schlug fehl:\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Buscar\x00Buscar portada en el servidor\x00Buscar metadatos\x00Buscar metadatos en el servidor\x00Descargar noticias (RSS)\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Buscando metadatos para <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Afinar la detecci\xc3\xb3n de cap\xc3\xadtulos y secciones.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Fuerza un salto de p\xc3\xa1gina antes de un elemento con un atributo concreto. El formato de esta opci\xc3\xb3n es regexp_marca,nom_atribut,tegexp_valor_atribut. Por ejemplo, "h\\d,class,chapter", coincide con todas las marcas de encabezado que tienen el atributo class="chapter". Por defecto: %default\x00Fuerza un salto de p\xc3\xa1gina antes de las marcas cuyo nombre coincida con la expresi\xc3\xb3n regular.\x00Fuerza un salto de p\xc3\xa1gina delante del &atributo:\x00Art\x00Formato\x00Formatos\x00Siguiente\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00Directorios usados con frecuencia\x00Feeds der Index Seite erhalten\x00Encabezado\x00Ayuda con el \xc3\xadtem\x00Partici\xc3\xb3n de palabras\x00IS&BN:\x00Si html2lrf no encuentra saltos de p\xc3\xa1gina en el archivo html y no puede detectar los encabezados de los cap\xc3\xadtulos, inserta autom\xc3\xa1ticamente un salto de p\xc3\xa1gina delante de las marcas que cuyo nombre coincida con la expresi\xc3\xb3n regular. Por defecto: %default. Esta opci\xc3\xb3n se inhabilita estableciendo la regexp a "$".El prop\xc3\xb3sito es evitar p\xc3\xa1ginas muy largas, que relentizan al cambio de p\xc3\xa1gina en el archivo LRF. Esta opci\xc3\xb3n se ignora si la p\xc3\xa1gina actual tiene pocos elementos.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si se detecta un gr\xc3\xa1fico para la portada en el archivo de origen, utilizarla en lugar de la portada especificada.\x00Farben nicht bea&chten\x00Ignora las &tablas\x00Aumenta el tama\xc3\xb1o de la fuente en 2 * FONT_DELTA puntos y el espacio de l\xc3\xad\xc2\xadnea en FONT_DELTA puntos. FONT_DELTA puede ser una fracci\xc3\xb3n. Si es un valor negativo, el tama\xc3\xb1o de la fuente disminuye.\x00Inserta l\xc3\xadneas en &blanco entre p\xc3\xa1rrafos\x00Base de donn\xc3\xa9es invalide\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida.<br>Imposible escribir en \x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Trabajo\x00Auftrag durch Benutzer abgebrochen\x00Trabajos:\x00Visor LRF\x00Margen izquierdo de la p\xc3\xa1gina. Por defecto: %default px.\x00Biblioteca\x00Listado de series conocidas. Se puede a\xc3\xb1adir nuevas series.\x00Apariencia\x00\xc3\x9cbereinstimmung mit a&llen der folgenden Kriterien\x00\xc3\x9cbereinstimmung mit irge&ndeinem der folgenden Kriterien\x00Coincidencias\x00Maximale Anzahl der zu ladenden Artikel pro feed.\x00Meta-informaci\xc3\xb3n\x00Metadatos\x00Minimizar el uso de memoria, a cambio de mayor tiempo de procesador. Usar esta opci\xc3\xb3n si el equipo no dispone de mucha RAM.\x00E&inr\xc3\xbccken mindestens:\x00Mehr\x00Ausblenden\x00Nachrichten abgerufen. \xc3\x9cbertragung ans Ger\xc3\xa4t l\xc3\xa4uft.\x00P\xc3\xa1gina siguiente\x00Siguiente coincidencia\x00Formatos no disponibles\x00Seleccione un libro\x00No hay libros seleccionados\x00Kein Treffer\x00No se han encontrado coincidencias\x00No hay espacio en el dispositivo\x00Ninguno\x00Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. Voreinstellung %default\x00Ouvre l\'\xc3\xa9diteur de mots-clefs\x00Abrir eBook\x00Opciones\x00Einstellungen f\xc3\xbcr feeds2disk\x00Einstellungen f\xc3\xbcr html2lrf\x00Einstellungen f\xc3\xbcr web2disk (um von Feeds verlinkte Webseiten abzurufen)\x00Nombre del archivo de destino\xc2\xad. Por defecto, deriva del archivo de entrada\x00Substituye la hoja CSS. Se admite tanto una ruta al archivo CSS alternativo, como una cadena. En el \xc3\xbaltimo caso, la cadena se interpreta como CSS.\x00Substituye<br>CSS\x00Configuraci\xc3\xb3n de p\xc3\xa1gina\x00Analizando el archivo LRF\x00Passwort f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Se necesita contrase\xc3\xb1a.\x00Ruta\x00Ruta al archivo de imagen que se utilizar\xc3\xa1 como miniatura\x00Ruta al archivo txt que contiene el comentaria a guardar en el archivo LRF\x00Ruta al archivo de imagen a utilizar como portada\x00Pfad zum Ausgabeverzeichnis, in dem die HTML Datei erstellt werden soll. Voreinstellung auf aktuelles Verzeichnis.\x00Preprocesa los archivos Baen HTML para mejorar el archivo LRF generado.\x00Preprocesar el archivo antes de convertir a LRF, \xc3\xbatil si se conoce el origen del archivo. Tipos de archivos conocidos:\x00Evita la inserci\xc3\xb3n autom\xc3\xa1tica de saltos de p\xc3\xa1gina delante de los cap\xc3\xadtulos detectados.\x00P\xc3\xa1gina anterior\x00Perfil del dispositivo para el cual se genera el archivo LRF. Este perfil determina, entre otras cosas, la resoluci\xc3\xb3n y el tama\xc3\xb1o de la pantalla del dispositivo. Por defecto: %s Perfiles soportados:\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Sony Reader\n%s disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Eliminar directorio a la lista de directorios frecuentes\x00Suprimir libros\x00Feed aus dem Rezept entfernen\x00Elimina los formatos seleccionados para este libro de la base de datos.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Renderizar las tablas HTML como bloques de texto en lugar de las tablas actuales. Activar si el archivo HTML contiene tablas muy grandes o complejas.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Reinicializar b\xc3\xbasqueda r\xc3\xa1pida\x00Margen derecho de la p\xc3\xa1gina. Por defecto: %default px.\x00Laufzeit\x00S&ans-serif:\x00Guardar en el disco\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Busca libros por t\xc3\xadtulo o autor. <br><br>Los espacios entre palabras se sustituyen por AND.\x00Buscar libros por t\xc3\xadtulo, autor, editorial, etiquetas y comentaris<br><br>Los espacios entre parlabras se sustituyen por AND.\x00Seleccionar el libro que m\xc3\xa1s se aproxime al listado mostrado abajo\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Enviar al dispositivo\x00Enviar a la memoria interna\x00Envia a la targeta de memoria\x00Separa los p\xc3\xa1rrafos mediante l\xc3\xadneas en blanco.\x00Series\x00\xc3\x8dndice de serie.\x00Serien Index:\x00Serien:\x00Erreur Serveur. Veuillez essayer ult\xc3\xa9rieurement.\x00Insertar el ID del libro\x00Fijar valores de conversi\xc3\xb3n por defecto\x00Insertar la clave de orden por autor\x00Insertar la clave de orden por t\xc3\xadtulo\x00Insertar el autor\x00Insertar autor(es). Si indica m\xc3\xa1s de un autor, sep\xc3\xa1relos mediante comas. Por defecto: %default\x00Insertar el nombre del libro\x00Insertar categor\xc3\xad\xc2\xada.\x00Insertar comentarios.\x00Voreinstellung der Zeit\xc3\xbcberschreitung f\xc3\xbcr Netzwerkabrufe festsetzen (Gilt immer dann, wenn aus dem Internet Informationen abgerufen werden sollen) \x00Establece el formato del encabezado. %a se reemplaza por el autor y %t por el t\xc3\xad\xc2\xadtulo. Por defecto: %default\x00Fija el espacio entre palabras en puntos. Por defecto: %default\x00Insertar t\xc3\xadtulo. Por defecto: nombre_del_archivo.\x00Registraros gratuitamente en <a href="http://www.isbndb.com">ISBNdb.com</a> para obtenir una clave de acceso.\x00Tama\xc3\xb1o (MB)\x00Clave de orden por autor\x00Clave de orden por t\xc3\xad\xc2\xadtulo.\x00En&codierung der Quelldatei:\x00Geben Sie eine Liste von Feeds zum Download an. Zum Beispiel: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nWenn Sie diese Option w\xc3\xa4hlen, wird jedes Argument %prog ignoriert und die Voreinstellung zum Download der Feeds verwendet. \x00Especificar c\xc3\xb3mo ordenar el(los) autor(es) de este libro. Por ejemplo,ordena Federico Garc\xc3\xada Lorca como Lorca, Federico\x00Especificar datos como t\xc3\xadtulo y autor para el libro.<p>Esta informaci\xc3\xb3n se actualiza tanto en la base de datos como en el archivo LRF.\x00Especifica el tama\xc3\xb1o de fuente en puntos. Todas las fuentes se reescalan seg\xc3\xban este valo. Esta opci\xc3\xb3n sustituye a --font-delta que se considera obsoleta. Para user ---font-delta, asigne 0 aqu\xc3\xad.\x00Configuraci\xc3\xb3n de p\xc3\xa1gina del dispositivo: m\xc3\xa1rgenes y tama\xc3\xb1o de la pantalla\x00Especificar fuentes truetype para las familias serif, sans-serif y monoespaciadas. Las fuentes se insertan en el archivo LRF. Tener en cuenta que a\xc3\xb1adir fuentes personalizadas relentiza el cambio de p\xc3\xa1gina. Para especificar cada una de las familias se utiliza: "ruta a la carpeta de fuents, familia" ( --serif-family "%s, Times New Roman")\n\x00Starte Download von [%d Thread(s)]...\x00Estado\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Etique&tas:\x00Etikett\x00Editeur de Mots-Clefs\x00Detecci\xc3\xb3n basada en etiquetas\x00Etiquetas\x00Etiquetas para categorizar el libr (muy \xc3\xbatil en b\xc3\xbasquedas). <br><br>Puede utilizarse qualquier palabra o frase, separada medante comas.\x00Test\x00TextLabel\x00Categoria a la que pertenece el libro. Por ejemplo, Historia\x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00N\xc3\xbamero m\xc3\xa1ximo de niveles para procesar enlaces recursivamente. El valor 0 (cero) indica que no se seguir\xc3\xa1n. Un valor negativo, ignora las marcas <a>.\x00Familia de fuentes monoespaiadas a incrustar.\x00\xc3\x84ltester Artikel, der geladen wird\x00Expressi\xc3\xb3n regular utilizada para detectar los t\xc3\xadtulos de los cap\xc3\xadtulos. Busca las marcas de encabezado (h1-h6). Por defecto: %default\x00Familia de fuentes sans-serif a incrustar.\x00Familia de fuentes serif per a incrustar.\x00Der Text, nach dem gesucht werden soll. Dies wird als eine Regul\xc3\xa4re Expression interpretiert.\x00Der Titel f\xc3\xbcr dieses Rezept. Wird als Titel f\xc3\xbcr alle eBooks benutzt, die aus den geladenen Feeds erstellt wurden.\x00Hubo un error de comunicaci\xc3\xb3n con el dispositivo. Desconecte, vuelva a conectar el dispositivo y reinicie la aplicaci\xc3\xb3n.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Marca de tiempo\x00T\xc3\xadtulo\x00Detecci\xc3\xb3n basada en el t\xc3\xadtulo\x00Titel:\x00Margen superior de la p\xc3\xa1gina. Por defecto: %default px.\x00Versuche Umschlagbild zu laden...\x00Enl\xc3\xa8ve le mot-clef du livre en cours\x00No disponible\x00Desconocido\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Utilisation de chiffres romains pour les num\xc3\xa9ro de s\xc3\xa9ries\x00Utilise l\'image de couverture du fichier &source\x00Utiliza el elemento <spine> del archivo OPF para determinar el orden en el que se a\xc3\xb1aden los archivos HTML al LRF. El archivo .opf debe estar en la misma carpeta que el archivo HTML base.\x00Utilice esta opci\xc3\xb3n para archivos html0 de Book Designer.\x00Utilizar fondo blanco\x00Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed und l\xc3\xa4dt h\xc3\xb6chstens 2 Feeds.\x00Benutzername f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Mostrar\x00Spezielles Format ansehen\x00En espera...\x00Procesando...\x00No tienes permiso de lectura en el archivo: \x00Es necesario activar esta opci\xc3\xb3n para archivos generados con pdftohtml, para evitar que la conversi\xc3\xb3n falle.\x00Es muss eine einzelne PDF Datei angegeben werden.\x00Especifica una clave de acceso v\xc3\xa1lida para isbndb.com\x00Especifique primero un ISBN v\xc3\xa1lido para el libro.\x00beinhaltet\x00libprs500\x00'} \ No newline at end of file +translations = {'fr': '\xde\x12\x04\x95\x00\x00\x00\x00\xa1\x01\x00\x00\x1c\x00\x00\x00$\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x1a\x00\x00\x0e\x00\x00\x00-\x1a\x00\x00!\x00\x00\x00<\x1a\x00\x00\x05\x00\x00\x00^\x1a\x00\x00\x06\x00\x00\x00d\x1a\x00\x00\x17\x00\x00\x00k\x1a\x00\x00\x0b\x00\x00\x00\x83\x1a\x00\x00\x04\x00\x00\x00\x8f\x1a\x00\x00\x03\x00\x00\x00\x94\x1a\x00\x00\x08\x00\x00\x00\x98\x1a\x00\x00\x06\x00\x00\x00\xa1\x1a\x00\x00\x1c\x00\x00\x00\xa8\x1a\x00\x00\x0e\x00\x00\x00\xc5\x1a\x00\x00\x0c\x00\x00\x00\xd4\x1a\x00\x00\t\x00\x00\x00\xe1\x1a\x00\x00\t\x00\x00\x00\xeb\x1a\x00\x00\x0c\x00\x00\x00\xf5\x1a\x00\x00\x0f\x00\x00\x00\x02\x1b\x00\x00\x11\x00\x00\x00\x12\x1b\x00\x00\x1a\x00\x00\x00$\x1b\x00\x00\x0c\x00\x00\x00?\x1b\x00\x00\x1d\x00\x00\x00L\x1b\x00\x00\x0f\x00\x00\x00j\x1b\x00\x00\r\x00\x00\x00z\x1b\x00\x00)\x00\x00\x00\x88\x1b\x00\x00"\x00\x00\x00\xb2\x1b\x00\x00\x18\x00\x00\x00\xd5\x1b\x00\x00\x0b\x00\x00\x00\xee\x1b\x00\x00\x10\x00\x00\x00\xfa\x1b\x00\x00\x17\x00\x00\x00\x0b\x1c\x00\x00\n\x00\x00\x00#\x1c\x00\x00\x0c\x00\x00\x00.\x1c\x00\x00\x1e\x00\x00\x00;\x1c\x00\x00\t\x00\x00\x00Z\x1c\x00\x00\x0c\x00\x00\x00d\x1c\x00\x00\x08\x00\x00\x00q\x1c\x00\x00\x14\x00\x00\x00z\x1c\x00\x00\x0e\x00\x00\x00\x8f\x1c\x00\x00\r\x00\x00\x00\x9e\x1c\x00\x00\x0e\x00\x00\x00\xac\x1c\x00\x00\x08\x00\x00\x00\xbb\x1c\x00\x00\x08\x00\x00\x00\xc4\x1c\x00\x00\x07\x00\x00\x00\xcd\x1c\x00\x00\x0c\x00\x00\x00\xd5\x1c\x00\x00\x0e\x00\x00\x00\xe2\x1c\x00\x00\x12\x00\x00\x00\xf1\x1c\x00\x00\x05\x00\x00\x00\x04\x1d\x00\x00\x08\x00\x00\x00\n\x1d\x00\x00\x0c\x00\x00\x00\x13\x1d\x00\x00\n\x00\x00\x00 \x1d\x00\x00\x0e\x00\x00\x00+\x1d\x00\x00\x03\x00\x00\x00:\x1d\x00\x001\x00\x00\x00>\x1d\x00\x00"\x00\x00\x00p\x1d\x00\x00=\x00\x00\x00\x93\x1d\x00\x00\x18\x00\x00\x00\xd1\x1d\x00\x00+\x00\x00\x00\xea\x1d\x00\x00\x00\x02\x00\x00\x16\x1e\x00\x00\xa3\x01\x00\x00\x17 \x00\x00\x82\x02\x00\x00\xbb!\x00\x00>\x00\x00\x00>$\x00\x00S\x00\x00\x00}$\x00\x005\x00\x00\x00\xd1$\x00\x00p\x00\x00\x00\x07%\x00\x00a\x00\x00\x00x%\x00\x00G\x00\x00\x00\xda%\x00\x00(\x00\x00\x00"&\x00\x00\xa7\x00\x00\x00K&\x00\x00W\x00\x00\x00\xf3&\x00\x00\x96\x00\x00\x00K\'\x00\x00=\x01\x00\x00\xe2\'\x00\x002\x00\x00\x00 )\x00\x00\x01\x00\x00\x00S)\x00\x00C\x00\x00\x00U)\x00\x00X\x00\x00\x00\x99)\x00\x00\r\x00\x00\x00\xf2)\x00\x00\x0f\x00\x00\x00\x00*\x00\x00\x0b\x00\x00\x00\x10*\x00\x00\x0b\x00\x00\x00\x1c*\x00\x00\x18\x00\x00\x00(*\x00\x007\x00\x00\x00A*\x00\x004\x00\x00\x00y*\x00\x00.\x00\x00\x00\xae*\x00\x00\t\x00\x00\x00\xdd*\x00\x00!\x00\x00\x00\xe7*\x00\x00b\x00\x00\x00\t+\x00\x00o\x00\x00\x00l+\x00\x00\x16\x00\x00\x00\xdc+\x00\x00\x12\x00\x00\x00\xf3+\x00\x006\x00\x00\x00\x06,\x00\x00\x12\x00\x00\x00=,\x00\x00m\x00\x00\x00P,\x00\x00\x08\x00\x00\x00\xbe,\x00\x00\x0f\x00\x00\x00\xc7,\x00\x00\x0f\x00\x00\x00\xd7,\x00\x00\x0e\x00\x00\x00\xe7,\x00\x00\x05\x00\x00\x00\xf6,\x00\x00\x03\x00\x00\x00\xfc,\x00\x00\x19\x00\x00\x00\x00-\x00\x00\x1b\x00\x00\x00\x1a-\x00\x00\x16\x00\x00\x006-\x00\x00\x06\x00\x00\x00M-\x00\x00\x0e\x00\x00\x00T-\x00\x00\r\x00\x00\x00c-\x00\x00\t\x00\x00\x00q-\x00\x00\x08\x00\x00\x00{-\x00\x00\x11\x00\x00\x00\x84-\x00\x00\x16\x00\x00\x00\x96-\x00\x00\x04\x00\x00\x00\xad-\x00\x00\x10\x00\x00\x00\xb2-\x00\x00\x05\x00\x00\x00\xc3-\x00\x00!\x00\x00\x00\xc9-\x00\x00\x10\x00\x00\x00\xeb-\x00\x00\x05\x00\x00\x00\xfc-\x00\x00(\x00\x00\x00\x02.\x00\x00\n\x00\x00\x00+.\x00\x00.\x00\x00\x006.\x00\x005\x00\x00\x00e.\x00\x00$\x00\x00\x00\x9b.\x00\x00\x0c\x00\x00\x00\xc0.\x00\x00\x1a\x00\x00\x00\xcd.\x00\x00\x10\x00\x00\x00\xe8.\x00\x00.\x00\x00\x00\xf9.\x00\x00\x0e\x00\x00\x00(/\x00\x00\x0e\x00\x00\x007/\x00\x007\x00\x00\x00F/\x00\x00\x14\x00\x00\x00~/\x00\x00\x12\x00\x00\x00\x93/\x00\x00#\x00\x00\x00\xa6/\x00\x00\x0f\x00\x00\x00\xca/\x00\x00Z\x00\x00\x00\xda/\x00\x00\x19\x00\x00\x0050\x00\x00\x0b\x00\x00\x00O0\x00\x00\x13\x00\x00\x00[0\x00\x00\x0b\x00\x00\x00o0\x00\x00\x11\x00\x00\x00{0\x00\x00\x08\x00\x00\x00\x8d0\x00\x00\x14\x00\x00\x00\x960\x00\x00\x0f\x00\x00\x00\xab0\x00\x00R\x00\x00\x00\xbb0\x00\x00!\x00\x00\x00\x0e1\x00\x00\x1d\x00\x00\x0001\x00\x00H\x00\x00\x00N1\x00\x00\x11\x00\x00\x00\x971\x00\x00\r\x00\x00\x00\xa91\x00\x00%\x00\x00\x00\xb71\x00\x00\x19\x00\x00\x00\xdd1\x00\x00!\x00\x00\x00\xf71\x00\x007\x00\x00\x00\x192\x00\x00\x08\x00\x00\x00Q2\x00\x00\r\x00\x00\x00Z2\x00\x00\t\x00\x00\x00h2\x00\x00\x10\x00\x00\x00r2\x00\x00\x11\x00\x00\x00\x832\x00\x00\x0f\x00\x00\x00\x952\x00\x00\x14\x00\x00\x00\xa52\x00\x00\x0e\x00\x00\x00\xba2\x00\x00\x1c\x00\x00\x00\xc92\x00\x00;\x00\x00\x00\xe62\x00\x00\x15\x00\x00\x00"3\x00\x00R\x00\x00\x0083\x00\x00\x17\x00\x00\x00\x8b3\x00\x00\x18\x00\x00\x00\xa33\x00\x00\x0b\x00\x00\x00\xbc3\x00\x00\x13\x00\x00\x00\xc83\x00\x00\x04\x00\x00\x00\xdc3\x00\x00\x19\x00\x00\x00\xe13\x00\x00\x03\x00\x00\x00\xfb3\x00\x00h\x00\x00\x00\xff3\x00\x00\x0e\x00\x00\x00h4\x00\x00\x1b\x00\x00\x00w4\x00\x00\x1a\x00\x00\x00\x934\x00\x00\x11\x00\x00\x00\xae4\x00\x00\x19\x00\x00\x00\xc04\x00\x00\x11\x00\x00\x00\xda4\x00\x00\x01\x00\x00\x00\xec4\x00\x00\x05\x00\x00\x00\xee4\x00\x00\x15\x00\x00\x00\xf44\x00\x00\x15\x00\x00\x00\n5\x00\x00\x15\x00\x00\x00 5\x00\x00\x15\x00\x00\x0065\x00\x00\x1a\x00\x00\x00L5\x00\x00\x0e\x00\x00\x00g5\x00\x00\x1f\x00\x00\x00v5\x00\x00C\x00\x00\x00\x965\x00\x00\x05\x00\x00\x00\xda5\x00\x00\x1f\x00\x00\x00\xe05\x00\x00\x12\x00\x00\x00\x006\x00\x00\x17\x00\x00\x00\x136\x00\x00\x1f\x00\x00\x00+6\x00\x00\'\x00\x00\x00K6\x00\x003\x00\x00\x00s6\x00\x00*\x00\x00\x00\xa76\x00\x00\n\x00\x00\x00\xd26\x00\x00\x14\x00\x00\x00\xdd6\x00\x00\x16\x00\x00\x00\xf26\x00\x00\x16\x00\x00\x00\t7\x00\x00\x0f\x00\x00\x00 7\x00\x00\x05\x00\x00\x0007\x00\x00\x1d\x00\x00\x0067\x00\x00\x0e\x00\x00\x00T7\x00\x00\x1a\x00\x00\x00c7\x00\x00\n\x00\x00\x00~7\x00\x00\x10\x00\x00\x00\x897\x00\x00\r\x00\x00\x00\x9a7\x00\x00\x11\x00\x00\x00\xa87\x00\x00\x1f\x00\x00\x00\xba7\x00\x00\x13\x00\x00\x00\xda7\x00\x00\x1b\x00\x00\x00\xee7\x00\x00\x05\x00\x00\x00\n8\x00\x00\x0b\x00\x00\x00\x108\x00\x008\x00\x00\x00\x1c8\x00\x00\x08\x00\x00\x00U8\x00\x00\x8a\x00\x00\x00^8\x00\x00\x1d\x01\x00\x00\xe98\x00\x00J\x00\x00\x00\x07:\x00\x00#\x00\x00\x00R:\x00\x00\x04\x00\x00\x00v:\x00\x00\x06\x00\x00\x00{:\x00\x00\x07\x00\x00\x00\x82:\x00\x00\x07\x00\x00\x00\x8a:\x00\x00\'\x00\x00\x00\x92:\x00\x00\x1b\x00\x00\x00\xba:\x00\x00\x19\x00\x00\x00\xd6:\x00\x00\x06\x00\x00\x00\xf0:\x00\x00\x0c\x00\x00\x00\xf7:\x00\x00\t\x00\x00\x00\x04;\x00\x00\x06\x00\x00\x00\x0e;\x00\x00\xdc\x01\x00\x00\x15;\x00\x00n\x00\x00\x00\xf2<\x00\x00a\x00\x00\x00a=\x00\x00\x0e\x00\x00\x00\xc3=\x00\x00\x0e\x00\x00\x00\xd2=\x00\x00\xa8\x00\x00\x00\xe1=\x00\x00&\x00\x00\x00\x8a>\x00\x00\x10\x00\x00\x00\xb1>\x00\x00\x19\x00\x00\x00\xc2>\x00\x00\x1a\x00\x00\x00\xdc>\x00\x00.\x00\x00\x00\xf7>\x00\x00\r\x00\x00\x00&?\x00\x00\x1a\x00\x00\x004?\x00\x00\x1e\x00\x00\x00O?\x00\x00\x03\x00\x00\x00n?\x00\x00\x12\x00\x00\x00r?\x00\x00\x05\x00\x00\x00\x85?\x00\x00\n\x00\x00\x00\x8b?\x00\x00,\x00\x00\x00\x96?\x00\x00\x07\x00\x00\x00\xc3?\x00\x00-\x00\x00\x00\xcb?\x00\x00\x0b\x00\x00\x00\xf9?\x00\x00$\x00\x00\x00\x05@\x00\x00$\x00\x00\x00*@\x00\x00\x07\x00\x00\x00O@\x00\x000\x00\x00\x00W@\x00\x00\x10\x00\x00\x00\x88@\x00\x00\x08\x00\x00\x00\x99@\x00\x00y\x00\x00\x00\xa2@\x00\x00\x10\x00\x00\x00\x1cA\x00\x00\x04\x00\x00\x00-A\x00\x00\x06\x00\x00\x002A\x00\x00"\x00\x00\x009A\x00\x00\t\x00\x00\x00\\A\x00\x00\n\x00\x00\x00fA\x00\x00\x14\x00\x00\x00qA\x00\x00\x10\x00\x00\x00\x86A\x00\x00\x11\x00\x00\x00\x97A\x00\x00\x08\x00\x00\x00\xa9A\x00\x00\x10\x00\x00\x00\xb2A\x00\x00\x12\x00\x00\x00\xc3A\x00\x00\x04\x00\x00\x00\xd6A\x00\x00^\x00\x00\x00\xdbA\x00\x00\x0f\x00\x00\x00:B\x00\x00\n\x00\x00\x00JB\x00\x00\x07\x00\x00\x00UB\x00\x00-\x00\x00\x00]B\x00\x00+\x00\x00\x00\x8bB\x00\x00F\x00\x00\x00\xb7B\x00\x008\x00\x00\x00\xfeB\x00\x00s\x00\x00\x007C\x00\x00\x0f\x00\x00\x00\xabC\x00\x00\n\x00\x00\x00\xbbC\x00\x00\x10\x00\x00\x00\xc6C\x00\x00:\x00\x00\x00\xd7C\x00\x00\x0f\x00\x00\x00\x12D\x00\x00\x04\x00\x00\x00"D\x00\x00;\x00\x00\x00\'D\x00\x00G\x00\x00\x00cD\x00\x001\x00\x00\x00\xabD\x00\x00Y\x00\x00\x00\xddD\x00\x004\x00\x00\x007E\x00\x00\x80\x00\x00\x00lE\x00\x00H\x00\x00\x00\xedE\x00\x00\r\x00\x00\x006F\x00\x00\xbc\x00\x00\x00DF\x00\x00\x08\x00\x00\x00\x01G\x00\x00\t\x00\x00\x00\nG\x00\x00\x06\x00\x00\x00\x14G\x00\x00\x1e\x00\x00\x00\x1bG\x00\x00\x13\x00\x00\x00:G\x00\x00\x0e\x00\x00\x00NG\x00\x00\x1b\x00\x00\x00]G\x00\x00\x13\x00\x00\x00yG\x00\x00+\x00\x00\x00\x8dG\x00\x00*\x00\x00\x00\xb9G\x00\x000\x00\x00\x00\xe4G\x00\x00)\x00\x00\x00\x15H\x00\x00<\x00\x00\x00?H\x00\x00\x0c\x00\x00\x00|H\x00\x00\x17\x00\x00\x00\x89H\x00\x00<\x00\x00\x00\xa1H\x00\x000\x00\x00\x00\xdeH\x00\x00\x84\x00\x00\x00\x0fI\x00\x00X\x00\x00\x00\x94I\x00\x00\x0f\x00\x00\x00\xedI\x00\x00\x12\x00\x00\x00\xfdI\x00\x00-\x00\x00\x00\x10J\x00\x00\x0c\x00\x00\x00>J\x00\x00\x0c\x00\x00\x00KJ\x00\x00\x0c\x00\x00\x00XJ\x00\x00"\x00\x00\x00eJ\x00\x009\x00\x00\x00\x88J\x00\x00\x0f\x00\x00\x00\xc2J\x00\x00V\x00\x00\x00\xd2J\x00\x00r\x00\x00\x00)K\x00\x00G\x00\x00\x00\x9cK\x00\x00\'\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00\x0cL\x00\x00\x13\x00\x00\x00\x1bL\x00\x00\x14\x00\x00\x00/L\x00\x00#\x00\x00\x00DL\x00\x00\x06\x00\x00\x00hL\x00\x00\r\x00\x00\x00oL\x00\x00\r\x00\x00\x00}L\x00\x00\x07\x00\x00\x00\x8bL\x00\x00\x1e\x00\x00\x00\x93L\x00\x00\x0b\x00\x00\x00\xb2L\x00\x00\x17\x00\x00\x00\xbeL\x00\x00\x1b\x00\x00\x00\xd6L\x00\x00\x1a\x00\x00\x00\xf2L\x00\x00\x0e\x00\x00\x00\rM\x00\x00^\x00\x00\x00\x1cM\x00\x00\x12\x00\x00\x00{M\x00\x00\x10\x00\x00\x00\x8eM\x00\x00\x10\x00\x00\x00\x9fM\x00\x00g\x00\x00\x00\xb0M\x00\x00c\x00\x00\x00\x18N\x00\x007\x00\x00\x00|N\x00\x00!\x00\x00\x00\xb4N\x00\x00d\x00\x00\x00\xd6N\x00\x00\t\x00\x00\x00;O\x00\x00\x17\x00\x00\x00EO\x00\x00\x16\x00\x00\x00]O\x00\x00\x11\x00\x00\x00tO\x00\x00\x04\x01\x00\x00\x86O\x00\x00z\x00\x00\x00\x8bP\x00\x00\x85\x00\x00\x00\x06Q\x00\x00\xb6\x00\x00\x00\x8cQ\x00\x00P\x00\x00\x00CR\x00\x00+\x01\x00\x00\x94R\x00\x00#\x00\x00\x00\xc0S\x00\x00\x06\x00\x00\x00\xe4S\x00\x00\x17\x00\x00\x00\xebS\x00\x00\x14\x00\x00\x00\x03T\x00\x00\x07\x00\x00\x00\x18T\x00\x00\x03\x00\x00\x00 T\x00\x00\n\x00\x00\x00$T\x00\x00\x13\x00\x00\x00/T\x00\x00\x04\x00\x00\x00CT\x00\x00\x85\x00\x00\x00HT\x00\x00\x04\x00\x00\x00\xceT\x00\x00\t\x00\x00\x00\xd3T\x00\x000\x00\x00\x00\xddT\x00\x00X\x00\x00\x00\x0eU\x00\x00\x1b\x00\x00\x00gU\x00\x00\x1a\x00\x00\x00\x83U\x00\x00\x9d\x00\x00\x00\x9eU\x00\x00&\x00\x00\x00<V\x00\x00\x1e\x00\x00\x00cV\x00\x00v\x00\x00\x00\x82V\x00\x00\'\x00\x00\x00\xf9V\x00\x00"\x00\x00\x00!W\x00\x00B\x00\x00\x00DW\x00\x00^\x00\x00\x00\x87W\x00\x00h\x00\x00\x00\xe6W\x00\x00.\x00\x00\x00OX\x00\x00\t\x00\x00\x00~X\x00\x00\x05\x00\x00\x00\x88X\x00\x00\x15\x00\x00\x00\x8eX\x00\x00\x06\x00\x00\x00\xa4X\x00\x00+\x00\x00\x00\xabX\x00\x00\x1b\x00\x00\x00\xd7X\x00\x00&\x00\x00\x00\xf3X\x00\x00\x0b\x00\x00\x00\x1aY\x00\x00\x07\x00\x00\x00&Y\x00\x00\x13\x00\x00\x00.Y\x00\x00\x0c\x00\x00\x00BY\x00\x00\x10\x00\x00\x00OY\x00\x00\x10\x00\x00\x00`Y\x00\x00%\x00\x00\x00qY\x00\x00\x1b\x00\x00\x00\x97Y\x00\x00\xb4\x00\x00\x00\xb3Y\x00\x002\x00\x00\x00hZ\x00\x00\x14\x00\x00\x00\x9bZ\x00\x00_\x00\x00\x00\xb0Z\x00\x00:\x00\x00\x00\x10[\x00\x00*\x00\x00\x00K[\x00\x00\x04\x00\x00\x00v[\x00\x00\x14\x00\x00\x00{[\x00\x00\x07\x00\x00\x00\x90[\x00\x00\x07\x00\x00\x00\x98[\x00\x00-\x00\x00\x00\xa0[\x00\x00d\x00\x00\x00\xce[\x00\x00#\x00\x00\x003\\\x00\x002\x00\x00\x00W\\\x00\x003\x00\x00\x00\x8a\\\x00\x00\x08\x00\x00\x00\xbe\\\x00\x00\t\x00\x00\x00\xc7\\\x00\x00+\x01\x00\x00\xd1\\\x00\x00 \x00\x00\x00\xfd]\x00\x00\x1d\x00\x00\x00\x1e^\x00\x00\x05\x00\x00\x00<^\x00\x00\x04\x00\x00\x00B^\x00\x00\x1b\x00\x00\x00G^\x00\x00\r\x00\x00\x00c^\x00\x00\x04\x00\x00\x00q^\x00\x00\x03\x00\x00\x00v^\x00\x00\t\x00\x00\x00z^\x00\x00\t\x00\x00\x00\x84^\x00\x00"\x00\x00\x00\x8e^\x00\x00\x12\x00\x00\x00\xb1^\x00\x00\x0c\x00\x00\x00\xc4^\x00\x00\x0e\x00\x00\x00\xd1^\x00\x00\x0f\x00\x00\x00\xe0^\x00\x00\n\x00\x00\x00\xf0^\x00\x00\x0e\x00\x00\x00\xfb^\x00\x00\x15\x00\x00\x00\n_\x00\x00&\x00\x00\x00 _\x00\x00\x0c\x00\x00\x00G_\x00\x00$\x00\x00\x00T_\x00\x00\x15\x00\x00\x00y_\x00\x00\x0f\x00\x00\x00\x8f_\x00\x001\x00\x00\x00\x9f_\x00\x00&\x00\x00\x00\xd1_\x00\x00\x1e\x00\x00\x00\xf8_\x00\x00\x0c\x00\x00\x00\x17`\x00\x00\x13\x00\x00\x00$`\x00\x00\x1b\x00\x00\x008`\x00\x00\x0f\x00\x00\x00T`\x00\x00\r\x00\x00\x00d`\x00\x00+\x00\x00\x00r`\x00\x00\t\x00\x00\x00\x9e`\x00\x00\n\x00\x00\x00\xa8`\x00\x00\x07\x00\x00\x00\xb3`\x00\x00\x19\x00\x00\x00\xbb`\x00\x00\x11\x00\x00\x00\xd5`\x00\x00\x1a\x00\x00\x00\xe7`\x00\x00\x0f\x00\x00\x00\x02a\x00\x00\x0c\x00\x00\x00\x12a\x00\x00\n\x00\x00\x00\x1fa\x00\x00\x08\x00\x00\x00*a\x00\x00\x13\x00\x00\x003a\x00\x00\x18\x00\x00\x00Ga\x00\x00\x1e\x00\x00\x00`a\x00\x00\x05\x00\x00\x00\x7fa\x00\x00\x08\x00\x00\x00\x85a\x00\x00\x0e\x00\x00\x00\x8ea\x00\x00\x17\x00\x00\x00\x9da\x00\x00\x18\x00\x00\x00\xb5a\x00\x00\x03\x00\x00\x00\xcea\x00\x00V\x00\x00\x00\xd2a\x00\x00A\x00\x00\x00)b\x00\x003\x00\x00\x00kb\x00\x00\x1e\x00\x00\x00\x9fb\x00\x006\x00\x00\x00\xbeb\x00\x00M\x02\x00\x00\xf5b\x00\x00\xa3\x01\x00\x00Ce\x00\x00\x8c\x02\x00\x00\xe7f\x00\x00L\x00\x00\x00ti\x00\x00O\x00\x00\x00\xc1i\x00\x004\x00\x00\x00\x11j\x00\x00\x8f\x00\x00\x00Fj\x00\x00j\x00\x00\x00\xd6j\x00\x00d\x00\x00\x00Ak\x00\x00/\x00\x00\x00\xa6k\x00\x00\xd5\x00\x00\x00\xd6k\x00\x00\x7f\x00\x00\x00\xacl\x00\x00\xcd\x00\x00\x00,m\x00\x00\xa4\x01\x00\x00\xfam\x00\x00<\x00\x00\x00\x9fo\x00\x00\x01\x00\x00\x00\xdco\x00\x00M\x00\x00\x00\xdeo\x00\x00p\x00\x00\x00,p\x00\x00\n\x00\x00\x00\x9dp\x00\x00\x16\x00\x00\x00\xa8p\x00\x00\x14\x00\x00\x00\xbfp\x00\x00\x10\x00\x00\x00\xd4p\x00\x00/\x00\x00\x00\xe5p\x00\x00I\x00\x00\x00\x15q\x00\x00D\x00\x00\x00_q\x00\x00@\x00\x00\x00\xa4q\x00\x00\x10\x00\x00\x00\xe5q\x00\x003\x00\x00\x00\xf6q\x00\x00}\x00\x00\x00*r\x00\x00\x98\x00\x00\x00\xa8r\x00\x00$\x00\x00\x00As\x00\x00\x1b\x00\x00\x00fs\x00\x00M\x00\x00\x00\x82s\x00\x00"\x00\x00\x00\xd0s\x00\x00\x8f\x00\x00\x00\xf3s\x00\x00\t\x00\x00\x00\x83t\x00\x00\x10\x00\x00\x00\x8dt\x00\x00\x10\x00\x00\x00\x9et\x00\x00\x10\x00\x00\x00\xaft\x00\x00\x05\x00\x00\x00\xc0t\x00\x00\t\x00\x00\x00\xc6t\x00\x00\'\x00\x00\x00\xd0t\x00\x00!\x00\x00\x00\xf8t\x00\x00\x13\x00\x00\x00\x1au\x00\x00\x05\x00\x00\x00.u\x00\x00\x1a\x00\x00\x004u\x00\x00\x12\x00\x00\x00Ou\x00\x00\t\x00\x00\x00bu\x00\x00\x08\x00\x00\x00lu\x00\x00\x13\x00\x00\x00uu\x00\x00\x1c\x00\x00\x00\x89u\x00\x00\x06\x00\x00\x00\xa6u\x00\x00\x1f\x00\x00\x00\xadu\x00\x00\x07\x00\x00\x00\xcdu\x00\x003\x00\x00\x00\xd5u\x00\x00\x16\x00\x00\x00\tv\x00\x00\x05\x00\x00\x00 v\x00\x00)\x00\x00\x00&v\x00\x00\x13\x00\x00\x00Pv\x00\x007\x00\x00\x00dv\x00\x00A\x00\x00\x00\x9cv\x00\x006\x00\x00\x00\xdev\x00\x00\x12\x00\x00\x00\x15w\x00\x00%\x00\x00\x00(w\x00\x00\x18\x00\x00\x00Nw\x00\x00?\x00\x00\x00gw\x00\x00\x1a\x00\x00\x00\xa7w\x00\x00\x15\x00\x00\x00\xc2w\x00\x00P\x00\x00\x00\xd8w\x00\x00 \x00\x00\x00)x\x00\x004\x00\x00\x00Jx\x00\x005\x00\x00\x00\x7fx\x00\x00\x1d\x00\x00\x00\xb5x\x00\x00g\x00\x00\x00\xd3x\x00\x00-\x00\x00\x00;y\x00\x00\x12\x00\x00\x00iy\x00\x00%\x00\x00\x00|y\x00\x00\x18\x00\x00\x00\xa2y\x00\x00\x13\x00\x00\x00\xbby\x00\x00\n\x00\x00\x00\xcfy\x00\x00\x18\x00\x00\x00\xday\x00\x00\x17\x00\x00\x00\xf3y\x00\x00T\x00\x00\x00\x0bz\x00\x00\x1b\x00\x00\x00`z\x00\x00\x19\x00\x00\x00|z\x00\x00V\x00\x00\x00\x96z\x00\x00\x18\x00\x00\x00\xedz\x00\x00\x11\x00\x00\x00\x06{\x00\x00&\x00\x00\x00\x18{\x00\x00\x1b\x00\x00\x00?{\x00\x00&\x00\x00\x00[{\x00\x00E\x00\x00\x00\x82{\x00\x00\x0c\x00\x00\x00\xc8{\x00\x00\r\x00\x00\x00\xd5{\x00\x00\r\x00\x00\x00\xe3{\x00\x00\x1e\x00\x00\x00\xf1{\x00\x00\x17\x00\x00\x00\x10|\x00\x00\x14\x00\x00\x00(|\x00\x00\x17\x00\x00\x00=|\x00\x00\x10\x00\x00\x00U|\x00\x00#\x00\x00\x00f|\x00\x00W\x00\x00\x00\x8a|\x00\x004\x00\x00\x00\xe2|\x00\x00}\x00\x00\x00\x17}\x00\x00.\x00\x00\x00\x95}\x00\x00"\x00\x00\x00\xc4}\x00\x00\n\x00\x00\x00\xe7}\x00\x00\x1f\x00\x00\x00\xf2}\x00\x00\x04\x00\x00\x00\x12~\x00\x002\x00\x00\x00\x17~\x00\x00\x0b\x00\x00\x00J~\x00\x00\x8f\x00\x00\x00V~\x00\x00\x14\x00\x00\x00\xe6~\x00\x00 \x00\x00\x00\xfb~\x00\x00!\x00\x00\x00\x1c\x7f\x00\x00\x10\x00\x00\x00>\x7f\x00\x00\x18\x00\x00\x00O\x7f\x00\x00#\x00\x00\x00h\x7f\x00\x00\x01\x00\x00\x00\x8c\x7f\x00\x00\x06\x00\x00\x00\x8e\x7f\x00\x00\x14\x00\x00\x00\x95\x7f\x00\x00 \x00\x00\x00\xaa\x7f\x00\x00\x14\x00\x00\x00\xcb\x7f\x00\x00\x1c\x00\x00\x00\xe0\x7f\x00\x00%\x00\x00\x00\xfd\x7f\x00\x00\x0f\x00\x00\x00#\x80\x00\x00"\x00\x00\x003\x80\x00\x00Q\x00\x00\x00V\x80\x00\x00\x06\x00\x00\x00\xa8\x80\x00\x00=\x00\x00\x00\xaf\x80\x00\x00\x1f\x00\x00\x00\xed\x80\x00\x00=\x00\x00\x00\r\x81\x00\x00"\x00\x00\x00K\x81\x00\x00,\x00\x00\x00n\x81\x00\x00:\x00\x00\x00\x9b\x81\x00\x00/\x00\x00\x00\xd6\x81\x00\x00\n\x00\x00\x00\x06\x82\x00\x00\x17\x00\x00\x00\x11\x82\x00\x00\x1a\x00\x00\x00)\x82\x00\x00$\x00\x00\x00D\x82\x00\x00\x11\x00\x00\x00i\x82\x00\x00\n\x00\x00\x00{\x82\x00\x009\x00\x00\x00\x86\x82\x00\x00\x1b\x00\x00\x00\xc0\x82\x00\x00-\x00\x00\x00\xdc\x82\x00\x00\x14\x00\x00\x00\n\x83\x00\x00\x17\x00\x00\x00\x1f\x83\x00\x00\x0c\x00\x00\x007\x83\x00\x00\x10\x00\x00\x00D\x83\x00\x00*\x00\x00\x00U\x83\x00\x00\x17\x00\x00\x00\x80\x83\x00\x00\x1d\x00\x00\x00\x98\x83\x00\x00\x07\x00\x00\x00\xb6\x83\x00\x00\x0b\x00\x00\x00\xbe\x83\x00\x00B\x00\x00\x00\xca\x83\x00\x00\x06\x00\x00\x00\r\x84\x00\x00\xc3\x00\x00\x00\x14\x84\x00\x005\x01\x00\x00\xd8\x84\x00\x00[\x00\x00\x00\x0e\x86\x00\x00)\x00\x00\x00j\x86\x00\x00\x03\x00\x00\x00\x94\x86\x00\x00\x06\x00\x00\x00\x98\x86\x00\x00\x07\x00\x00\x00\x9f\x86\x00\x00\x06\x00\x00\x00\xa7\x86\x00\x004\x00\x00\x00\xae\x86\x00\x00#\x00\x00\x00\xe3\x86\x00\x00\x1e\x00\x00\x00\x07\x87\x00\x00\t\x00\x00\x00&\x87\x00\x00\x04\x00\x00\x000\x87\x00\x00\x0b\x00\x00\x005\x87\x00\x00\x07\x00\x00\x00A\x87\x00\x00\x1b\x02\x00\x00I\x87\x00\x00\x8f\x00\x00\x00e\x89\x00\x00n\x00\x00\x00\xf5\x89\x00\x00\x16\x00\x00\x00d\x8a\x00\x00\x12\x00\x00\x00{\x8a\x00\x00\xcc\x00\x00\x00\x8e\x8a\x00\x002\x00\x00\x00[\x8b\x00\x00\x19\x00\x00\x00\x8e\x8b\x00\x00\x1e\x00\x00\x00\xa8\x8b\x00\x00\x1e\x00\x00\x00\xc7\x8b\x00\x006\x00\x00\x00\xe6\x8b\x00\x00\x12\x00\x00\x00\x1d\x8c\x00\x00\x1f\x00\x00\x000\x8c\x00\x00#\x00\x00\x00P\x8c\x00\x00\x07\x00\x00\x00t\x8c\x00\x00"\x00\x00\x00|\x8c\x00\x00\t\x00\x00\x00\x9f\x8c\x00\x00\x11\x00\x00\x00\xa9\x8c\x00\x002\x00\x00\x00\xbb\x8c\x00\x00\t\x00\x00\x00\xee\x8c\x00\x00C\x00\x00\x00\xf8\x8c\x00\x00\r\x00\x00\x00<\x8d\x00\x003\x00\x00\x00J\x8d\x00\x009\x00\x00\x00~\x8d\x00\x00\x19\x00\x00\x00\xb8\x8d\x00\x001\x00\x00\x00\xd2\x8d\x00\x00\x17\x00\x00\x00\x04\x8e\x00\x00\x08\x00\x00\x00\x1c\x8e\x00\x00\xa1\x00\x00\x00%\x8e\x00\x00\x17\x00\x00\x00\xc7\x8e\x00\x00\x04\x00\x00\x00\xdf\x8e\x00\x00\n\x00\x00\x00\xe4\x8e\x00\x006\x00\x00\x00\xef\x8e\x00\x00\r\x00\x00\x00&\x8f\x00\x00\x11\x00\x00\x004\x8f\x00\x00\x17\x00\x00\x00F\x8f\x00\x00\x19\x00\x00\x00^\x8f\x00\x00\x19\x00\x00\x00x\x8f\x00\x00\x0c\x00\x00\x00\x92\x8f\x00\x00\x0f\x00\x00\x00\x9f\x8f\x00\x00>\x00\x00\x00\xaf\x8f\x00\x00\x05\x00\x00\x00\xee\x8f\x00\x00_\x00\x00\x00\xf4\x8f\x00\x00\x1e\x00\x00\x00T\x90\x00\x00\x0f\x00\x00\x00s\x90\x00\x00\x07\x00\x00\x00\x83\x90\x00\x00\x1d\x00\x00\x00\x8b\x90\x00\x00\x1b\x00\x00\x00\xa9\x90\x00\x00H\x00\x00\x00\xc5\x90\x00\x00D\x00\x00\x00\x0e\x91\x00\x00\x95\x00\x00\x00S\x91\x00\x00\x12\x00\x00\x00\xe9\x91\x00\x00\x0c\x00\x00\x00\xfc\x91\x00\x00\x14\x00\x00\x00\t\x92\x00\x00J\x00\x00\x00\x1e\x92\x00\x00\x18\x00\x00\x00i\x92\x00\x00\x06\x00\x00\x00\x82\x92\x00\x00F\x00\x00\x00\x89\x92\x00\x00[\x00\x00\x00\xd0\x92\x00\x00@\x00\x00\x00,\x93\x00\x00r\x00\x00\x00m\x93\x00\x00M\x00\x00\x00\xe0\x93\x00\x00\x8c\x00\x00\x00.\x94\x00\x00S\x00\x00\x00\xbb\x94\x00\x00\x11\x00\x00\x00\x0f\x95\x00\x00\xbc\x00\x00\x00!\x95\x00\x00\x0b\x00\x00\x00\xde\x95\x00\x00\x07\x00\x00\x00\xea\x95\x00\x00\x04\x00\x00\x00\xf2\x95\x00\x00$\x00\x00\x00\xf7\x95\x00\x00\x16\x00\x00\x00\x1c\x96\x00\x00\x13\x00\x00\x003\x96\x00\x00 \x00\x00\x00G\x96\x00\x00\x14\x00\x00\x00h\x96\x00\x00-\x00\x00\x00}\x96\x00\x00-\x00\x00\x00\xab\x96\x00\x002\x00\x00\x00\xd9\x96\x00\x00+\x00\x00\x00\x0c\x97\x00\x00J\x00\x00\x008\x97\x00\x00\x14\x00\x00\x00\x83\x97\x00\x00\x1d\x00\x00\x00\x98\x97\x00\x00E\x00\x00\x00\xb6\x97\x00\x001\x00\x00\x00\xfc\x97\x00\x00\xae\x00\x00\x00.\x98\x00\x00N\x00\x00\x00\xdd\x98\x00\x00\x10\x00\x00\x00,\x99\x00\x00(\x00\x00\x00=\x99\x00\x002\x00\x00\x00f\x99\x00\x00\x08\x00\x00\x00\x99\x99\x00\x00\r\x00\x00\x00\xa2\x99\x00\x00\x19\x00\x00\x00\xb0\x99\x00\x004\x00\x00\x00\xca\x99\x00\x00=\x00\x00\x00\xff\x99\x00\x00\r\x00\x00\x00=\x9a\x00\x00i\x00\x00\x00K\x9a\x00\x00\x87\x00\x00\x00\xb5\x9a\x00\x00Q\x00\x00\x00=\x9b\x00\x000\x00\x00\x00\x8f\x9b\x00\x00\x12\x00\x00\x00\xc0\x9b\x00\x00!\x00\x00\x00\xd3\x9b\x00\x00\x1c\x00\x00\x00\xf5\x9b\x00\x000\x00\x00\x00\x12\x9c\x00\x00\x07\x00\x00\x00C\x9c\x00\x00\x10\x00\x00\x00K\x9c\x00\x00\r\x00\x00\x00\\\x9c\x00\x00\x07\x00\x00\x00j\x9c\x00\x001\x00\x00\x00r\x9c\x00\x00\x16\x00\x00\x00\xa4\x9c\x00\x002\x00\x00\x00\xbb\x9c\x00\x00%\x00\x00\x00\xee\x9c\x00\x00%\x00\x00\x00\x14\x9d\x00\x00\x11\x00\x00\x00:\x9d\x00\x00b\x00\x00\x00L\x9d\x00\x00\x1a\x00\x00\x00\xaf\x9d\x00\x00\x16\x00\x00\x00\xca\x9d\x00\x00\x17\x00\x00\x00\xe1\x9d\x00\x00\x95\x00\x00\x00\xf9\x9d\x00\x00r\x00\x00\x00\x8f\x9e\x00\x00B\x00\x00\x00\x02\x9f\x00\x000\x00\x00\x00E\x9f\x00\x00}\x00\x00\x00v\x9f\x00\x00\x0b\x00\x00\x00\xf4\x9f\x00\x00\x19\x00\x00\x00\x00\xa0\x00\x00\x19\x00\x00\x00\x1a\xa0\x00\x00\x1c\x00\x00\x004\xa0\x00\x00\x1c\x01\x00\x00Q\xa0\x00\x00\x81\x00\x00\x00n\xa1\x00\x00\x96\x00\x00\x00\xf0\xa1\x00\x00\xbd\x00\x00\x00\x87\xa2\x00\x00c\x00\x00\x00E\xa3\x00\x00b\x01\x00\x00\xa9\xa3\x00\x00%\x00\x00\x00\x0c\xa5\x00\x00\x06\x00\x00\x002\xa5\x00\x00\x1f\x00\x00\x009\xa5\x00\x00\x18\x00\x00\x00Y\xa5\x00\x00\x07\x00\x00\x00r\xa5\x00\x00\x07\x00\x00\x00z\xa5\x00\x00\x15\x00\x00\x00\x82\xa5\x00\x00\x1e\x00\x00\x00\x98\xa5\x00\x00\x04\x00\x00\x00\xb7\xa5\x00\x00\x94\x00\x00\x00\xbc\xa5\x00\x00\x04\x00\x00\x00Q\xa6\x00\x00\t\x00\x00\x00V\xa6\x00\x00A\x00\x00\x00`\xa6\x00\x00l\x00\x00\x00\xa2\xa6\x00\x00\x1a\x00\x00\x00\x0f\xa7\x00\x00\x1a\x00\x00\x00*\xa7\x00\x00\xb2\x00\x00\x00E\xa7\x00\x00)\x00\x00\x00\xf8\xa7\x00\x00#\x00\x00\x00"\xa8\x00\x00\xa6\x00\x00\x00F\xa8\x00\x00*\x00\x00\x00\xed\xa8\x00\x00%\x00\x00\x00\x18\xa9\x00\x00^\x00\x00\x00>\xa9\x00\x00s\x00\x00\x00\x9d\xa9\x00\x00\xae\x00\x00\x00\x11\xaa\x00\x005\x00\x00\x00\xc0\xaa\x00\x00\n\x00\x00\x00\xf6\xaa\x00\x00\x05\x00\x00\x00\x01\xab\x00\x00 \x00\x00\x00\x07\xab\x00\x00\x06\x00\x00\x00(\xab\x00\x008\x00\x00\x00/\xab\x00\x00!\x00\x00\x00h\xab\x00\x00%\x00\x00\x00\x8a\xab\x00\x00\x0c\x00\x00\x00\xb0\xab\x00\x00\x07\x00\x00\x00\xbd\xab\x00\x00\x1b\x00\x00\x00\xc5\xab\x00\x00\x0e\x00\x00\x00\xe1\xab\x00\x00\x12\x00\x00\x00\xf0\xab\x00\x00\x12\x00\x00\x00\x03\xac\x00\x00;\x00\x00\x00\x16\xac\x00\x000\x00\x00\x00R\xac\x00\x00\xca\x00\x00\x00\x83\xac\x00\x00F\x00\x00\x00N\xad\x00\x00\x1e\x00\x00\x00\x95\xad\x00\x00i\x00\x00\x00\xb4\xad\x00\x00N\x00\x00\x00\x1e\xae\x00\x007\x00\x00\x00m\xae\x00\x00\n\x00\x00\x00\xa5\xae\x00\x00\x19\x00\x00\x00\xb0\xae\x00\x00\n\x00\x00\x00\xca\xae\x00\x00\x08\x00\x00\x00\xd5\xae\x00\x00B\x00\x00\x00\xde\xae\x00\x00s\x00\x00\x00!\xaf\x00\x001\x00\x00\x00\x95\xaf\x00\x00<\x00\x00\x00\xc7\xaf\x00\x002\x00\x00\x00\x04\xb0\x00\x00\n\x00\x00\x007\xb0\x00\x00\t\x00\x00\x00B\xb0\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book <font face="serif">%s</font> of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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<br>CSS\x00Page Setup\x00Parsing LRF file\x00Password for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: libprs500 0.4.22\nPOT-Creation-Date: 2008-04-01 09:18+PDT\nPO-Revision-Date: 2008-01-20 09:59+0100\nLast-Translator: FixB <fix.bornes@free.fr>\nLanguage-Team: fr\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\n\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\nArtikel %s von %s geladen\n%s\x00 Tage\x00 von\x00 n\'est pas une image vailde\x00 pas trouv\xc3\xa9.\x00 pts\x00 px\x00 secondes\x00 \xc3\xa9toiles\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00&Access Key;\x00Feed &anf\xc3\xbcgen\x00Ajoute mot-clef\x00&Auteurs :\x00Marge &Basse :\x00Datenbank verdi&chten\x00&D\xc3\xa9sactive la d\xc3\xa9tection de chapitres\x00&Feed Titel:\x00&Force un saut de page avant le tag:\x00Format de l\'&en-t\xc3\xaate\x00Marge &Gauche :\x00&Emplacement de la base de donn\xc3\xa9es (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace :\x00\xc3\x84<ester Artikel:\x00Saut de &page avant le tag:\x00Mot de &passe :\x00&Preprocess :\x00&Priorit\xc3\xa9 pour les travaux de conversion :\x00&Profil :\x00&Editeur :\x00&Note :\x00Expression &R\xc3\xa9guli\xc3\xa8re :\x00Rezept entfe&rnen\x00&Supprime des mots-clefs :\x00Marge &Droite :\x00&Recherche :\x00&S\xc3\xa9ries :\x00&Serif :\x00&Affiche l\'en-t\xc3\xaate\x00&Affiche le mot de passe\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&Titre :\x00Marge &Haute :\x00Nom de l\'&utilisateur :\x00Espacement entre &mots :\x00...\x00<b>Les modifications ne seront prises en compte qu\'apr\xc3\xa8s avoir relanc\xc3\xa9 le programme.\x00<b>Erreur \xc3\xa0 la r\xc3\xa9cup\xc3\xa9ration de l\'image de couverture.</b><br/>\x00<b>Aucun r\xc3\xa9sultat</b> pour la recherche <i>%s</i>.\x00<br>Doit \xc3\xaatre un r\xc3\xa9pertoire.\x00<font color="gray">Aucune aide n\'est disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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 gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Fichiers HTML0 g\xc3\xa9n\xc3\xa9r\xc3\xa9s avec Book Designer</li>\x00<li><b>pdftohtml</b> - fichiers HTML g\xc3\xa9n\xc3\xa9r\xc3\xa9s par le programme pdftohtml</li>\x00<ol><li><b>baen</b> -Livres des \xc3\xa9ditions BAEN </li>\x00<p>Une base de donn\xc3\xa9es invalide existe d\xc3\xa9j\xc3\xa0 ici : %s, spprimez la avant d\'essayer de d\xc3\xa9placer la base de donn\xc3\xa9es existante.<br>Erreur : %s\x00<p>Des livres ayant le m\xc3\xaame titre existent d\xc3\xa9j\xc3\xa0 dans la base de donn\xc3\xa9es. Les ajouter quand m\xc3\xaame ?<ul>\x00<p>Impossible d\'envoyer les livres sur le lecteur : il n\'y a plus assez d\'espace m\xc3\xa9moire disponible\x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Veuillez saisir votre nom d\'utilisateur et votre mot de passe de <b>LibraryThing.com</b>. <br/>Si vous n\'en avez pas, vous pouvez <a href=\'http://www.librarything.com\'>y cr\xc3\xa9er un compte </a> gratuitement !</p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Il y a eu une erreur \xc3\xa0 la lecture du fichier : <br /><b>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Une expression r\xc3\xa9guli\xc3\xa8re. Les tags <a> qui respectent cette expression seront ignor\xc3\xa9s. Par d\xc3\xa9faut : %default\x00Mots-clefs\x00Mots-clefs disponibles\x00Ex\xc3\xa9cutions en cours\x00Ajout de Ta&gs :\x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Ajouter un r\xc3\xa9petoire \xc3\xa0 la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Rajoute une en-t\xc3\xaate \xc3\xa0 toutes les pages, avec le titre et l\'auteur.\x00Ajout d\'un nouveau format dans la base de donn\xc3\xa9es pour ce livre\x00Ajout d\'un livre\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Ajuste la pr\xc3\xa9sentation du fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9 en d\xc3\xa9finissant des param\xc3\xa8tres tels que la taille des polices et l\'espacement entre les mots.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Irgendein\x00Applique le mot-clef au livre en cours.\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00Cl\xc3\xa9 de tr&i de l\'auteur :\x00T&ri de l\'auteur :\x00Auteur(s)\x00Autoren:\x00Formats disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Recule\x00Taille de &police par d\xc3\xa9faut :\x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Livre\x00Livre <font face="serif">%s</font> of %s.\x00Couverture du livre\x00La marge de bas de page. Par d\xc3\xa9faut : %default points.\x00Rechercher une image \xc3\xa0 utiliser en tant que couverture du livre.\x00Choisir un nouvel emplacement pour la base de donn\xc3\xa9es\x00Convertion par lot\x00eBooks auf einmal zu LRF konvertieren\x00Configuration impossible\x00Impossible de configurer pendant que des travaux sont en cours.\x00Impossible de se connecter\x00Conversion impossible\x00Conversion du livre %s impossible parcequ\'il ne dispose d\'aucun format support\xc3\xa9\x00Erreur \xc3\xa0 l\'\xc3\xa9dition des metadat\x00Erreur \xc3\xa0 la r\xc3\xa9cup\xc3\xa9ration de l\'image de couverture\x00Kann schon fertiggestellte Auftr\xc3\xa4ge nicht abbrechen.\x00Kann Auftrag nicht abbrechen.\x00Kann Auftr\xc3\xa4ge nicht abbrechen, die mit dem Ger\xc3\xa4t kommunizieren, da dies zu Datenverlust f\xc3\xbchren kann.\x00Kann Auftr\xc3\xa4ge in Warteliste nicht abbrechen.\x00Impossible de lire\x00Ne peut pas enregistrer sur le disque\x00Impossible de visualiser\x00Carte\n%s disponible\x00Cat\xc3\xa9gorie\x00Modifie l\'image &cover :\x00Modifie le mot de passe\x00Modifie les auteurs du livres. Si plusieurs auteurs, les s\xc3\xa9parer avec des virgules.\x00Modifie l\'\xc3\xa9diteur du livre\x00Modifie le titre du livre\x00Modifie le nom d\'utilisateur et/ou le mot de passe de votre compte \xc3\xa0 LibraryThing.com\x00D\xc3\xa9tection des chapitres\x00Choisir le format\x00Choix du format de conversion vers LRF\x00Format zur Vorschau w\xc3\xa4hlen\x00Ein Klick zeigt die aktiven Auftr\xc3\xa4ge.\x00Liste de mots-clefs s\xc3\xa9par\xc3\xa9s par des virgules \xc3\xa0 retirer des livres.\x00Commentaires\x00Configuration\x00Configuration\x00Configuration du visualisateur\x00Conversion de %s en LRF\x00Convertir des ebooks\x00Convertion individuelle\x00Convertir en LRF\x00Konnte Umschlagbild nicht laden: %s\x00Konnte Artikel nicht abrufen. Der erneute Start mit --debug zeigt m\xc3\xb6gliche Gr\xc3\xbcnde an \x00Erreur \xc3\xa0 la r\xc3\xa9cup\xc3\xa9ration de l\'image de couverture\x00L\'image de couverture n\'a pas pu \xc3\xaatre r\xc3\xa9cup\xc3\xa9r\xc3\xa9e \xc3\xa0 cause de probl\xc3\xa8mes de connexion. Veuillez r\xc3\xa9essayer ult\xc3\xa9rieurement.\x00D\xc3\xa9placement de la base de donn\xc3\xa9es impossible\x00Konnte Datei nicht analysieren: %s\x00Cr\xc3\xa9\xc3\xa9 par\x00Individuelle Nachrichtenquellen\x00Date\x00&Timeout par d\xc3\xa9faut pour les connexions r\xc3\xa9seau :\x00Suppression\x00Supprime un mot-clef de la base de donn\xc3\xa9es. Cette op\xc3\xa9ration va retirer ce mot-clef de tous les livres et le supprimer de la base de donn\xc3\xa9es.\x00Details des Auftrags\x00Je ne sais pas \xc3\xa0 quoi cela sert\x00Fortschrittsbalken nicht anzeigen\x00Download beendet\x00Lade Umschlagbild von %s\x00Des doublons ont \xc3\xa9t\xc3\xa9 d\xc3\xa9tect\xc3\xa9s !\x00E\x00ERREUR\x00Edition des metadata\x00Editer les informations Metadata\x00Edition des metadata\x00Edition des metadata par lot\x00Edition des metadata individuellement\x00Polices inclues\x00Active l\'auto &rotation des images\x00Permet l\'autorotation des images qui sont plus larges que la largeur de l\'\xc3\xa9cran.\x00Fehler\x00Erreur pendant la communication avec le lecteur \xc3\xa9lectronique\x00Erreur \xc3\xa0 la lecture du fichier\x00Erreur pendant la communication avec le lecteur \xc3\xa9lectronique\x00Extrait la vignette du fichier LRF\x00Laden der Artikel fehlgeschlagen: %s von %s\n\x00Der Download von Teilen der folgenden Artikel schlug fehl:\x00Der Download der folgenden Artikel schlug fehl:\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00R\xc3\xa9cup\xc3\xa8re\x00R\xc3\xa9cup\xc3\xa9ration de l\'image de couverture depuis le serveur\x00R\xc3\xa9cup\xc3\xa9ration des metadata\x00R\xc3\xa9cup\xc3\xa9ration des metadata depuis le serveur\x00R\xc3\xa9cup\xc3\xa9rer des News\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00R\xc3\xa9cup\xc3\xa9ration des metadata pour <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Peaufiner la d\xc3\xa9tection des chapitres et des en-t\xc3\xaates de section.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Impose un saut de page avant un \xc3\xa9l\xc3\xa9ment avec l\'attribut sp\xc3\xa9cifi\xc3\xa9. Le format de cette option est : tagname regexp,attribute name,attribute value regexp.Par exemple, pour utiliser tous les tags de titres qui ont l\'attribut de classe "chapter" il faudrait saisir : "h\\d,class,chapter". Par d\xc3\xa9faut : %default\x00Impose un saut de page avant chaque tags dont le nom respecte cette expression r\xc3\xa9guli\xc3\xa8re.\x00Force un saut de page avant l\'&attribut :\x00Art\x00Format\x00Formats\x00Avance\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00R\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Feeds der Index Seite erhalten\x00En-t\xc3\xaatre\x00Aide\x00Hyphenation\x00I&SBN :\x00Si html2lrf ne trouve aucun saut de page dans le fichier html et ne peut pas d\xc3\xa9tecter de chapitres, il ins\xc3\xa8rera automatiquement des sauts de pages avant les tags dont le nom respectent cette expression r\xc3\xa9guli\xc3\xa8re. Par d\xc3\xa9faut : %default. Vous pouvez d\xc3\xa9sactiver cette fonction en saisissant "$". Le but de cette option est d\'essayer de s\'assurer qu\'il n\'y a pas de vraiment trop longues pages, car cela d\xc3\xa9grades les performances lorsque l\'on change de page. De ce fait, cette option est ignor\xc3\xa9e si la page courante a peu d\'\xc3\xa9l\xc3\xa9ments.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si une couverture est d\xc3\xa9ctect\xc3\xa9e dans le fichier source, utilise cette image plut\xc3\xb4t que l\'image sp\xc3\xa9cifi\xc3\xa9e.\x00Farben nicht bea&chten\x00Ignore les &tables\x00Augmente la taille de la police de 2 * FONT_DELTA points et l\'espacement entre lignes de FONT_DELTA points. FONT_DELTA peut-\xc3\xaatre un r\xc3\xa9el. Si FONT_DELTA est n\xc3\xa9gatif, la taille de la police est r\xc3\xa9duite.\x00Ins\xc3\xa8re des lignes &blanches entre les paragraphes\x00Base de donn\xc3\xa9es invalide\x00Chemin de la database invalide\x00Chemin de la database invalide\x00Chemin de la database invalide.<br>Erreur en \xc3\xa9criture\x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Travaux\x00Auftrag durch Benutzer abgebrochen\x00Travaux :\x00Visualisateur LRF\x00La marge de gauche. Par d\xc3\xa9faut : %default points.\x00Librairie\x00Liste de s\xc3\xa9ries connues. Vous pouvez ajouter de nouvelles s\xc3\xa9ries.\x00Pr\xc3\xa9sentation\x00\xc3\x9cbereinstimmung mit a&llen der folgenden Kriterien\x00\xc3\x9cbereinstimmung mit irge&ndeinem der folgenden Kriterien\x00R\xc3\xa9sultats correspondants\x00Maximale Anzahl der zu ladenden Artikel pro feed.\x00Informations (metadata)\x00Metadata\x00Minimise l\'espace m\xc3\xa9moire utilis\xc3\xa9 au d\xc3\xa9triment d\'un temps de calcul plus long. N\'utilisez cette option que si vous avez des probl\xc3\xa8mes de m\xc3\xa9moire disponible.\x00E&inr\xc3\xbccken mindestens:\x00Mehr\x00Ausblenden\x00Nachrichten abgerufen. \xc3\x9cbertragung ans Ger\xc3\xa4t l\xc3\xa4uft.\x00Page suivante\x00R\xc3\xa9sultat suivant\x00Aucun format disponible\x00Aucun livre s\xc3\xa9lectionn\xc3\xa9\x00Aucun livre s\xc3\xa9lectionn\xc3\xa9\x00Kein Treffer\x00Aucun r\xc3\xa9sultat\x00Le lecteur \xc3\xa9lectronique n\'a plus d\'espace m\xc3\xa9moire disponible\x00Aucun\x00Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. Voreinstellung %default\x00Ouvre l\'\xc3\xa9diteur de mots-clefs\x00Ouvrir le livre\x00Options\x00Einstellungen f\xc3\xbcr feeds2disk\x00Einstellungen f\xc3\xbcr html2lrf\x00Einstellungen f\xc3\xbcr web2disk (um von Feeds verlinkte Webseiten abzurufen)\x00Nom du fichier r\xc3\xa9sultat. Bas\xc3\xa9 par d\xc3\xa9faut sur le fichier d\'entr\xc3\xa9e\x00Surcharge le CSS. Peut \xc3\xaatre soit un chemin vers une feuille de styles CC ou une cha\xc3\xaene. Si c\'est une cha\xc3\xaene, elle est interpr\xc3\xa9t\xc3\xa9e comme du CSS. \x00Surcharge <br> CSS\x00Mise en page\x00Parse le fichier LRF\x00Passwort f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Mot de passe n\xc3\xa9cessaire\x00Chemin\x00Chemin d\'une image qui sera utilis\xc3\xa9e comme vignette pour ces fichiers\x00Chemin d\'un fichier texte contenant les commentaires qui seront inclus dans le fichier lrf.\x00Chemin du fichier contenant l\'image \xc3\xa0 utiliser comme couverture\x00Pfad zum Ausgabeverzeichnis, in dem die HTML Datei erstellt werden soll. Voreinstellung auf aktuelles Verzeichnis.\x00Pr\xc3\xa9processe les fichiers HTML Bean pour am\xc3\xa9liorer le fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9.\x00Pr\xc3\xa9-processe le fichier avant la conversion vers le format LRF. Ceci est utile si vous connaissez l\'origine du fichiers. Origines connues :\x00Emp\xc3\xaache l\'insertion automatique d\'un saut de page avant chaque chapitre d\xc3\xa9tect\xc3\xa9.\x00Page pr\xc3\xa9c\xc3\xa9dente\x00Le profil du lecteur pour lequel le LRF est g\xc3\xa9n\xc3\xa9r\xc3\xa9. Ce profil d\xc3\xa9termine des param\xc3\xa8tres comme la r\xc3\xa9solution et la taille de l\'\xc3\xa9cran du lecteur. Par d\xc3\xa9faut : %s Profils support\xc3\xa9s : \x00Progression\x00Editeur\x00Note\x00Note de ce livre. de 0 \xc3\xa0 5 \xc3\xa9toiles\x00Lecteur \n%s disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Supprime un r\xc3\xa9petoire de la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Suppression du livre\x00Feed aus dem Rezept entfernen\x00Retire les formats s\xc3\xa9lectionn\xc3\xa9s de ce livre de la base de donn\xc3\xa9es.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Affiche les tables HTML comme de simples blocs de textes au lieu de v\xc3\xa9ritables tables. Cela peut \xc3\xaatre n\xc3\xa9cessaire si le HTML contient des tables trop grosses ou complexes .\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00R\xc3\xa9initialisation de la recherche rapide\x00La marge de droite. Par d\xc3\xa9faut : %default points.\x00Laufzeit\x00S&ans-serif :\x00Enregistrer sur le disque\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Recherche les livres par titre ou auteur <br><br>Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00Recherche les livres par titre, auteur, \xc3\xa9diteur, tags et commentaires <br><br>Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00S\xc3\xa9lectionnez le livre qui correspond le mieux au votre dans la liste ci-dessous.\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Envoyer au lecteur\x00Envoi vers la m\xc3\xa9moire du lecteur\x00Envoi vers la carte m\xc3\xa9moire\x00S\xc3\xa9pare les paragraphe avec des lignes blanches.\x00S\xc3\xa9ries\x00Index de s\xc3\xa9ries\x00Serien Index:\x00Serien:\x00Erreur Serveur. Veuillez essayer ult\xc3\xa9rieurement.\x00D\xc3\xa9finit l\'ID du livre\x00D\xc3\xa9finir les param\xc3\xa8tres par d\xc3\xa9faut de conversion\x00D\xc3\xa9finit la clef de tri pour l\'auteur\x00D\xc3\xa9finit la cl\xc3\xa9 de tri pour le titre\x00D\xc3\xa9finit l\'auteur\x00D\xc3\xa9finir le(s) auteur(s). Si plusieurs auteurs, les s\xc3\xa9parer d\'une virgule. Par d\xc3\xa9faut : %default\x00D\xc3\xa9finit le titre du livre\x00D\xc3\xa9finir la cat\xc3\xa9gorie\x00D\xc3\xa9finir le commentaire\x00Voreinstellung der Zeit\xc3\xbcberschreitung f\xc3\xbcr Netzwerkabrufe festsetzen (Gilt immer dann, wenn aus dem Internet Informationen abgerufen werden sollen) \x00D\xc3\xa9finit le format de l\'en-t\xc3\xaate de page. %a est remplac\xc3\xa9 par l\'auteur et %t par le titre. Par d\xc3\xa9faut : %default\x00D\xc3\xa9finit les epsaces entre les mots en pts. Par d\xc3\xa9faut : %default\x00Indiquer le titre. Par d\xc3\xa9faut : nom du fichier.\x00Enregistrez-vous gratuitement sur <a href="http://www.isbndb.com">ISBNdb.com</a> pour obtenir une clef d\'acc\xc3\xa8s (access key).\x00Taille (MB)\x00Cl\xc3\xa9 de tri pour l\'auteur\x00Cl\xc3\xa9 de tri pour le titre\x00En&codierung der Quelldatei:\x00Geben Sie eine Liste von Feeds zum Download an. Zum Beispiel: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nWenn Sie diese Option w\xc3\xa4hlen, wird jedes Argument %prog ignoriert und die Voreinstellung zum Download der Feeds verwendet. \x00D\xc3\xa9finit comment l\'auteur de ce livre doit \xc3\xaatre class\xc3\xa9. Par exemple, Charles Dickens peut \xc3\xaatre class\xc3\xa9 comme Dickens, Charles.\x00D\xc3\xa9finit les metadata comme le titre et l\'auteur du livre.<p>Les metadata seront modifi\xc3\xa9es dans la base de donn\xc3\xa9es et dans le fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9.\x00D\xc3\xa9finit la taille de base de la police en pts. Toutes les poslices sont retaill\xc3\xa9es en fonction. Cette option remplace l\'ancienne option --font-delta. Pour utiliser --font-delta, saisir 0.\x00D\xc3\xa9finit les param\xc3\xa8tres de la pages tels que les marges et la taille de l\'\xc3\xa9cran du lecteur cible.\x00D\xc3\xa9finit des familles de polices truetype pour les polices serif, sans-serif et monospace. Ces polices seront inclues dans le fichier LRF. Attention : inclure des polices dans le fichier ralentit les changements de pages. Chaque d\xc3\xa9finition de famille est de la forme : "chemin du r\xc3\xa9pertoir, famille" Par exemple : --serif-family "%s, Times New Roman"\x00Starte Download von [%d Thread(s)]...\x00Statut\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Ta&gs :\x00Etikett\x00Editeur de Mots-Clefs\x00D\xc3\xa9tection bas\xc3\xa9e sur des tags\x00Tags\x00Tags caract\xc3\xa9risant le livre, particuli\xc3\xa8rement utile pour la recherche. <br> <br> Cela peut \xc3\xaatre n\'importe quels mots, s\xc3\xa9par\xc3\xa9s par des virgules.\x00Test\x00TextLabel\x00La cat\xc3\xa9gorie \xc3\xa0 laquelle le livre appartient. Exemple : Histoire\x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Le nombre maximum de niveau de liens \xc3\xa0 suivre r\xc3\xa9cursivement. Une valeur \xc3\xa0 0 indique qu\'aucun lien ne sera trait\xc3\xa9. Une valeur n\xc3\xa9gative indique que les tags <a> sont ignor\xc3\xa9s.\x00La famille de police monospace \xc3\xa0 inclure\x00\xc3\x84ltester Artikel, der geladen wird\x00L\'expression r\xc3\xa9guli\xc3\xa8re utilis\xc3\xa9e pour d\xc3\xa9tecter les titres de chapitres. Cette expression rest recherch\xc3\xa9e dans les tags d\'en-t\xc3\xaates (h1-h6). Par d\xc3\xa9faut : %default\x00La famille de police sans-serif \xc3\xa0 inclure\x00La famille de police serif \xc3\xa0 inclure\x00Der Text, nach dem gesucht werden soll. Dies wird als eine Regul\xc3\xa4re Expression interpretiert.\x00Der Titel f\xc3\xbcr dieses Rezept. Wird als Titel f\xc3\xbcr alle eBooks benutzt, die aus den geladenen Feeds erstellt wurden.\x00Une erreur temporaire s\'est d\xc3\xa9clench\xc3\xa9e pendant la communication avec le lecteur \xc3\xa9lectronique. Veuillez d\xc3\xa9connecter et reconnecter le lecteur \xc3\xa9lectronique et red\xc3\xa9marrer.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Horodatage\x00Titre\x00D\xc3\xa9tection bas\xc3\xa9e sur les titres\x00Titel:\x00La marge de haut de page. Par d\xc3\xa9faut : %default points.\x00Versuche Umschlagbild zu laden...\x00Enl\xc3\xa8ve le mot-clef du livre en cours\x00Indisponible\x00Inconnu\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Utilisation de chiffres romains pour les num\xc3\xa9ro de s\xc3\xa9ries\x00Utilise l\'image de couverture du fichier &source\x00Utilise l\'\xc3\xa9l\xc3\xa9ment <spine> du fichier OPF pour d\xc3\xa9terminer l\'odre dans lequel les fichiers HTML sont ajout\xc3\xa9s au LRF. Le fichier .opt doit \xc3\xaatre dans le m\xc3\xaame r\xc3\xa9pertoire que les fichiers HTML de base.\x00Utilisez cette option sur des fichiers html0 venant de Book Designer.\x00Utilise un arri\xc3\xa8re-plan blanc\x00Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed und l\xc3\xa4dt h\xc3\xb6chstens 2 Feeds.\x00Benutzername f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Visualiser\x00Spezielles Format ansehen\x00En attente\x00En cours\x00Vous n\'avez pas les permissions n\xc3\xa9cessaires pour lire ce fichier:\x00Vous devez utiliser cette option pour traiter des fichiers g\xc3\xa9n\xc3\xa9r\xc3\xa9s par pdftohtml, sinon la conversion \xc3\xa9chouera.\x00Es muss eine einzelne PDF Datei angegeben werden.\x00Vous devez sp\xc3\xa9cifier une clef d\'acc\xc3\xa8s valide \xc3\xa0 isbndb.com\x00Vous devez fournir l\'identifiant ISBN de ce livre.\x00beinhaltet\x00libprs500\x00', 'ca': '\xde\x12\x04\x95\x00\x00\x00\x00\xa1\x01\x00\x00\x1c\x00\x00\x00$\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x1a\x00\x00\x0e\x00\x00\x00-\x1a\x00\x00!\x00\x00\x00<\x1a\x00\x00\x05\x00\x00\x00^\x1a\x00\x00\x06\x00\x00\x00d\x1a\x00\x00\x17\x00\x00\x00k\x1a\x00\x00\x0b\x00\x00\x00\x83\x1a\x00\x00\x04\x00\x00\x00\x8f\x1a\x00\x00\x03\x00\x00\x00\x94\x1a\x00\x00\x08\x00\x00\x00\x98\x1a\x00\x00\x06\x00\x00\x00\xa1\x1a\x00\x00\x1c\x00\x00\x00\xa8\x1a\x00\x00\x0e\x00\x00\x00\xc5\x1a\x00\x00\x0c\x00\x00\x00\xd4\x1a\x00\x00\t\x00\x00\x00\xe1\x1a\x00\x00\t\x00\x00\x00\xeb\x1a\x00\x00\x0c\x00\x00\x00\xf5\x1a\x00\x00\x0f\x00\x00\x00\x02\x1b\x00\x00\x11\x00\x00\x00\x12\x1b\x00\x00\x1a\x00\x00\x00$\x1b\x00\x00\x0c\x00\x00\x00?\x1b\x00\x00\x1d\x00\x00\x00L\x1b\x00\x00\x0f\x00\x00\x00j\x1b\x00\x00\r\x00\x00\x00z\x1b\x00\x00)\x00\x00\x00\x88\x1b\x00\x00"\x00\x00\x00\xb2\x1b\x00\x00\x18\x00\x00\x00\xd5\x1b\x00\x00\x0b\x00\x00\x00\xee\x1b\x00\x00\x10\x00\x00\x00\xfa\x1b\x00\x00\x17\x00\x00\x00\x0b\x1c\x00\x00\n\x00\x00\x00#\x1c\x00\x00\x0c\x00\x00\x00.\x1c\x00\x00\x1e\x00\x00\x00;\x1c\x00\x00\t\x00\x00\x00Z\x1c\x00\x00\x0c\x00\x00\x00d\x1c\x00\x00\x08\x00\x00\x00q\x1c\x00\x00\x14\x00\x00\x00z\x1c\x00\x00\x0e\x00\x00\x00\x8f\x1c\x00\x00\r\x00\x00\x00\x9e\x1c\x00\x00\x0e\x00\x00\x00\xac\x1c\x00\x00\x08\x00\x00\x00\xbb\x1c\x00\x00\x08\x00\x00\x00\xc4\x1c\x00\x00\x07\x00\x00\x00\xcd\x1c\x00\x00\x0c\x00\x00\x00\xd5\x1c\x00\x00\x0e\x00\x00\x00\xe2\x1c\x00\x00\x12\x00\x00\x00\xf1\x1c\x00\x00\x05\x00\x00\x00\x04\x1d\x00\x00\x08\x00\x00\x00\n\x1d\x00\x00\x0c\x00\x00\x00\x13\x1d\x00\x00\n\x00\x00\x00 \x1d\x00\x00\x0e\x00\x00\x00+\x1d\x00\x00\x03\x00\x00\x00:\x1d\x00\x001\x00\x00\x00>\x1d\x00\x00"\x00\x00\x00p\x1d\x00\x00=\x00\x00\x00\x93\x1d\x00\x00\x18\x00\x00\x00\xd1\x1d\x00\x00+\x00\x00\x00\xea\x1d\x00\x00\x00\x02\x00\x00\x16\x1e\x00\x00\xa3\x01\x00\x00\x17 \x00\x00\x82\x02\x00\x00\xbb!\x00\x00>\x00\x00\x00>$\x00\x00S\x00\x00\x00}$\x00\x005\x00\x00\x00\xd1$\x00\x00p\x00\x00\x00\x07%\x00\x00a\x00\x00\x00x%\x00\x00G\x00\x00\x00\xda%\x00\x00(\x00\x00\x00"&\x00\x00\xa7\x00\x00\x00K&\x00\x00W\x00\x00\x00\xf3&\x00\x00\x96\x00\x00\x00K\'\x00\x00=\x01\x00\x00\xe2\'\x00\x002\x00\x00\x00 )\x00\x00\x01\x00\x00\x00S)\x00\x00C\x00\x00\x00U)\x00\x00X\x00\x00\x00\x99)\x00\x00\r\x00\x00\x00\xf2)\x00\x00\x0f\x00\x00\x00\x00*\x00\x00\x0b\x00\x00\x00\x10*\x00\x00\x0b\x00\x00\x00\x1c*\x00\x00\x18\x00\x00\x00(*\x00\x007\x00\x00\x00A*\x00\x004\x00\x00\x00y*\x00\x00.\x00\x00\x00\xae*\x00\x00\t\x00\x00\x00\xdd*\x00\x00!\x00\x00\x00\xe7*\x00\x00b\x00\x00\x00\t+\x00\x00o\x00\x00\x00l+\x00\x00\x16\x00\x00\x00\xdc+\x00\x00\x12\x00\x00\x00\xf3+\x00\x006\x00\x00\x00\x06,\x00\x00\x12\x00\x00\x00=,\x00\x00m\x00\x00\x00P,\x00\x00\x08\x00\x00\x00\xbe,\x00\x00\x0f\x00\x00\x00\xc7,\x00\x00\x0f\x00\x00\x00\xd7,\x00\x00\x0e\x00\x00\x00\xe7,\x00\x00\x05\x00\x00\x00\xf6,\x00\x00\x03\x00\x00\x00\xfc,\x00\x00\x19\x00\x00\x00\x00-\x00\x00\x1b\x00\x00\x00\x1a-\x00\x00\x16\x00\x00\x006-\x00\x00\x06\x00\x00\x00M-\x00\x00\x0e\x00\x00\x00T-\x00\x00\r\x00\x00\x00c-\x00\x00\t\x00\x00\x00q-\x00\x00\x08\x00\x00\x00{-\x00\x00\x11\x00\x00\x00\x84-\x00\x00\x16\x00\x00\x00\x96-\x00\x00\x04\x00\x00\x00\xad-\x00\x00\x10\x00\x00\x00\xb2-\x00\x00\x05\x00\x00\x00\xc3-\x00\x00!\x00\x00\x00\xc9-\x00\x00\x10\x00\x00\x00\xeb-\x00\x00\x05\x00\x00\x00\xfc-\x00\x00(\x00\x00\x00\x02.\x00\x00\n\x00\x00\x00+.\x00\x00.\x00\x00\x006.\x00\x005\x00\x00\x00e.\x00\x00$\x00\x00\x00\x9b.\x00\x00\x0c\x00\x00\x00\xc0.\x00\x00\x1a\x00\x00\x00\xcd.\x00\x00\x10\x00\x00\x00\xe8.\x00\x00.\x00\x00\x00\xf9.\x00\x00\x0e\x00\x00\x00(/\x00\x00\x0e\x00\x00\x007/\x00\x007\x00\x00\x00F/\x00\x00\x14\x00\x00\x00~/\x00\x00\x12\x00\x00\x00\x93/\x00\x00#\x00\x00\x00\xa6/\x00\x00\x0f\x00\x00\x00\xca/\x00\x00Z\x00\x00\x00\xda/\x00\x00\x19\x00\x00\x0050\x00\x00\x0b\x00\x00\x00O0\x00\x00\x13\x00\x00\x00[0\x00\x00\x0b\x00\x00\x00o0\x00\x00\x11\x00\x00\x00{0\x00\x00\x08\x00\x00\x00\x8d0\x00\x00\x14\x00\x00\x00\x960\x00\x00\x0f\x00\x00\x00\xab0\x00\x00R\x00\x00\x00\xbb0\x00\x00!\x00\x00\x00\x0e1\x00\x00\x1d\x00\x00\x0001\x00\x00H\x00\x00\x00N1\x00\x00\x11\x00\x00\x00\x971\x00\x00\r\x00\x00\x00\xa91\x00\x00%\x00\x00\x00\xb71\x00\x00\x19\x00\x00\x00\xdd1\x00\x00!\x00\x00\x00\xf71\x00\x007\x00\x00\x00\x192\x00\x00\x08\x00\x00\x00Q2\x00\x00\r\x00\x00\x00Z2\x00\x00\t\x00\x00\x00h2\x00\x00\x10\x00\x00\x00r2\x00\x00\x11\x00\x00\x00\x832\x00\x00\x0f\x00\x00\x00\x952\x00\x00\x14\x00\x00\x00\xa52\x00\x00\x0e\x00\x00\x00\xba2\x00\x00\x1c\x00\x00\x00\xc92\x00\x00;\x00\x00\x00\xe62\x00\x00\x15\x00\x00\x00"3\x00\x00R\x00\x00\x0083\x00\x00\x17\x00\x00\x00\x8b3\x00\x00\x18\x00\x00\x00\xa33\x00\x00\x0b\x00\x00\x00\xbc3\x00\x00\x13\x00\x00\x00\xc83\x00\x00\x04\x00\x00\x00\xdc3\x00\x00\x19\x00\x00\x00\xe13\x00\x00\x03\x00\x00\x00\xfb3\x00\x00h\x00\x00\x00\xff3\x00\x00\x0e\x00\x00\x00h4\x00\x00\x1b\x00\x00\x00w4\x00\x00\x1a\x00\x00\x00\x934\x00\x00\x11\x00\x00\x00\xae4\x00\x00\x19\x00\x00\x00\xc04\x00\x00\x11\x00\x00\x00\xda4\x00\x00\x01\x00\x00\x00\xec4\x00\x00\x05\x00\x00\x00\xee4\x00\x00\x15\x00\x00\x00\xf44\x00\x00\x15\x00\x00\x00\n5\x00\x00\x15\x00\x00\x00 5\x00\x00\x15\x00\x00\x0065\x00\x00\x1a\x00\x00\x00L5\x00\x00\x0e\x00\x00\x00g5\x00\x00\x1f\x00\x00\x00v5\x00\x00C\x00\x00\x00\x965\x00\x00\x05\x00\x00\x00\xda5\x00\x00\x1f\x00\x00\x00\xe05\x00\x00\x12\x00\x00\x00\x006\x00\x00\x17\x00\x00\x00\x136\x00\x00\x1f\x00\x00\x00+6\x00\x00\'\x00\x00\x00K6\x00\x003\x00\x00\x00s6\x00\x00*\x00\x00\x00\xa76\x00\x00\n\x00\x00\x00\xd26\x00\x00\x14\x00\x00\x00\xdd6\x00\x00\x16\x00\x00\x00\xf26\x00\x00\x16\x00\x00\x00\t7\x00\x00\x0f\x00\x00\x00 7\x00\x00\x05\x00\x00\x0007\x00\x00\x1d\x00\x00\x0067\x00\x00\x0e\x00\x00\x00T7\x00\x00\x1a\x00\x00\x00c7\x00\x00\n\x00\x00\x00~7\x00\x00\x10\x00\x00\x00\x897\x00\x00\r\x00\x00\x00\x9a7\x00\x00\x11\x00\x00\x00\xa87\x00\x00\x1f\x00\x00\x00\xba7\x00\x00\x13\x00\x00\x00\xda7\x00\x00\x1b\x00\x00\x00\xee7\x00\x00\x05\x00\x00\x00\n8\x00\x00\x0b\x00\x00\x00\x108\x00\x008\x00\x00\x00\x1c8\x00\x00\x08\x00\x00\x00U8\x00\x00\x8a\x00\x00\x00^8\x00\x00\x1d\x01\x00\x00\xe98\x00\x00J\x00\x00\x00\x07:\x00\x00#\x00\x00\x00R:\x00\x00\x04\x00\x00\x00v:\x00\x00\x06\x00\x00\x00{:\x00\x00\x07\x00\x00\x00\x82:\x00\x00\x07\x00\x00\x00\x8a:\x00\x00\'\x00\x00\x00\x92:\x00\x00\x1b\x00\x00\x00\xba:\x00\x00\x19\x00\x00\x00\xd6:\x00\x00\x06\x00\x00\x00\xf0:\x00\x00\x0c\x00\x00\x00\xf7:\x00\x00\t\x00\x00\x00\x04;\x00\x00\x06\x00\x00\x00\x0e;\x00\x00\xdc\x01\x00\x00\x15;\x00\x00n\x00\x00\x00\xf2<\x00\x00a\x00\x00\x00a=\x00\x00\x0e\x00\x00\x00\xc3=\x00\x00\x0e\x00\x00\x00\xd2=\x00\x00\xa8\x00\x00\x00\xe1=\x00\x00&\x00\x00\x00\x8a>\x00\x00\x10\x00\x00\x00\xb1>\x00\x00\x19\x00\x00\x00\xc2>\x00\x00\x1a\x00\x00\x00\xdc>\x00\x00.\x00\x00\x00\xf7>\x00\x00\r\x00\x00\x00&?\x00\x00\x1a\x00\x00\x004?\x00\x00\x1e\x00\x00\x00O?\x00\x00\x03\x00\x00\x00n?\x00\x00\x12\x00\x00\x00r?\x00\x00\x05\x00\x00\x00\x85?\x00\x00\n\x00\x00\x00\x8b?\x00\x00,\x00\x00\x00\x96?\x00\x00\x07\x00\x00\x00\xc3?\x00\x00-\x00\x00\x00\xcb?\x00\x00\x0b\x00\x00\x00\xf9?\x00\x00$\x00\x00\x00\x05@\x00\x00$\x00\x00\x00*@\x00\x00\x07\x00\x00\x00O@\x00\x000\x00\x00\x00W@\x00\x00\x10\x00\x00\x00\x88@\x00\x00\x08\x00\x00\x00\x99@\x00\x00y\x00\x00\x00\xa2@\x00\x00\x10\x00\x00\x00\x1cA\x00\x00\x04\x00\x00\x00-A\x00\x00\x06\x00\x00\x002A\x00\x00"\x00\x00\x009A\x00\x00\t\x00\x00\x00\\A\x00\x00\n\x00\x00\x00fA\x00\x00\x14\x00\x00\x00qA\x00\x00\x10\x00\x00\x00\x86A\x00\x00\x11\x00\x00\x00\x97A\x00\x00\x08\x00\x00\x00\xa9A\x00\x00\x10\x00\x00\x00\xb2A\x00\x00\x12\x00\x00\x00\xc3A\x00\x00\x04\x00\x00\x00\xd6A\x00\x00^\x00\x00\x00\xdbA\x00\x00\x0f\x00\x00\x00:B\x00\x00\n\x00\x00\x00JB\x00\x00\x07\x00\x00\x00UB\x00\x00-\x00\x00\x00]B\x00\x00+\x00\x00\x00\x8bB\x00\x00F\x00\x00\x00\xb7B\x00\x008\x00\x00\x00\xfeB\x00\x00s\x00\x00\x007C\x00\x00\x0f\x00\x00\x00\xabC\x00\x00\n\x00\x00\x00\xbbC\x00\x00\x10\x00\x00\x00\xc6C\x00\x00:\x00\x00\x00\xd7C\x00\x00\x0f\x00\x00\x00\x12D\x00\x00\x04\x00\x00\x00"D\x00\x00;\x00\x00\x00\'D\x00\x00G\x00\x00\x00cD\x00\x001\x00\x00\x00\xabD\x00\x00Y\x00\x00\x00\xddD\x00\x004\x00\x00\x007E\x00\x00\x80\x00\x00\x00lE\x00\x00H\x00\x00\x00\xedE\x00\x00\r\x00\x00\x006F\x00\x00\xbc\x00\x00\x00DF\x00\x00\x08\x00\x00\x00\x01G\x00\x00\t\x00\x00\x00\nG\x00\x00\x06\x00\x00\x00\x14G\x00\x00\x1e\x00\x00\x00\x1bG\x00\x00\x13\x00\x00\x00:G\x00\x00\x0e\x00\x00\x00NG\x00\x00\x1b\x00\x00\x00]G\x00\x00\x13\x00\x00\x00yG\x00\x00+\x00\x00\x00\x8dG\x00\x00*\x00\x00\x00\xb9G\x00\x000\x00\x00\x00\xe4G\x00\x00)\x00\x00\x00\x15H\x00\x00<\x00\x00\x00?H\x00\x00\x0c\x00\x00\x00|H\x00\x00\x17\x00\x00\x00\x89H\x00\x00<\x00\x00\x00\xa1H\x00\x000\x00\x00\x00\xdeH\x00\x00\x84\x00\x00\x00\x0fI\x00\x00X\x00\x00\x00\x94I\x00\x00\x0f\x00\x00\x00\xedI\x00\x00\x12\x00\x00\x00\xfdI\x00\x00-\x00\x00\x00\x10J\x00\x00\x0c\x00\x00\x00>J\x00\x00\x0c\x00\x00\x00KJ\x00\x00\x0c\x00\x00\x00XJ\x00\x00"\x00\x00\x00eJ\x00\x009\x00\x00\x00\x88J\x00\x00\x0f\x00\x00\x00\xc2J\x00\x00V\x00\x00\x00\xd2J\x00\x00r\x00\x00\x00)K\x00\x00G\x00\x00\x00\x9cK\x00\x00\'\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00\x0cL\x00\x00\x13\x00\x00\x00\x1bL\x00\x00\x14\x00\x00\x00/L\x00\x00#\x00\x00\x00DL\x00\x00\x06\x00\x00\x00hL\x00\x00\r\x00\x00\x00oL\x00\x00\r\x00\x00\x00}L\x00\x00\x07\x00\x00\x00\x8bL\x00\x00\x1e\x00\x00\x00\x93L\x00\x00\x0b\x00\x00\x00\xb2L\x00\x00\x17\x00\x00\x00\xbeL\x00\x00\x1b\x00\x00\x00\xd6L\x00\x00\x1a\x00\x00\x00\xf2L\x00\x00\x0e\x00\x00\x00\rM\x00\x00^\x00\x00\x00\x1cM\x00\x00\x12\x00\x00\x00{M\x00\x00\x10\x00\x00\x00\x8eM\x00\x00\x10\x00\x00\x00\x9fM\x00\x00g\x00\x00\x00\xb0M\x00\x00c\x00\x00\x00\x18N\x00\x007\x00\x00\x00|N\x00\x00!\x00\x00\x00\xb4N\x00\x00d\x00\x00\x00\xd6N\x00\x00\t\x00\x00\x00;O\x00\x00\x17\x00\x00\x00EO\x00\x00\x16\x00\x00\x00]O\x00\x00\x11\x00\x00\x00tO\x00\x00\x04\x01\x00\x00\x86O\x00\x00z\x00\x00\x00\x8bP\x00\x00\x85\x00\x00\x00\x06Q\x00\x00\xb6\x00\x00\x00\x8cQ\x00\x00P\x00\x00\x00CR\x00\x00+\x01\x00\x00\x94R\x00\x00#\x00\x00\x00\xc0S\x00\x00\x06\x00\x00\x00\xe4S\x00\x00\x17\x00\x00\x00\xebS\x00\x00\x14\x00\x00\x00\x03T\x00\x00\x07\x00\x00\x00\x18T\x00\x00\x03\x00\x00\x00 T\x00\x00\n\x00\x00\x00$T\x00\x00\x13\x00\x00\x00/T\x00\x00\x04\x00\x00\x00CT\x00\x00\x85\x00\x00\x00HT\x00\x00\x04\x00\x00\x00\xceT\x00\x00\t\x00\x00\x00\xd3T\x00\x000\x00\x00\x00\xddT\x00\x00X\x00\x00\x00\x0eU\x00\x00\x1b\x00\x00\x00gU\x00\x00\x1a\x00\x00\x00\x83U\x00\x00\x9d\x00\x00\x00\x9eU\x00\x00&\x00\x00\x00<V\x00\x00\x1e\x00\x00\x00cV\x00\x00v\x00\x00\x00\x82V\x00\x00\'\x00\x00\x00\xf9V\x00\x00"\x00\x00\x00!W\x00\x00B\x00\x00\x00DW\x00\x00^\x00\x00\x00\x87W\x00\x00h\x00\x00\x00\xe6W\x00\x00.\x00\x00\x00OX\x00\x00\t\x00\x00\x00~X\x00\x00\x05\x00\x00\x00\x88X\x00\x00\x15\x00\x00\x00\x8eX\x00\x00\x06\x00\x00\x00\xa4X\x00\x00+\x00\x00\x00\xabX\x00\x00\x1b\x00\x00\x00\xd7X\x00\x00&\x00\x00\x00\xf3X\x00\x00\x0b\x00\x00\x00\x1aY\x00\x00\x07\x00\x00\x00&Y\x00\x00\x13\x00\x00\x00.Y\x00\x00\x0c\x00\x00\x00BY\x00\x00\x10\x00\x00\x00OY\x00\x00\x10\x00\x00\x00`Y\x00\x00%\x00\x00\x00qY\x00\x00\x1b\x00\x00\x00\x97Y\x00\x00\xb4\x00\x00\x00\xb3Y\x00\x002\x00\x00\x00hZ\x00\x00\x14\x00\x00\x00\x9bZ\x00\x00_\x00\x00\x00\xb0Z\x00\x00:\x00\x00\x00\x10[\x00\x00*\x00\x00\x00K[\x00\x00\x04\x00\x00\x00v[\x00\x00\x14\x00\x00\x00{[\x00\x00\x07\x00\x00\x00\x90[\x00\x00\x07\x00\x00\x00\x98[\x00\x00-\x00\x00\x00\xa0[\x00\x00d\x00\x00\x00\xce[\x00\x00#\x00\x00\x003\\\x00\x002\x00\x00\x00W\\\x00\x003\x00\x00\x00\x8a\\\x00\x00\x08\x00\x00\x00\xbe\\\x00\x00\t\x00\x00\x00\xc7\\\x00\x00\x1e\x01\x00\x00\xd1\\\x00\x00 \x00\x00\x00\xf0]\x00\x00\x1d\x00\x00\x00\x11^\x00\x00\x05\x00\x00\x00/^\x00\x00\x04\x00\x00\x005^\x00\x00\x1a\x00\x00\x00:^\x00\x00\x10\x00\x00\x00U^\x00\x00\x06\x00\x00\x00f^\x00\x00\n\x00\x00\x00m^\x00\x00\t\x00\x00\x00x^\x00\x00\t\x00\x00\x00\x82^\x00\x00"\x00\x00\x00\x8c^\x00\x00\x12\x00\x00\x00\xaf^\x00\x00\x0f\x00\x00\x00\xc2^\x00\x00\x0e\x00\x00\x00\xd2^\x00\x00\x12\x00\x00\x00\xe1^\x00\x00\n\x00\x00\x00\xf4^\x00\x00\x10\x00\x00\x00\xff^\x00\x00\x15\x00\x00\x00\x10_\x00\x00$\x00\x00\x00&_\x00\x00\x0c\x00\x00\x00K_\x00\x00-\x00\x00\x00X_\x00\x00\x19\x00\x00\x00\x86_\x00\x00\x10\x00\x00\x00\xa0_\x00\x00,\x00\x00\x00\xb1_\x00\x00&\x00\x00\x00\xde_\x00\x00\x1e\x00\x00\x00\x05`\x00\x00\x0e\x00\x00\x00$`\x00\x00\x13\x00\x00\x003`\x00\x00.\x00\x00\x00G`\x00\x00\r\x00\x00\x00v`\x00\x00\x11\x00\x00\x00\x84`\x00\x00(\x00\x00\x00\x96`\x00\x00\x08\x00\x00\x00\xbf`\x00\x00\x0b\x00\x00\x00\xc8`\x00\x00\x0c\x00\x00\x00\xd4`\x00\x00\x14\x00\x00\x00\xe1`\x00\x00\x11\x00\x00\x00\xf6`\x00\x00\x15\x00\x00\x00\x08a\x00\x00\x0c\x00\x00\x00\x1ea\x00\x00\t\x00\x00\x00+a\x00\x00\t\x00\x00\x005a\x00\x00\x07\x00\x00\x00?a\x00\x00\x13\x00\x00\x00Ga\x00\x00\x12\x00\x00\x00[a\x00\x00\x1e\x00\x00\x00na\x00\x00\x05\x00\x00\x00\x8da\x00\x00\n\x00\x00\x00\x93a\x00\x00\x10\x00\x00\x00\x9ea\x00\x00\x0e\x00\x00\x00\xafa\x00\x00\x19\x00\x00\x00\xbea\x00\x00\x03\x00\x00\x00\xd8a\x00\x00/\x00\x00\x00\xdca\x00\x00)\x00\x00\x00\x0cb\x00\x00>\x00\x00\x006b\x00\x00\x1e\x00\x00\x00ub\x00\x00-\x00\x00\x00\x94b\x00\x00M\x02\x00\x00\xc2b\x00\x00\xa3\x01\x00\x00\x10e\x00\x00\x8c\x02\x00\x00\xb4f\x00\x00>\x00\x00\x00Ai\x00\x00L\x00\x00\x00\x80i\x00\x004\x00\x00\x00\xcdi\x00\x00\x90\x00\x00\x00\x02j\x00\x00\x86\x00\x00\x00\x93j\x00\x00D\x00\x00\x00\x1ak\x00\x00/\x00\x00\x00_k\x00\x00\xcd\x00\x00\x00\x8fk\x00\x00\x7f\x00\x00\x00]l\x00\x00\xcd\x00\x00\x00\xddl\x00\x00\xa4\x01\x00\x00\xabm\x00\x00&\x00\x00\x00Po\x00\x00\x01\x00\x00\x00wo\x00\x00M\x00\x00\x00yo\x00\x00_\x00\x00\x00\xc7o\x00\x00\x16\x00\x00\x00\'p\x00\x00\x16\x00\x00\x00>p\x00\x00\x0f\x00\x00\x00Up\x00\x00\x18\x00\x00\x00ep\x00\x00/\x00\x00\x00~p\x00\x007\x00\x00\x00\xaep\x00\x00I\x00\x00\x00\xe6p\x00\x00;\x00\x00\x000q\x00\x00\x0f\x00\x00\x00lq\x00\x003\x00\x00\x00|q\x00\x00}\x00\x00\x00\xb0q\x00\x00\x98\x00\x00\x00.r\x00\x00$\x00\x00\x00\xc7r\x00\x00\x1b\x00\x00\x00\xecr\x00\x00Q\x00\x00\x00\x08s\x00\x00"\x00\x00\x00Zs\x00\x00m\x00\x00\x00}s\x00\x00\t\x00\x00\x00\xebs\x00\x00\x10\x00\x00\x00\xf5s\x00\x00\x10\x00\x00\x00\x06t\x00\x00\x10\x00\x00\x00\x17t\x00\x00\x05\x00\x00\x00(t\x00\x00\t\x00\x00\x00.t\x00\x00#\x00\x00\x008t\x00\x00!\x00\x00\x00\\t\x00\x00\x13\x00\x00\x00~t\x00\x00\x05\x00\x00\x00\x92t\x00\x00\x0f\x00\x00\x00\x98t\x00\x00\x11\x00\x00\x00\xa8t\x00\x00\x08\x00\x00\x00\xbat\x00\x00\x08\x00\x00\x00\xc3t\x00\x00\x13\x00\x00\x00\xcct\x00\x00\x1c\x00\x00\x00\xe0t\x00\x00\t\x00\x00\x00\xfdt\x00\x00\x1a\x00\x00\x00\x07u\x00\x00\x07\x00\x00\x00"u\x00\x003\x00\x00\x00*u\x00\x00\x16\x00\x00\x00^u\x00\x00\x07\x00\x00\x00uu\x00\x00*\x00\x00\x00}u\x00\x00\x07\x00\x00\x00\xa8u\x00\x007\x00\x00\x00\xb0u\x00\x00?\x00\x00\x00\xe8u\x00\x00+\x00\x00\x00(v\x00\x00\x0f\x00\x00\x00Tv\x00\x00%\x00\x00\x00dv\x00\x00\x14\x00\x00\x00\x8av\x00\x00/\x00\x00\x00\x9fv\x00\x00\x10\x00\x00\x00\xcfv\x00\x00\x13\x00\x00\x00\xe0v\x00\x009\x00\x00\x00\xf4v\x00\x00\x1c\x00\x00\x00.w\x00\x00\x1c\x00\x00\x00Kw\x00\x005\x00\x00\x00hw\x00\x00\x1d\x00\x00\x00\x9ew\x00\x00g\x00\x00\x00\xbcw\x00\x00-\x00\x00\x00$x\x00\x00\x10\x00\x00\x00Rx\x00\x00\x14\x00\x00\x00cx\x00\x00\x11\x00\x00\x00xx\x00\x00\x1e\x00\x00\x00\x8ax\x00\x00\t\x00\x00\x00\xa9x\x00\x00 \x00\x00\x00\xb3x\x00\x00\x10\x00\x00\x00\xd4x\x00\x00F\x00\x00\x00\xe5x\x00\x00\x1d\x00\x00\x00,y\x00\x00\x1d\x00\x00\x00Jy\x00\x00H\x00\x00\x00hy\x00\x00\x18\x00\x00\x00\xb1y\x00\x00\x0c\x00\x00\x00\xcay\x00\x00#\x00\x00\x00\xd7y\x00\x00\x1b\x00\x00\x00\xfby\x00\x00&\x00\x00\x00\x17z\x00\x00J\x00\x00\x00>z\x00\x00\n\x00\x00\x00\x89z\x00\x00\r\x00\x00\x00\x94z\x00\x00\t\x00\x00\x00\xa2z\x00\x00\x12\x00\x00\x00\xacz\x00\x00\x13\x00\x00\x00\xbfz\x00\x00\x11\x00\x00\x00\xd3z\x00\x00\x19\x00\x00\x00\xe5z\x00\x00\x0f\x00\x00\x00\xffz\x00\x00#\x00\x00\x00\x0f{\x00\x00W\x00\x00\x003{\x00\x00\x1c\x00\x00\x00\x8b{\x00\x00e\x00\x00\x00\xa8{\x00\x00\x1d\x00\x00\x00\x0e|\x00\x00"\x00\x00\x00,|\x00\x00\n\x00\x00\x00O|\x00\x00\x1f\x00\x00\x00Z|\x00\x00\x04\x00\x00\x00z|\x00\x00B\x00\x00\x00\x7f|\x00\x00\x07\x00\x00\x00\xc2|\x00\x00r\x00\x00\x00\xca|\x00\x00\x14\x00\x00\x00=}\x00\x00\x1b\x00\x00\x00R}\x00\x00!\x00\x00\x00n}\x00\x00\x10\x00\x00\x00\x90}\x00\x00\x18\x00\x00\x00\xa1}\x00\x00\x12\x00\x00\x00\xba}\x00\x00\x01\x00\x00\x00\xcd}\x00\x00\x05\x00\x00\x00\xcf}\x00\x00\x19\x00\x00\x00\xd5}\x00\x00\x17\x00\x00\x00\xef}\x00\x00\x19\x00\x00\x00\x07~\x00\x00\x18\x00\x00\x00!~\x00\x00\x1e\x00\x00\x00:~\x00\x00\x11\x00\x00\x00Y~\x00\x00)\x00\x00\x00k~\x00\x00V\x00\x00\x00\x95~\x00\x00\x06\x00\x00\x00\xec~\x00\x00*\x00\x00\x00\xf3~\x00\x00\x15\x00\x00\x00\x1e\x7f\x00\x00"\x00\x00\x004\x7f\x00\x00"\x00\x00\x00W\x7f\x00\x00,\x00\x00\x00z\x7f\x00\x00:\x00\x00\x00\xa7\x7f\x00\x00/\x00\x00\x00\xe2\x7f\x00\x00\n\x00\x00\x00\x12\x80\x00\x00\x17\x00\x00\x00\x1d\x80\x00\x00\x1a\x00\x00\x005\x80\x00\x00$\x00\x00\x00P\x80\x00\x00\x11\x00\x00\x00u\x80\x00\x00\x06\x00\x00\x00\x87\x80\x00\x00$\x00\x00\x00\x8e\x80\x00\x00\x10\x00\x00\x00\xb3\x80\x00\x00!\x00\x00\x00\xc4\x80\x00\x00\x18\x00\x00\x00\xe6\x80\x00\x00\x17\x00\x00\x00\xff\x80\x00\x00\x0c\x00\x00\x00\x17\x81\x00\x00\x10\x00\x00\x00$\x81\x00\x00#\x00\x00\x005\x81\x00\x00\x17\x00\x00\x00Y\x81\x00\x00\x1d\x00\x00\x00q\x81\x00\x00\x07\x00\x00\x00\x8f\x81\x00\x00\x0b\x00\x00\x00\x97\x81\x00\x000\x00\x00\x00\xa3\x81\x00\x00\x06\x00\x00\x00\xd4\x81\x00\x00\xc3\x00\x00\x00\xdb\x81\x00\x00%\x01\x00\x00\x9f\x82\x00\x00]\x00\x00\x00\xc5\x83\x00\x00.\x00\x00\x00#\x84\x00\x00\x03\x00\x00\x00R\x84\x00\x00\x06\x00\x00\x00V\x84\x00\x00\x07\x00\x00\x00]\x84\x00\x00\x08\x00\x00\x00e\x84\x00\x004\x00\x00\x00n\x84\x00\x00#\x00\x00\x00\xa3\x84\x00\x00\x1e\x00\x00\x00\xc7\x84\x00\x00\n\x00\x00\x00\xe6\x84\x00\x00\x13\x00\x00\x00\xf1\x84\x00\x00\x11\x00\x00\x00\x05\x85\x00\x00\x06\x00\x00\x00\x17\x85\x00\x00\xf1\x01\x00\x00\x1e\x85\x00\x00\x8f\x00\x00\x00\x10\x87\x00\x00o\x00\x00\x00\xa0\x87\x00\x00\x16\x00\x00\x00\x10\x88\x00\x00\x12\x00\x00\x00\'\x88\x00\x00\xc7\x00\x00\x00:\x88\x00\x00*\x00\x00\x00\x02\x89\x00\x00\x14\x00\x00\x00-\x89\x00\x00)\x00\x00\x00B\x89\x00\x00)\x00\x00\x00l\x89\x00\x00@\x00\x00\x00\x96\x89\x00\x00\x12\x00\x00\x00\xd7\x89\x00\x00\x1f\x00\x00\x00\xea\x89\x00\x00#\x00\x00\x00\n\x8a\x00\x00\x07\x00\x00\x00.\x8a\x00\x00"\x00\x00\x006\x8a\x00\x00\t\x00\x00\x00Y\x8a\x00\x00\t\x00\x00\x00c\x8a\x00\x007\x00\x00\x00m\x8a\x00\x00\n\x00\x00\x00\xa5\x8a\x00\x007\x00\x00\x00\xb0\x8a\x00\x00\t\x00\x00\x00\xe8\x8a\x00\x003\x00\x00\x00\xf2\x8a\x00\x009\x00\x00\x00&\x8b\x00\x00\x0e\x00\x00\x00`\x8b\x00\x001\x00\x00\x00o\x8b\x00\x00\x10\x00\x00\x00\xa1\x8b\x00\x00\t\x00\x00\x00\xb2\x8b\x00\x00\x84\x00\x00\x00\xbc\x8b\x00\x00\x17\x00\x00\x00A\x8c\x00\x00\x04\x00\x00\x00Y\x8c\x00\x00\n\x00\x00\x00^\x8c\x00\x006\x00\x00\x00i\x8c\x00\x00\x10\x00\x00\x00\xa0\x8c\x00\x00\x16\x00\x00\x00\xb1\x8c\x00\x00\x16\x00\x00\x00\xc8\x8c\x00\x00\x16\x00\x00\x00\xdf\x8c\x00\x00\x16\x00\x00\x00\xf6\x8c\x00\x00\x0c\x00\x00\x00\r\x8d\x00\x00\x1e\x00\x00\x00\x1a\x8d\x00\x00\x19\x00\x00\x009\x8d\x00\x00\x03\x00\x00\x00S\x8d\x00\x00_\x00\x00\x00W\x8d\x00\x00\x18\x00\x00\x00\xb7\x8d\x00\x00\x0c\x00\x00\x00\xd0\x8d\x00\x00\x07\x00\x00\x00\xdd\x8d\x00\x00\x1d\x00\x00\x00\xe5\x8d\x00\x00\x1b\x00\x00\x00\x03\x8e\x00\x00H\x00\x00\x00\x1f\x8e\x00\x00D\x00\x00\x00h\x8e\x00\x00\x96\x00\x00\x00\xad\x8e\x00\x00\x12\x00\x00\x00D\x8f\x00\x00\x1b\x00\x00\x00W\x8f\x00\x00\x1e\x00\x00\x00s\x8f\x00\x00J\x00\x00\x00\x92\x8f\x00\x00\x1d\x00\x00\x00\xdd\x8f\x00\x00\x05\x00\x00\x00\xfb\x8f\x00\x00<\x00\x00\x00\x01\x90\x00\x00F\x00\x00\x00>\x90\x00\x008\x00\x00\x00\x85\x90\x00\x00r\x00\x00\x00\xbe\x90\x00\x00H\x00\x00\x001\x91\x00\x00o\x00\x00\x00z\x91\x00\x00T\x00\x00\x00\xea\x91\x00\x00\x10\x00\x00\x00?\x92\x00\x00\xc0\x00\x00\x00P\x92\x00\x00\x0b\x00\x00\x00\x11\x93\x00\x00\t\x00\x00\x00\x1d\x93\x00\x00\n\x00\x00\x00\'\x93\x00\x00"\x00\x00\x002\x93\x00\x00"\x00\x00\x00U\x93\x00\x00\x13\x00\x00\x00x\x93\x00\x00 \x00\x00\x00\x8c\x93\x00\x00\x14\x00\x00\x00\xad\x93\x00\x00-\x00\x00\x00\xc2\x93\x00\x00-\x00\x00\x00\xf0\x93\x00\x002\x00\x00\x00\x1e\x94\x00\x00+\x00\x00\x00Q\x94\x00\x008\x00\x00\x00}\x94\x00\x00\x11\x00\x00\x00\xb6\x94\x00\x00\x1d\x00\x00\x00\xc8\x94\x00\x00I\x00\x00\x00\xe6\x94\x00\x001\x00\x00\x000\x95\x00\x00\x94\x00\x00\x00b\x95\x00\x00N\x00\x00\x00\xf7\x95\x00\x00\x10\x00\x00\x00F\x96\x00\x00 \x00\x00\x00W\x96\x00\x003\x00\x00\x00x\x96\x00\x00\x08\x00\x00\x00\xac\x96\x00\x00\x0c\x00\x00\x00\xb5\x96\x00\x00\x0c\x00\x00\x00\xc2\x96\x00\x004\x00\x00\x00\xcf\x96\x00\x00=\x00\x00\x00\x04\x97\x00\x00\r\x00\x00\x00B\x97\x00\x00c\x00\x00\x00P\x97\x00\x00\x8d\x00\x00\x00\xb4\x97\x00\x00D\x00\x00\x00B\x98\x00\x000\x00\x00\x00\x87\x98\x00\x00\x13\x00\x00\x00\xb8\x98\x00\x00\x1b\x00\x00\x00\xcc\x98\x00\x00\x1e\x00\x00\x00\xe8\x98\x00\x00+\x00\x00\x00\x07\x99\x00\x00\x07\x00\x00\x003\x99\x00\x00\x11\x00\x00\x00;\x99\x00\x00\r\x00\x00\x00M\x99\x00\x00\x07\x00\x00\x00[\x99\x00\x005\x00\x00\x00c\x99\x00\x00(\x00\x00\x00\x99\x99\x00\x00(\x00\x00\x00\xc2\x99\x00\x00\'\x00\x00\x00\xeb\x99\x00\x00*\x00\x00\x00\x13\x9a\x00\x00\x10\x00\x00\x00>\x9a\x00\x00d\x00\x00\x00O\x9a\x00\x00\x1a\x00\x00\x00\xb4\x9a\x00\x00\x16\x00\x00\x00\xcf\x9a\x00\x00\x18\x00\x00\x00\xe6\x9a\x00\x00\x95\x00\x00\x00\xff\x9a\x00\x00k\x00\x00\x00\x95\x9b\x00\x00;\x00\x00\x00\x01\x9c\x00\x00/\x00\x00\x00=\x9c\x00\x00m\x00\x00\x00m\x9c\x00\x00\x0f\x00\x00\x00\xdb\x9c\x00\x00\x1a\x00\x00\x00\xeb\x9c\x00\x00\x1d\x00\x00\x00\x06\x9d\x00\x00\x1c\x00\x00\x00$\x9d\x00\x00\x1c\x01\x00\x00A\x9d\x00\x00}\x00\x00\x00^\x9e\x00\x00\x8e\x00\x00\x00\xdc\x9e\x00\x00\xc5\x00\x00\x00k\x9f\x00\x00m\x00\x00\x001\xa0\x00\x00e\x01\x00\x00\x9f\xa0\x00\x00%\x00\x00\x00\x05\xa2\x00\x00\x05\x00\x00\x00+\xa2\x00\x00\x1f\x00\x00\x001\xa2\x00\x00\x18\x00\x00\x00Q\xa2\x00\x00\x0b\x00\x00\x00j\xa2\x00\x00\x07\x00\x00\x00v\xa2\x00\x00\x10\x00\x00\x00~\xa2\x00\x00\x1b\x00\x00\x00\x8f\xa2\x00\x00\t\x00\x00\x00\xab\xa2\x00\x00\x91\x00\x00\x00\xb5\xa2\x00\x00\x04\x00\x00\x00G\xa3\x00\x00\t\x00\x00\x00L\xa3\x00\x00<\x00\x00\x00V\xa3\x00\x00l\x00\x00\x00\x93\xa3\x00\x00\x1a\x00\x00\x00\x00\xa4\x00\x00\x1a\x00\x00\x00\x1b\xa4\x00\x00\x9e\x00\x00\x006\xa4\x00\x004\x00\x00\x00\xd5\xa4\x00\x00#\x00\x00\x00\n\xa5\x00\x00\x91\x00\x00\x00.\xa5\x00\x001\x00\x00\x00\xc0\xa5\x00\x00,\x00\x00\x00\xf2\xa5\x00\x00^\x00\x00\x00\x1f\xa6\x00\x00s\x00\x00\x00~\xa6\x00\x00|\x00\x00\x00\xf2\xa6\x00\x005\x00\x00\x00o\xa7\x00\x00\x0e\x00\x00\x00\xa5\xa7\x00\x00\x08\x00\x00\x00\xb4\xa7\x00\x00\x1f\x00\x00\x00\xbd\xa7\x00\x00\x06\x00\x00\x00\xdd\xa7\x00\x007\x00\x00\x00\xe4\xa7\x00\x00!\x00\x00\x00\x1c\xa8\x00\x00$\x00\x00\x00>\xa8\x00\x00\r\x00\x00\x00c\xa8\x00\x00\n\x00\x00\x00q\xa8\x00\x00\x1b\x00\x00\x00|\xa8\x00\x00\x0e\x00\x00\x00\x98\xa8\x00\x00\x12\x00\x00\x00\xa7\xa8\x00\x00\x12\x00\x00\x00\xba\xa8\x00\x005\x00\x00\x00\xcd\xa8\x00\x00&\x00\x00\x00\x03\xa9\x00\x00\xb6\x00\x00\x00*\xa9\x00\x00>\x00\x00\x00\xe1\xa9\x00\x00\x13\x00\x00\x00 \xaa\x00\x00i\x00\x00\x004\xaa\x00\x00N\x00\x00\x00\x9e\xaa\x00\x007\x00\x00\x00\xed\xaa\x00\x00\x06\x00\x00\x00%\xab\x00\x00\x19\x00\x00\x00,\xab\x00\x00\x0c\x00\x00\x00F\xab\x00\x00\x13\x00\x00\x00S\xab\x00\x00(\x00\x00\x00g\xab\x00\x00h\x00\x00\x00\x90\xab\x00\x001\x00\x00\x00\xf9\xab\x00\x00:\x00\x00\x00+\xac\x00\x00/\x00\x00\x00f\xac\x00\x00\n\x00\x00\x00\x96\xac\x00\x00\t\x00\x00\x00\xa1\xac\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book <font face="serif">%s</font> of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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<br>CSS\x00Page Setup\x00Parsing LRF file\x00Password for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: ca\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2008-04-01 09:18+PDT\nPO-Revision-Date: 2007-11-16 09:07+0100\nLast-Translator: libprs500\nLanguage-Team: \nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nX-Generator: KBabel 1.11.4\n\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\nArtikel %s von %s geladen\n%s\x00 Tage\x00 von\x00 no \xc3\xa9s una imatge v\xc3\xa0lida\x00 nicht gefunden.\x00 punts\x00 P\xc3\xad\xc2\xadxels\x00 Sekunden\x00 estreles\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00Clau d\'&acc\xc3\xa9s;\x00Feed &anf\xc3\xbcgen\x00Etikett &anf\xc3\xbcgen:\x00&Autor(s):\x00Marge &Inferior:\x00Datenbank verdi&chten\x00&Desactivar detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols\x00&Feed Titel:\x00&For\xc3\xa7a un salt de p\xc3\xa0gina abans de la marca:\x00&Format de la cap\xc3\xa7alera:\x00Marge &Esquerre:\x00&Ubicaci\xc3\xb3 de la base de dades (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monoespaiada:\x00\xc3\x84<ester Artikel:\x00Inserta un salt de &p\xc3\xa0gina abans de la marca:\x00&Contrasenya:\x00&Preprocessament:\x00&Priorit\xc3\xa4t der Konvertierungsauftr\xc3\xa4ge:\x00&Perfil:\x00&Editorial:\x00&Valoraci\xc3\xb3:\x00Expressi\xc3\xb3 &Regular:\x00Rezept entfe&rnen\x00Etiketten entfe&rnen:\x00Marge &Dret:\x00Re&cerca:\x00&S\xc3\xa8ries:\x00&Serif:\x00&Mostrar cap\xc3\xa7alera\x00Pa&sswort anzeigen\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&T\xc3\xad\xc2\xadtol:\x00Marge &Superior:\x00Nom d\'&usuari:\x00&Espaiat de les paraules:\x00...\x00<b>Els canvis s\'ignoren fins que el re-inicieu.\x00<b>No puc aconseguir la coberta.</b><br/>\x00<b>No</b> s\'han trobat coincid\xc3\xa8ncies per al text "<i>%s</i>".\x00<br>Cal que siga un directori.\x00<font color="gray">Ajuda no disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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 gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Arxius HTML0 del Book Designer</li>\x00<li><b>pdftohtml</b> - Arxius HTML obtinguts amb l\'aplicaci\xc3\xb3 pdftohtml</li>\x00<ol><li><b>baen</b> - Llibre de BAEN Publishers</li>\x00<p>Es existiert bereits eine ung\xc3\xbcltige Datenbank in %s, bitte l\xc3\xb6schen Sie diese, bevor sie die bestehende Datenbank verschieben.<br>Fehler: %s\x00<p>Es existieren bereits B\xc3\xbccher mit dem selben Titel in der Datenbank. Sollen die folgenden B\xc3\xbccher trotzdem hinzugef\xc3\xbcgt werden?<ul>\x00<p>No puc desar llibres al dispositiu perqu\xc3\xa8 no hi ha espai restant\x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr <b>LibraryThing.com</b> an. <br/>Insofern Sie dies nicht besitzen, k\xc3\xb6nnen Sie sich kostenlos <a href=\'http://www.librarything.com\'>anmelden</a>! </p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Error llegint de l\'arxiu: <br /><b>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Expressi\xc3\xb3 regular. Les marques <a> amb href coincidents, s\xc3\xb3n ignorades. Per defecte: %default\x00Zuge&wiesene Etiketten\x00&Verf\xc3\xbcgbare Etiketten\x00Treballs actius\x00Afe&geix les etiquetes: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Afegir el directori al llistat de directoris freq\xc3\xbcents\x00Afegeix la cap\xc3\xa7alera a totes les p\xc3\xa0gines, ficant el t\xc3\xad\xc2\xadtol i l\'autor.\x00Afegir un nou format per a aquest llibre a la base de dades\x00Afegeix llibres\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Milloreu l\'aparen\xc3\xa7a del fitxer LRF generat, especificant la grand\xc3\xa0ria de lletra i l\'espaiat entre paraules.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Irgendein\x00Etikett dem aktuellen Buch zuweisen\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00&Ordena autors:\x00Ord&re per autor:\x00Autor(s)\x00Autoren:\x00Formats disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Precedent\x00Grand\xc3\xa0ria de lletra base:\x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Llibre \x00Llibre <font face="serif">%s</font> de %s.\x00Coberta\x00Marge inferior de la p\xc3\xa0gina. Per defecte: %default px.\x00Cerca una imatge per a utilitzar com a coberta d\'aquest llibre.\x00Cerca la nova ubicaci\xc3\xb3 de la base de dades\x00Converteix tots\x00eBooks auf einmal zu LRF konvertieren\x00No puc configurar-lo\x00No puc configurar-lo amb treballs processant-se\x00No puc connectar\x00No puc convertir-lo\x00No puc convetir "%s" perqu\xc3\xa8 el format no hi \xc3\xa9s suportat\x00No puc editar les meta-dades\x00No puc aconseguir la coberta\x00Kann schon fertiggestellte Auftr\xc3\xa4ge nicht abbrechen.\x00Kann Auftrag nicht abbrechen.\x00Kann Auftr\xc3\xa4ge nicht abbrechen, die mit dem Ger\xc3\xa4t kommunizieren, da dies zu Datenverlust f\xc3\xbchren kann.\x00Kann Auftr\xc3\xa4ge in Warteliste nicht abbrechen.\x00No pot llegir-se\x00No puc desar al disc\x00No puc mostrar-lo\x00La targeta\n%s est\xc3\xa0 disponible\x00Categoria\x00Canvia la imatge de la &coberta:\x00Passwort \xc3\xa4ndern\x00Canvia l\'autor(s). Per a especificar m\xc3\xa9s d\'un, separeu-los amb comes.\x00Canvia l\'editorial del llibre\x00Canvia el t\xc3\xad\xc2\xadtol del llibre\x00Benutzername und/oder Passwort Ihres Kontos bei LibraryThing.com \xc3\xa4ndern\x00Detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols\x00Trieu format\x00Trieu el format per convertir a LRF\x00Format zur Vorschau w\xc3\xa4hlen\x00Ein Klick zeigt die aktiven Auftr\xc3\xa4ge.\x00Durch getrennte Liste der Etiketten, die von den B\xc3\xbcchern entfernt werden.\x00Comentaris\x00Configuraci\xc3\xb3\x00Configura\x00Configura el visor\x00Converteix %s a LRF\x00Converteix Ebooks\x00Converteix individualment\x00Convertir a LRF\x00Konnte Umschlagbild nicht laden: %s\x00Konnte Artikel nicht abrufen. Der erneute Start mit --debug zeigt m\xc3\xb6gliche Gr\xc3\xbcnde an \x00No puc aconseguir la coberta\x00Konnte aufgrund zu hoher Serverlast kein Umschlagbild abrufen. Bitte versuchen sie es sp\xc3\xa4ter wieder.\x00No puc moure la base de dades\x00Konnte Datei nicht analysieren: %s\x00Creat per \x00Individuelle Nachrichtenquellen\x00Data\x00Voreinstellung f\xc3\xbcr Zei&t\xc3\xbcberschreitung bei Netzwerkverbindungen:\x00Esborra\x00Etikett aus der Datenbank l\xc3\xb6schen. Entfernt das Etikett von allen B\xc3\xbcchern und l\xc3\xb6scht es dann aus der Datenbank.\x00Details des Auftrags\x00No s\xc3\xa9 per a qu\xc3\xa9 \xc3\xa9s aix\xc3\xb3\x00Fortschrittsbalken nicht anzeigen\x00Download beendet\x00Lade Umschlagbild von %s\x00Duplikate gefunden\x00E\x00ERROR\x00Edita la meta-informaci\xc3\xb3\x00Editar Meta-informaci\xc3\xb3\x00Edita la meta-informaci\xc3\xb3\x00Edita metadades en massa\x00Edita metadades individualment\x00Lletres inserides\x00Activa la &rotaci\xc3\xb3 autom\xc3\xa0tica d\'imatges\x00Activa la rotaci\xc3\xb3 autom\xc3\xa0tica de les imatges m\xc3\xa9s grans que l\'amplada de la pantalla.\x00Fehler\x00Error en la comunicaci\xc3\xb3 amb el dispositiu\x00Error llegint l\'arxiu\x00Error comunicant amb el dispositiu\x00Extrau la miniatura del fitxer LRF\x00Laden der Artikel fehlgeschlagen: %s von %s\n\x00Der Download von Teilen der folgenden Artikel schlug fehl:\x00Der Download der folgenden Artikel schlug fehl:\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Recull\x00Recolliu la coberta des del servidor\x00Recull metadades\x00Recull metadades des del servidor\x00Recull not\xc3\xad\xc2\xadcies (RSS)\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Recollint metadades per a <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Milloreu la detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols i seccions.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00For\xc3\xa7a un salt de p\xc3\xa0gina davant d\'un element amb un atribut concret. El format d\'aquesta opci\xc3\xb3 \xc3\xa9s regexp_marca,nom_atribut,tegexp_valor_atribut. Per exemple, amb "h\\d,class,chapter", serien coincidents totes les marques de encap\xc3\xa7alament amb l\'atribut class="chapter". Per defecte: %default\x00For\xc3\xa7a un salt de p\xc3\xa0gina abans de les marques amb noms coincidents amb l\'expressi\xc3\xb3 regular.\x00For\xc3\xa7a un salt de p\xc3\xa0gina abans de l\'&atribut:\x00Art\x00Format\x00Formats\x00Seg\xc3\xbcent\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00Directoris emprats amb freq\xc3\xbc\xc3\xa8ncia\x00Feeds der Index Seite erhalten\x00Cap\xc3\xa7alera\x00Ajuda amb l\'\xc3\xad\xc2\xadtem\x00Partici\xc3\xb3 de mots\x00IS&BN:\x00Si l\'html2lrf no troba cap salt de p\xc3\xa0gina en el fitxer html i no pot detectar els encap\xc3\xa7alaments dels cap\xc3\xad\xc2\xadtols, insereix autom\xc3\xa0ticament un salt de p\xc3\xa0gina abans de les marques que tinguen un nom coincident amb l\'expressi\xc3\xb3 regular. Per defecte: %default. Aquesta opci\xc3\xb3 s\'inhabilita establint la regexp com a "$".El prop\xc3\xb2sit de tot plegat \xc3\xa9s evitar p\xc3\xa0gines massa llargues, que alentirien al canvi de fulla del fitxer LRF. Aquesta opci\xc3\xb3 s\'ignora si la p\xc3\xa0gina actual en t\xc3\xa9 pocs elements.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si es detecta un gr\xc3\xa0fic per a la coberta al fitxer d\'entrada, utilitzar-la en lloc de la coberta especificada.\x00Farben nicht bea&chten\x00Ignora les &taules\x00Augmenta la grand\xc3\xa0ria de la lletra en 2 * FONT_DELTA punts i l\'espai de l\xc3\xad\xc2\xadnia en FONT_DELTA punts. FONT_DELTA pot ser una fracci\xc3\xb3. Si \xc3\xa9s un valor negatiu, la grand\xc3\xa0ria de la lletra disminueix.\x00Inserta l\xc3\xad\xc2\xadnies &buides entre par\xc3\xa0grafs\x00Ung\xc3\xbcltige Datenbank\x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida \x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida \x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida.<br>No es pot escriure \x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Treball\x00Auftrag durch Benutzer abgebrochen\x00Treballs:\x00Visor LRF\x00Marge esquerre de la p\xc3\xa0gina. Per defecte: %default px.\x00Biblioteca\x00Llistat de s\xc3\xa8ries conegudes. Podeu afegir-hi de noves.\x00Aparen\xc3\xa7a\x00\xc3\x9cbereinstimmung mit a&llen der folgenden Kriterien\x00\xc3\x9cbereinstimmung mit irge&ndeinem der folgenden Kriterien\x00Coincid\xc3\xa8ncies\x00Maximale Anzahl der zu ladenden Artikel pro feed.\x00Meta-informaci\xc3\xb3\x00Metadades\x00Minimitza l\'\xc3\xbas de mem\xc3\xb2ria, utilitzant m\xc3\xa9s temps de processador. Empreu aquesta opci\xc3\xb3 si el vostre equip no disposa de molta RAM.\x00E&inr\xc3\xbccken mindestens:\x00Mehr\x00Ausblenden\x00Nachrichten abgerufen. \xc3\x9cbertragung ans Ger\xc3\xa4t l\xc3\xa4uft.\x00P\xc3\xa0gina seg\xc3\xbcent\x00Seg\xc3\xbcent coincid\xc3\xa8ncia\x00Formats no disponibles\x00Cap llibre seleccionat\x00Cap llibre seleccionat\x00Kein Treffer\x00No s\'han trobat coincid\xc3\xa8ncies\x00Sense espai al dispositiu\x00Cap\x00Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. Voreinstellung %default\x00Etiketten-Editor \xc3\xb6ffnen\x00Obre l\'eBook\x00Opcions\x00Einstellungen f\xc3\xbcr feeds2disk\x00Einstellungen f\xc3\xbcr html2lrf\x00Einstellungen f\xc3\xbcr web2disk (um von Feeds verlinkte Webseiten abzurufen)\x00Nom del fitxer de dest\xc3\xad\xc2\xad. Per defecte, deriva del fitxer d\'entrada\x00Substitueix la CSS. Pot indicar-se tant un cam\xc3\xad\xc2\xad a la fulla CSS alternativa, com una cadena. En aquest \xc3\xbaltim cas, la cadena s\'interpreta com a CSS.\x00Substitueix<br>CSS\x00Configuraci\xc3\xb3 de la p\xc3\xa0gina\x00Estic analitzant el fitxer LRF\x00Passwort f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Es necessita una contrasenya.\x00Cam\xc3\xad\x00Cam\xc3\xad\xc2\xad al fitxer d\'imatge que s\'utilitzar\xc3\xa0 com a miniatura\x00Cam\xc3\xad\xc2\xad al fitxer txt que cont\xc3\xa9 el comentari a desar en el fitxer LRF\x00Cam\xc3\xad\xc2\xad al fitxer d\'imatge per a utilitzar com a coberta\x00Pfad zum Ausgabeverzeichnis, in dem die HTML Datei erstellt werden soll. Voreinstellung auf aktuelles Verzeichnis.\x00Pre-processa els fitxers Baen HTML per a millorar el fitxer LRF generat.\x00Preprocessa l\'arxiu abans de convertir a LRF. Aix\xc3\xb3 \xc3\xa8s \xc3\xbatil si coneixes l\'origen de l\'arxiu. Fonts conegudes:\x00Evita la inserci\xc3\xb3 autom\xc3\xa0tica de salts de p\xc3\xa0gina abans dels cap\xc3\xad\xc2\xadtols detectats.\x00P\xc3\xa0gina anterior\x00Perfil del dispositiu per al que es genera el fitxer LRF. Aquest perfil determina la resoluci\xc3\xb3 i la grand\xc3\xa0ria de la pantalla del dispositiu, entre d\'altres. Per defecte:%s Perfils suportats:\x00Progressi\xc3\xb3\x00Editorial\x00Valoraci\xc3\xb3\x00Valora aquest llibre: 0-5 estreles\x00El Sony Reader\n%s est\xc3\xa0 disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Elimiar el directori al llistat de directoris freq\xc3\xbcents\x00Suprimeix llibres\x00Feed aus dem Rezept entfernen\x00Elimina els formats seleccionats per a aquest llibre de la base de dades.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Renderitza les taules HTML com a blocs de text en lloc de les taules actuals. \xc3\x89s necessari si el fitxer HTML cont\xc3\xa9 taules massa grans o complexes.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Reinicialitza la recerca r\xc3\xa0pida\x00Marge dret de la p\xc3\xa0gina. Per defecte: %default px.\x00Laufzeit\x00S&ans-serif:\x00Desa al disc\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Recerca llibres pel t\xc3\xad\xc2\xadtol o l\'autor. <br><br>Els espais entre paraules es substitueixen per AND.\x00Recerca llibres pel t\xc3\xad\xc2\xadtol, l\'autor, l\'editorial, les etiquetes i els comentaris<br><br>Els espais entre paraules es substitueixen per AND.\x00Seleccioneu el llibre que m\xc3\xa9s s\'acoste del llistat que hi ha a sota\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Envia al dispositiu\x00Envia a la mem\xc3\xb2ria interna\x00Envia a la targeta de mem\xc3\xb2ria\x00Separa els par\xc3\xa0grafs amb l\xc3\xad\xc2\xadnies buides.\x00S\xc3\xa8ries\x00\xc3\x8dndex de s\xc3\xa8rie.\x00Serien Index:\x00Serien:\x00Server-Fehler. Bitte versuchen Sie es sp\xc3\xa4ter wieder.\x00Indiqueu l\'ID (identificador) del llibre\x00Fixa els valors de conversi\xc3\xb3 er defecte\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per autor\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per t\xc3\xad\xc2\xadtol\x00Indiqueu l\'autor\x00Indiqueu l\'autor(s). Si indique m\xc3\xa9s d\'un autor, separeu el llistat amb comes. Per defecte: %default\x00Indiqueu el nom del llibre\x00Indiqueu la categoria.\x00Indiqueu els comentaris.\x00Voreinstellung der Zeit\xc3\xbcberschreitung f\xc3\xbcr Netzwerkabrufe festsetzen (Gilt immer dann, wenn aus dem Internet Informationen abgerufen werden sollen) \x00Estableix el format de la cap\xc3\xa7alera: %a es reempla\xc3\xa7a per l\'autor i %t pel t\xc3\xad\xc2\xadtol. Per defecte: %default\x00Fixa l\'espai entre paraules en punts. Per defecte: %default\x00Indique el t\xc3\xadtol. Per defecte: nom_del_fitxer.\x00Registreu-vos gratu\xc3\xaftament a <a href="http://www.isbndb.com">ISBNdb.com</a> per a obtenir una clau d\'acc\xc3\xa9s.\x00Grand\xc3\xa0ria (MB)\x00Clau d\'ordre per a l\'autor\x00Clau d\'ordre per al t\xc3\xad\xc2\xadtol.\x00En&codierung der Quelldatei:\x00Geben Sie eine Liste von Feeds zum Download an. Zum Beispiel: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nWenn Sie diese Option w\xc3\xa4hlen, wird jedes Argument %prog ignoriert und die Voreinstellung zum Download der Feeds verwendet. \x00Especifiqueu com s\'ha d\'ordenar l\'autor(s) d\'aquest llibre. Per exemple,ordena Vicent A. Estell\xc3\xa9s com a Estell\xc3\xa9s, Vicent A.\x00Especifiqueu informaci\xc3\xb3 com ara t\xc3\xad\xc2\xadtol i autor per al llibre.<p>Aquesta informaci\xc3\xb3 s\'actualitza tant a la base de dades com al fitxer LRF.\x00Especifiqueu la grand\xc3\xa0ria de lletra base en punts. Totes les lletres seran escalades segons aquest valor. L\'opci\xc3\xb3 --font-delta resta obsoleta. Per a utilitzar --font-delta, fixe aquest valor a 0.\x00Configuraci\xc3\xb3 de la p\xc3\xa0gina del dispositiu, especificant ,marges i grand\xc3\xa0ria de la pantalla, entre d\'altres.\x00Especifiqueu lletres truetype per a les fam\xc3\xad\xc2\xadlies serif, sans-serif i monoespaiades. Aquestes lletres s\xc3\xb3n inserides al fitxer LRF. Tingueu en compte que afegir lletres personalitzades alenteix el canvi de p\xc3\xa0gina. Per especificar cadascuna de les fam\xc3\xad\xc2\xadlies s\'empra: "cam\xc3\xad\xc2\xad a la carpeta de lletres, fam\xc3\xad\xc2\xadlia" ( --serif-family "%s, Times New Roman")\n\x00Starte Download von [%d Thread(s)]...\x00Estat\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Etique&tes:\x00Etikett\x00Etiketten Editor\x00Detecci\xc3\xb3 basada en marques\x00Etiquetes\x00Etiquetes per a categoritzar el llibre (especialment \xc3\xbatil per a recerques). <br><br>Pot emprar-se qualsevol paraula o frase, separada per comes.\x00Test\x00TextLabel\x00Categoria a la que pertany el llibre. Per exemple, Hist\xc3\xb2ria\x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Nombre m\xc3\xa0xim de nivells per a processar enlla\xc3\xa7os recursivament. El valor 0 (cero) vol dir que no s\xc3\xb3n seguits. Amb un valor negatiu, ignora les marques <a>.\x00Fam\xc3\xad\xc2\xadlia de lletres monoespaiades per a incrustar.\x00\xc3\x84ltester Artikel, der geladen wird\x00Expressi\xc3\xb3 regular utilitzada per a detectar els t\xc3\xad\xc2\xadtols dels cap\xc3\xad\xc2\xadtols. Cerca a les marques de encap\xc3\xa7alament (h1-h6). Per defecte: %default\x00Fam\xc3\xad\xc2\xadlia de lletres sans-serif per a incrustar.\x00Fam\xc3\xad\xc2\xadlia de lletres serif per a incrustar.\x00Der Text, nach dem gesucht werden soll. Dies wird als eine Regul\xc3\xa4re Expression interpretiert.\x00Der Titel f\xc3\xbcr dieses Rezept. Wird als Titel f\xc3\xbcr alle eBooks benutzt, die aus den geladenen Feeds erstellt wurden.\x00Hi ha hagut un error de comunicaci\xc3\xb3 amb el dispositiu. Lleve, torne a connectar el dispositiu i torne a iniciar el programa\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Marca de temps\x00T\xc3\xad\xc2\xadtol\x00Detecci\xc3\xb3 basada en el t\xc3\xad\xc2\xadtol\x00Titel:\x00Marge superior de la p\xc3\xa0gina. Per defecte: %default px.\x00Versuche Umschlagbild zu laden...\x00Etikett vom aktuellen Buch entfernen\x00No disponible\x00Desconegut\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00&R\xc3\xb6mische Ziffern f\xc3\xbcr Serien Nummerierung verwenden\x00Um&schlagbild der Quelldatei verwenden\x00Utilitza l\'element <spine> del fitxer OPF per a determinar l\'ordre com s\'afegeixen els fitxers HTML al LRF. Cal que el fitxer .opf sigui a la mateixa carpeta que el fitxer HTML base.\x00Utilitzeu aquesta opci\xc3\xb3 per a fitxers html0 de Book Designer.\x00Utilitza fons blanc\x00Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed und l\xc3\xa4dt h\xc3\xb6chstens 2 Feeds.\x00Benutzername f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Mostra\x00Spezielles Format ansehen\x00En espera...\x00Est\xc3\xa0 treballant...\x00No tens permissos per a llegir l\'arxiu: \x00Cal que afegiu aquesta opci\xc3\xb3 per a fitxers generats amb pdftohtml, si no voleu que la conversi\xc3\xb3 falli.\x00Es muss eine einzelne PDF Datei angegeben werden.\x00Cal especificar una clau d\'acc\xc3\xa8s v\xc3\xa0lida per a isbndb.com\x00Cal especificar un ISBN correcte per al llibre.\x00beinhaltet\x00libprs500\x00', 'de': '\xde\x12\x04\x95\x00\x00\x00\x00\xa0\x01\x00\x00\x1c\x00\x00\x00\x1c\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x1a\x00\x00\x0e\x00\x00\x00\x1d\x1a\x00\x00!\x00\x00\x00,\x1a\x00\x00\x05\x00\x00\x00N\x1a\x00\x00\x06\x00\x00\x00T\x1a\x00\x00\x17\x00\x00\x00[\x1a\x00\x00\x0b\x00\x00\x00s\x1a\x00\x00\x04\x00\x00\x00\x7f\x1a\x00\x00\x03\x00\x00\x00\x84\x1a\x00\x00\x08\x00\x00\x00\x88\x1a\x00\x00\x06\x00\x00\x00\x91\x1a\x00\x00\x1c\x00\x00\x00\x98\x1a\x00\x00\x0e\x00\x00\x00\xb5\x1a\x00\x00\x0c\x00\x00\x00\xc4\x1a\x00\x00\t\x00\x00\x00\xd1\x1a\x00\x00\t\x00\x00\x00\xdb\x1a\x00\x00\x0c\x00\x00\x00\xe5\x1a\x00\x00\x0f\x00\x00\x00\xf2\x1a\x00\x00\x11\x00\x00\x00\x02\x1b\x00\x00\x1a\x00\x00\x00\x14\x1b\x00\x00\x0c\x00\x00\x00/\x1b\x00\x00\x1d\x00\x00\x00<\x1b\x00\x00\x0f\x00\x00\x00Z\x1b\x00\x00\r\x00\x00\x00j\x1b\x00\x00)\x00\x00\x00x\x1b\x00\x00"\x00\x00\x00\xa2\x1b\x00\x00\x18\x00\x00\x00\xc5\x1b\x00\x00\x0b\x00\x00\x00\xde\x1b\x00\x00\x10\x00\x00\x00\xea\x1b\x00\x00\x17\x00\x00\x00\xfb\x1b\x00\x00\n\x00\x00\x00\x13\x1c\x00\x00\x0c\x00\x00\x00\x1e\x1c\x00\x00\x1e\x00\x00\x00+\x1c\x00\x00\t\x00\x00\x00J\x1c\x00\x00\x0c\x00\x00\x00T\x1c\x00\x00\x08\x00\x00\x00a\x1c\x00\x00\x14\x00\x00\x00j\x1c\x00\x00\x0e\x00\x00\x00\x7f\x1c\x00\x00\r\x00\x00\x00\x8e\x1c\x00\x00\x0e\x00\x00\x00\x9c\x1c\x00\x00\x08\x00\x00\x00\xab\x1c\x00\x00\x08\x00\x00\x00\xb4\x1c\x00\x00\x07\x00\x00\x00\xbd\x1c\x00\x00\x0c\x00\x00\x00\xc5\x1c\x00\x00\x0e\x00\x00\x00\xd2\x1c\x00\x00\x12\x00\x00\x00\xe1\x1c\x00\x00\x05\x00\x00\x00\xf4\x1c\x00\x00\x08\x00\x00\x00\xfa\x1c\x00\x00\x0c\x00\x00\x00\x03\x1d\x00\x00\n\x00\x00\x00\x10\x1d\x00\x00\x0e\x00\x00\x00\x1b\x1d\x00\x00\x03\x00\x00\x00*\x1d\x00\x001\x00\x00\x00.\x1d\x00\x00"\x00\x00\x00`\x1d\x00\x00=\x00\x00\x00\x83\x1d\x00\x00\x18\x00\x00\x00\xc1\x1d\x00\x00+\x00\x00\x00\xda\x1d\x00\x00\x00\x02\x00\x00\x06\x1e\x00\x00\xa3\x01\x00\x00\x07 \x00\x00\x82\x02\x00\x00\xab!\x00\x00>\x00\x00\x00.$\x00\x00S\x00\x00\x00m$\x00\x005\x00\x00\x00\xc1$\x00\x00p\x00\x00\x00\xf7$\x00\x00a\x00\x00\x00h%\x00\x00G\x00\x00\x00\xca%\x00\x00(\x00\x00\x00\x12&\x00\x00\xa7\x00\x00\x00;&\x00\x00W\x00\x00\x00\xe3&\x00\x00\x96\x00\x00\x00;\'\x00\x00=\x01\x00\x00\xd2\'\x00\x002\x00\x00\x00\x10)\x00\x00\x01\x00\x00\x00C)\x00\x00C\x00\x00\x00E)\x00\x00\r\x00\x00\x00\x89)\x00\x00\x0f\x00\x00\x00\x97)\x00\x00\x0b\x00\x00\x00\xa7)\x00\x00\x0b\x00\x00\x00\xb3)\x00\x00\x18\x00\x00\x00\xbf)\x00\x007\x00\x00\x00\xd8)\x00\x004\x00\x00\x00\x10*\x00\x00.\x00\x00\x00E*\x00\x00\t\x00\x00\x00t*\x00\x00!\x00\x00\x00~*\x00\x00b\x00\x00\x00\xa0*\x00\x00o\x00\x00\x00\x03+\x00\x00\x16\x00\x00\x00s+\x00\x00\x12\x00\x00\x00\x8a+\x00\x006\x00\x00\x00\x9d+\x00\x00\x12\x00\x00\x00\xd4+\x00\x00m\x00\x00\x00\xe7+\x00\x00\x08\x00\x00\x00U,\x00\x00\x0f\x00\x00\x00^,\x00\x00\x0f\x00\x00\x00n,\x00\x00\x0e\x00\x00\x00~,\x00\x00\x05\x00\x00\x00\x8d,\x00\x00\x03\x00\x00\x00\x93,\x00\x00\x19\x00\x00\x00\x97,\x00\x00\x1b\x00\x00\x00\xb1,\x00\x00\x16\x00\x00\x00\xcd,\x00\x00\x06\x00\x00\x00\xe4,\x00\x00\x0e\x00\x00\x00\xeb,\x00\x00\r\x00\x00\x00\xfa,\x00\x00\t\x00\x00\x00\x08-\x00\x00\x08\x00\x00\x00\x12-\x00\x00\x11\x00\x00\x00\x1b-\x00\x00\x16\x00\x00\x00--\x00\x00\x04\x00\x00\x00D-\x00\x00\x10\x00\x00\x00I-\x00\x00\x05\x00\x00\x00Z-\x00\x00!\x00\x00\x00`-\x00\x00\x10\x00\x00\x00\x82-\x00\x00\x05\x00\x00\x00\x93-\x00\x00(\x00\x00\x00\x99-\x00\x00\n\x00\x00\x00\xc2-\x00\x00.\x00\x00\x00\xcd-\x00\x005\x00\x00\x00\xfc-\x00\x00$\x00\x00\x002.\x00\x00\x0c\x00\x00\x00W.\x00\x00\x1a\x00\x00\x00d.\x00\x00\x10\x00\x00\x00\x7f.\x00\x00.\x00\x00\x00\x90.\x00\x00\x0e\x00\x00\x00\xbf.\x00\x00\x0e\x00\x00\x00\xce.\x00\x007\x00\x00\x00\xdd.\x00\x00\x14\x00\x00\x00\x15/\x00\x00\x12\x00\x00\x00*/\x00\x00#\x00\x00\x00=/\x00\x00\x0f\x00\x00\x00a/\x00\x00Z\x00\x00\x00q/\x00\x00\x19\x00\x00\x00\xcc/\x00\x00\x0b\x00\x00\x00\xe6/\x00\x00\x13\x00\x00\x00\xf2/\x00\x00\x0b\x00\x00\x00\x060\x00\x00\x11\x00\x00\x00\x120\x00\x00\x08\x00\x00\x00$0\x00\x00\x14\x00\x00\x00-0\x00\x00\x0f\x00\x00\x00B0\x00\x00R\x00\x00\x00R0\x00\x00!\x00\x00\x00\xa50\x00\x00\x1d\x00\x00\x00\xc70\x00\x00H\x00\x00\x00\xe50\x00\x00\x11\x00\x00\x00.1\x00\x00\r\x00\x00\x00@1\x00\x00%\x00\x00\x00N1\x00\x00\x19\x00\x00\x00t1\x00\x00!\x00\x00\x00\x8e1\x00\x007\x00\x00\x00\xb01\x00\x00\x08\x00\x00\x00\xe81\x00\x00\r\x00\x00\x00\xf11\x00\x00\t\x00\x00\x00\xff1\x00\x00\x10\x00\x00\x00\t2\x00\x00\x11\x00\x00\x00\x1a2\x00\x00\x0f\x00\x00\x00,2\x00\x00\x14\x00\x00\x00<2\x00\x00\x0e\x00\x00\x00Q2\x00\x00\x1c\x00\x00\x00`2\x00\x00;\x00\x00\x00}2\x00\x00\x15\x00\x00\x00\xb92\x00\x00R\x00\x00\x00\xcf2\x00\x00\x17\x00\x00\x00"3\x00\x00\x18\x00\x00\x00:3\x00\x00\x0b\x00\x00\x00S3\x00\x00\x13\x00\x00\x00_3\x00\x00\x04\x00\x00\x00s3\x00\x00\x19\x00\x00\x00x3\x00\x00\x03\x00\x00\x00\x923\x00\x00h\x00\x00\x00\x963\x00\x00\x0e\x00\x00\x00\xff3\x00\x00\x1b\x00\x00\x00\x0e4\x00\x00\x1a\x00\x00\x00*4\x00\x00\x11\x00\x00\x00E4\x00\x00\x19\x00\x00\x00W4\x00\x00\x11\x00\x00\x00q4\x00\x00\x01\x00\x00\x00\x834\x00\x00\x05\x00\x00\x00\x854\x00\x00\x15\x00\x00\x00\x8b4\x00\x00\x15\x00\x00\x00\xa14\x00\x00\x15\x00\x00\x00\xb74\x00\x00\x15\x00\x00\x00\xcd4\x00\x00\x1a\x00\x00\x00\xe34\x00\x00\x0e\x00\x00\x00\xfe4\x00\x00\x1f\x00\x00\x00\r5\x00\x00C\x00\x00\x00-5\x00\x00\x05\x00\x00\x00q5\x00\x00\x1f\x00\x00\x00w5\x00\x00\x12\x00\x00\x00\x975\x00\x00\x17\x00\x00\x00\xaa5\x00\x00\x1f\x00\x00\x00\xc25\x00\x00\'\x00\x00\x00\xe25\x00\x003\x00\x00\x00\n6\x00\x00*\x00\x00\x00>6\x00\x00\n\x00\x00\x00i6\x00\x00\x14\x00\x00\x00t6\x00\x00\x16\x00\x00\x00\x896\x00\x00\x16\x00\x00\x00\xa06\x00\x00\x0f\x00\x00\x00\xb76\x00\x00\x05\x00\x00\x00\xc76\x00\x00\x1d\x00\x00\x00\xcd6\x00\x00\x0e\x00\x00\x00\xeb6\x00\x00\x1a\x00\x00\x00\xfa6\x00\x00\n\x00\x00\x00\x157\x00\x00\x10\x00\x00\x00 7\x00\x00\r\x00\x00\x0017\x00\x00\x11\x00\x00\x00?7\x00\x00\x1f\x00\x00\x00Q7\x00\x00\x13\x00\x00\x00q7\x00\x00\x1b\x00\x00\x00\x857\x00\x00\x05\x00\x00\x00\xa17\x00\x00\x0b\x00\x00\x00\xa77\x00\x008\x00\x00\x00\xb37\x00\x00\x08\x00\x00\x00\xec7\x00\x00\x8a\x00\x00\x00\xf57\x00\x00\x1d\x01\x00\x00\x808\x00\x00J\x00\x00\x00\x9e9\x00\x00#\x00\x00\x00\xe99\x00\x00\x04\x00\x00\x00\r:\x00\x00\x06\x00\x00\x00\x12:\x00\x00\x07\x00\x00\x00\x19:\x00\x00\x07\x00\x00\x00!:\x00\x00\'\x00\x00\x00):\x00\x00\x1b\x00\x00\x00Q:\x00\x00\x19\x00\x00\x00m:\x00\x00\x06\x00\x00\x00\x87:\x00\x00\x0c\x00\x00\x00\x8e:\x00\x00\t\x00\x00\x00\x9b:\x00\x00\x06\x00\x00\x00\xa5:\x00\x00\xdc\x01\x00\x00\xac:\x00\x00n\x00\x00\x00\x89<\x00\x00a\x00\x00\x00\xf8<\x00\x00\x0e\x00\x00\x00Z=\x00\x00\x0e\x00\x00\x00i=\x00\x00\xa8\x00\x00\x00x=\x00\x00&\x00\x00\x00!>\x00\x00\x10\x00\x00\x00H>\x00\x00\x19\x00\x00\x00Y>\x00\x00\x1a\x00\x00\x00s>\x00\x00.\x00\x00\x00\x8e>\x00\x00\r\x00\x00\x00\xbd>\x00\x00\x1a\x00\x00\x00\xcb>\x00\x00\x1e\x00\x00\x00\xe6>\x00\x00\x03\x00\x00\x00\x05?\x00\x00\x12\x00\x00\x00\t?\x00\x00\x05\x00\x00\x00\x1c?\x00\x00\n\x00\x00\x00"?\x00\x00,\x00\x00\x00-?\x00\x00\x07\x00\x00\x00Z?\x00\x00-\x00\x00\x00b?\x00\x00\x0b\x00\x00\x00\x90?\x00\x00$\x00\x00\x00\x9c?\x00\x00$\x00\x00\x00\xc1?\x00\x00\x07\x00\x00\x00\xe6?\x00\x000\x00\x00\x00\xee?\x00\x00\x10\x00\x00\x00\x1f@\x00\x00\x08\x00\x00\x000@\x00\x00y\x00\x00\x009@\x00\x00\x10\x00\x00\x00\xb3@\x00\x00\x04\x00\x00\x00\xc4@\x00\x00\x06\x00\x00\x00\xc9@\x00\x00"\x00\x00\x00\xd0@\x00\x00\t\x00\x00\x00\xf3@\x00\x00\n\x00\x00\x00\xfd@\x00\x00\x14\x00\x00\x00\x08A\x00\x00\x10\x00\x00\x00\x1dA\x00\x00\x11\x00\x00\x00.A\x00\x00\x08\x00\x00\x00@A\x00\x00\x10\x00\x00\x00IA\x00\x00\x12\x00\x00\x00ZA\x00\x00\x04\x00\x00\x00mA\x00\x00^\x00\x00\x00rA\x00\x00\x0f\x00\x00\x00\xd1A\x00\x00\n\x00\x00\x00\xe1A\x00\x00\x07\x00\x00\x00\xecA\x00\x00-\x00\x00\x00\xf4A\x00\x00+\x00\x00\x00"B\x00\x00F\x00\x00\x00NB\x00\x008\x00\x00\x00\x95B\x00\x00s\x00\x00\x00\xceB\x00\x00\x0f\x00\x00\x00BC\x00\x00\n\x00\x00\x00RC\x00\x00\x10\x00\x00\x00]C\x00\x00:\x00\x00\x00nC\x00\x00\x0f\x00\x00\x00\xa9C\x00\x00\x04\x00\x00\x00\xb9C\x00\x00;\x00\x00\x00\xbeC\x00\x00G\x00\x00\x00\xfaC\x00\x001\x00\x00\x00BD\x00\x00Y\x00\x00\x00tD\x00\x004\x00\x00\x00\xceD\x00\x00\x80\x00\x00\x00\x03E\x00\x00H\x00\x00\x00\x84E\x00\x00\r\x00\x00\x00\xcdE\x00\x00\xbc\x00\x00\x00\xdbE\x00\x00\x08\x00\x00\x00\x98F\x00\x00\t\x00\x00\x00\xa1F\x00\x00\x06\x00\x00\x00\xabF\x00\x00\x1e\x00\x00\x00\xb2F\x00\x00\x13\x00\x00\x00\xd1F\x00\x00\x0e\x00\x00\x00\xe5F\x00\x00\x1b\x00\x00\x00\xf4F\x00\x00\x13\x00\x00\x00\x10G\x00\x00+\x00\x00\x00$G\x00\x00*\x00\x00\x00PG\x00\x000\x00\x00\x00{G\x00\x00)\x00\x00\x00\xacG\x00\x00<\x00\x00\x00\xd6G\x00\x00\x0c\x00\x00\x00\x13H\x00\x00\x17\x00\x00\x00 H\x00\x00<\x00\x00\x008H\x00\x000\x00\x00\x00uH\x00\x00\x84\x00\x00\x00\xa6H\x00\x00X\x00\x00\x00+I\x00\x00\x0f\x00\x00\x00\x84I\x00\x00\x12\x00\x00\x00\x94I\x00\x00-\x00\x00\x00\xa7I\x00\x00\x0c\x00\x00\x00\xd5I\x00\x00\x0c\x00\x00\x00\xe2I\x00\x00\x0c\x00\x00\x00\xefI\x00\x00"\x00\x00\x00\xfcI\x00\x009\x00\x00\x00\x1fJ\x00\x00\x0f\x00\x00\x00YJ\x00\x00V\x00\x00\x00iJ\x00\x00r\x00\x00\x00\xc0J\x00\x00G\x00\x00\x003K\x00\x00\'\x00\x00\x00{K\x00\x00\x0e\x00\x00\x00\xa3K\x00\x00\x13\x00\x00\x00\xb2K\x00\x00\x14\x00\x00\x00\xc6K\x00\x00#\x00\x00\x00\xdbK\x00\x00\x06\x00\x00\x00\xffK\x00\x00\r\x00\x00\x00\x06L\x00\x00\r\x00\x00\x00\x14L\x00\x00\x07\x00\x00\x00"L\x00\x00\x1e\x00\x00\x00*L\x00\x00\x0b\x00\x00\x00IL\x00\x00\x17\x00\x00\x00UL\x00\x00\x1b\x00\x00\x00mL\x00\x00\x1a\x00\x00\x00\x89L\x00\x00\x0e\x00\x00\x00\xa4L\x00\x00^\x00\x00\x00\xb3L\x00\x00\x12\x00\x00\x00\x12M\x00\x00\x10\x00\x00\x00%M\x00\x00\x10\x00\x00\x006M\x00\x00g\x00\x00\x00GM\x00\x00c\x00\x00\x00\xafM\x00\x007\x00\x00\x00\x13N\x00\x00!\x00\x00\x00KN\x00\x00d\x00\x00\x00mN\x00\x00\t\x00\x00\x00\xd2N\x00\x00\x17\x00\x00\x00\xdcN\x00\x00\x16\x00\x00\x00\xf4N\x00\x00\x11\x00\x00\x00\x0bO\x00\x00\x04\x01\x00\x00\x1dO\x00\x00z\x00\x00\x00"P\x00\x00\x85\x00\x00\x00\x9dP\x00\x00\xb6\x00\x00\x00#Q\x00\x00P\x00\x00\x00\xdaQ\x00\x00+\x01\x00\x00+R\x00\x00#\x00\x00\x00WS\x00\x00\x06\x00\x00\x00{S\x00\x00\x17\x00\x00\x00\x82S\x00\x00\x14\x00\x00\x00\x9aS\x00\x00\x07\x00\x00\x00\xafS\x00\x00\x03\x00\x00\x00\xb7S\x00\x00\n\x00\x00\x00\xbbS\x00\x00\x13\x00\x00\x00\xc6S\x00\x00\x04\x00\x00\x00\xdaS\x00\x00\x85\x00\x00\x00\xdfS\x00\x00\x04\x00\x00\x00eT\x00\x00\t\x00\x00\x00jT\x00\x000\x00\x00\x00tT\x00\x00X\x00\x00\x00\xa5T\x00\x00\x1b\x00\x00\x00\xfeT\x00\x00\x1a\x00\x00\x00\x1aU\x00\x00\x9d\x00\x00\x005U\x00\x00&\x00\x00\x00\xd3U\x00\x00\x1e\x00\x00\x00\xfaU\x00\x00v\x00\x00\x00\x19V\x00\x00\'\x00\x00\x00\x90V\x00\x00"\x00\x00\x00\xb8V\x00\x00B\x00\x00\x00\xdbV\x00\x00^\x00\x00\x00\x1eW\x00\x00h\x00\x00\x00}W\x00\x00.\x00\x00\x00\xe6W\x00\x00\t\x00\x00\x00\x15X\x00\x00\x05\x00\x00\x00\x1fX\x00\x00\x15\x00\x00\x00%X\x00\x00\x06\x00\x00\x00;X\x00\x00+\x00\x00\x00BX\x00\x00\x1b\x00\x00\x00nX\x00\x00&\x00\x00\x00\x8aX\x00\x00\x0b\x00\x00\x00\xb1X\x00\x00\x07\x00\x00\x00\xbdX\x00\x00\x13\x00\x00\x00\xc5X\x00\x00\x0c\x00\x00\x00\xd9X\x00\x00\x10\x00\x00\x00\xe6X\x00\x00\x10\x00\x00\x00\xf7X\x00\x00%\x00\x00\x00\x08Y\x00\x00\x1b\x00\x00\x00.Y\x00\x00\xb4\x00\x00\x00JY\x00\x002\x00\x00\x00\xffY\x00\x00\x14\x00\x00\x002Z\x00\x00_\x00\x00\x00GZ\x00\x00:\x00\x00\x00\xa7Z\x00\x00*\x00\x00\x00\xe2Z\x00\x00\x04\x00\x00\x00\r[\x00\x00\x14\x00\x00\x00\x12[\x00\x00\x07\x00\x00\x00\'[\x00\x00\x07\x00\x00\x00/[\x00\x00-\x00\x00\x007[\x00\x00d\x00\x00\x00e[\x00\x00#\x00\x00\x00\xca[\x00\x002\x00\x00\x00\xee[\x00\x003\x00\x00\x00!\\\x00\x00\x08\x00\x00\x00U\\\x00\x00\t\x00\x00\x00^\\\x00\x008\x01\x00\x00h\\\x00\x00 \x00\x00\x00\xa1]\x00\x00\x1d\x00\x00\x00\xc2]\x00\x00\x05\x00\x00\x00\xe0]\x00\x00\x04\x00\x00\x00\xe6]\x00\x00\x18\x00\x00\x00\xeb]\x00\x00\x10\x00\x00\x00\x04^\x00\x00\x06\x00\x00\x00\x15^\x00\x00\x06\x00\x00\x00\x1c^\x00\x00\t\x00\x00\x00#^\x00\x00\x07\x00\x00\x00-^\x00\x00"\x00\x00\x005^\x00\x00\x12\x00\x00\x00X^\x00\x00\x14\x00\x00\x00k^\x00\x00\x0e\x00\x00\x00\x80^\x00\x00\x12\x00\x00\x00\x8f^\x00\x00\x07\x00\x00\x00\xa2^\x00\x00\x0e\x00\x00\x00\xaa^\x00\x00\x15\x00\x00\x00\xb9^\x00\x00 \x00\x00\x00\xcf^\x00\x00\x0c\x00\x00\x00\xf0^\x00\x00%\x00\x00\x00\xfd^\x00\x00\x12\x00\x00\x00#_\x00\x00\r\x00\x00\x006_\x00\x00/\x00\x00\x00D_\x00\x00&\x00\x00\x00t_\x00\x00\x1e\x00\x00\x00\x9b_\x00\x00\x0b\x00\x00\x00\xba_\x00\x00\x13\x00\x00\x00\xc6_\x00\x00\x1b\x00\x00\x00\xda_\x00\x00\n\x00\x00\x00\xf6_\x00\x00\x0f\x00\x00\x00\x01`\x00\x00(\x00\x00\x00\x11`\x00\x00\x08\x00\x00\x00:`\x00\x00\r\x00\x00\x00C`\x00\x00\x0b\x00\x00\x00Q`\x00\x00\x15\x00\x00\x00]`\x00\x00\x11\x00\x00\x00s`\x00\x00\x15\x00\x00\x00\x85`\x00\x00\x0e\x00\x00\x00\x9b`\x00\x00\x07\x00\x00\x00\xaa`\x00\x00\x08\x00\x00\x00\xb2`\x00\x00\x07\x00\x00\x00\xbb`\x00\x00\x13\x00\x00\x00\xc3`\x00\x00\x12\x00\x00\x00\xd7`\x00\x00\x1e\x00\x00\x00\xea`\x00\x00\x05\x00\x00\x00\ta\x00\x00\x07\x00\x00\x00\x0fa\x00\x00\r\x00\x00\x00\x17a\x00\x00\x0e\x00\x00\x00%a\x00\x00\r\x00\x00\x004a\x00\x00\x03\x00\x00\x00Ba\x00\x008\x00\x00\x00Fa\x00\x00-\x00\x00\x00\x7fa\x00\x00;\x00\x00\x00\xada\x00\x00\x1e\x00\x00\x00\xe9a\x00\x000\x00\x00\x00\x08b\x00\x00M\x02\x00\x009b\x00\x00\xa3\x01\x00\x00\x87d\x00\x00\x8c\x02\x00\x00+f\x00\x00>\x00\x00\x00\xb8h\x00\x00X\x00\x00\x00\xf7h\x00\x006\x00\x00\x00Pi\x00\x00\x90\x00\x00\x00\x87i\x00\x00\x86\x00\x00\x00\x18j\x00\x00`\x00\x00\x00\x9fj\x00\x00/\x00\x00\x00\x00k\x00\x00\xcd\x00\x00\x000k\x00\x00\x7f\x00\x00\x00\xfek\x00\x00\xcd\x00\x00\x00~l\x00\x00\xa4\x01\x00\x00Lm\x00\x00<\x00\x00\x00\xf1n\x00\x00\x01\x00\x00\x00.o\x00\x00M\x00\x00\x000o\x00\x00\x16\x00\x00\x00~o\x00\x00\x16\x00\x00\x00\x95o\x00\x00\x10\x00\x00\x00\xaco\x00\x00\x18\x00\x00\x00\xbdo\x00\x00/\x00\x00\x00\xd6o\x00\x00I\x00\x00\x00\x06p\x00\x00?\x00\x00\x00Pp\x00\x00;\x00\x00\x00\x90p\x00\x00\x13\x00\x00\x00\xccp\x00\x003\x00\x00\x00\xe0p\x00\x00}\x00\x00\x00\x14q\x00\x00\x98\x00\x00\x00\x92q\x00\x00$\x00\x00\x00+r\x00\x00\x1b\x00\x00\x00Pr\x00\x00Q\x00\x00\x00lr\x00\x00"\x00\x00\x00\xber\x00\x00e\x00\x00\x00\xe1r\x00\x00\t\x00\x00\x00Gs\x00\x00\x10\x00\x00\x00Qs\x00\x00\x10\x00\x00\x00bs\x00\x00\x10\x00\x00\x00ss\x00\x00\x05\x00\x00\x00\x84s\x00\x00\t\x00\x00\x00\x8as\x00\x00#\x00\x00\x00\x94s\x00\x00!\x00\x00\x00\xb8s\x00\x00\x13\x00\x00\x00\xdas\x00\x00\x05\x00\x00\x00\xees\x00\x00\x17\x00\x00\x00\xf4s\x00\x00\x17\x00\x00\x00\x0ct\x00\x00\t\x00\x00\x00$t\x00\x00\x08\x00\x00\x00.t\x00\x00\x13\x00\x00\x007t\x00\x00\x1c\x00\x00\x00Kt\x00\x00\x07\x00\x00\x00ht\x00\x00\x18\x00\x00\x00pt\x00\x00\x07\x00\x00\x00\x89t\x00\x003\x00\x00\x00\x91t\x00\x00\x16\x00\x00\x00\xc5t\x00\x00\x04\x00\x00\x00\xdct\x00\x00)\x00\x00\x00\xe1t\x00\x00\x0c\x00\x00\x00\x0bu\x00\x00>\x00\x00\x00\x18u\x00\x00 \x00\x00\x00Wu\x00\x00)\x00\x00\x00xu\x00\x00\x17\x00\x00\x00\xa2u\x00\x00%\x00\x00\x00\xbau\x00\x00\x1c\x00\x00\x00\xe0u\x00\x00D\x00\x00\x00\xfdu\x00\x00\x19\x00\x00\x00Bv\x00\x00\x1c\x00\x00\x00\\v\x00\x00R\x00\x00\x00yv\x00\x00\x1f\x00\x00\x00\xccv\x00\x00\x1e\x00\x00\x00\xecv\x00\x005\x00\x00\x00\x0bw\x00\x00\x1d\x00\x00\x00Aw\x00\x00g\x00\x00\x00_w\x00\x00-\x00\x00\x00\xc7w\x00\x00\x14\x00\x00\x00\xf5w\x00\x00\'\x00\x00\x00\nx\x00\x00\x16\x00\x00\x002x\x00\x00\x13\x00\x00\x00Ix\x00\x00\t\x00\x00\x00]x\x00\x00\x16\x00\x00\x00gx\x00\x00\x10\x00\x00\x00~x\x00\x00R\x00\x00\x00\x8fx\x00\x00!\x00\x00\x00\xe2x\x00\x00\x1b\x00\x00\x00\x04y\x00\x00H\x00\x00\x00 y\x00\x00\x16\x00\x00\x00iy\x00\x00\x0e\x00\x00\x00\x80y\x00\x00:\x00\x00\x00\x8fy\x00\x00\x1b\x00\x00\x00\xcay\x00\x00&\x00\x00\x00\xe6y\x00\x00J\x00\x00\x00\rz\x00\x00\t\x00\x00\x00Xz\x00\x00\r\x00\x00\x00bz\x00\x00\r\x00\x00\x00pz\x00\x00\x15\x00\x00\x00~z\x00\x00\x15\x00\x00\x00\x94z\x00\x00\x13\x00\x00\x00\xaaz\x00\x00\x14\x00\x00\x00\xbez\x00\x00\x13\x00\x00\x00\xd3z\x00\x00#\x00\x00\x00\xe7z\x00\x00W\x00\x00\x00\x0b{\x00\x00 \x00\x00\x00c{\x00\x00e\x00\x00\x00\x84{\x00\x00"\x00\x00\x00\xea{\x00\x00"\x00\x00\x00\r|\x00\x00\r\x00\x00\x000|\x00\x00\x1f\x00\x00\x00>|\x00\x00\x05\x00\x00\x00^|\x00\x00B\x00\x00\x00d|\x00\x00\x08\x00\x00\x00\xa7|\x00\x00r\x00\x00\x00\xb0|\x00\x00\x14\x00\x00\x00#}\x00\x00\x1f\x00\x00\x008}\x00\x00!\x00\x00\x00X}\x00\x00\x10\x00\x00\x00z}\x00\x00\x18\x00\x00\x00\x8b}\x00\x00\x12\x00\x00\x00\xa4}\x00\x00\x01\x00\x00\x00\xb7}\x00\x00\x06\x00\x00\x00\xb9}\x00\x00\x1d\x00\x00\x00\xc0}\x00\x00\x1d\x00\x00\x00\xde}\x00\x00\x1c\x00\x00\x00\xfc}\x00\x00 \x00\x00\x00\x19~\x00\x00\x1d\x00\x00\x00:~\x00\x00\x16\x00\x00\x00X~\x00\x00.\x00\x00\x00o~\x00\x00M\x00\x00\x00\x9e~\x00\x00\x06\x00\x00\x00\xec~\x00\x00+\x00\x00\x00\xf3~\x00\x00\x1b\x00\x00\x00\x1f\x7f\x00\x00&\x00\x00\x00;\x7f\x00\x00#\x00\x00\x00b\x7f\x00\x00,\x00\x00\x00\x86\x7f\x00\x00:\x00\x00\x00\xb3\x7f\x00\x00/\x00\x00\x00\xee\x7f\x00\x00\n\x00\x00\x00\x1e\x80\x00\x00\x17\x00\x00\x00)\x80\x00\x00\x1a\x00\x00\x00A\x80\x00\x00$\x00\x00\x00\\\x80\x00\x00\x11\x00\x00\x00\x81\x80\x00\x00\x07\x00\x00\x00\x93\x80\x00\x00\x1f\x00\x00\x00\x9b\x80\x00\x00\x12\x00\x00\x00\xbb\x80\x00\x00\x1d\x00\x00\x00\xce\x80\x00\x00\x13\x00\x00\x00\xec\x80\x00\x00\x17\x00\x00\x00\x00\x81\x00\x00\x0c\x00\x00\x00\x18\x81\x00\x00\x10\x00\x00\x00%\x81\x00\x00!\x00\x00\x006\x81\x00\x00\x17\x00\x00\x00X\x81\x00\x00\x1d\x00\x00\x00p\x81\x00\x00\x07\x00\x00\x00\x8e\x81\x00\x00\x0b\x00\x00\x00\x96\x81\x00\x00D\x00\x00\x00\xa2\x81\x00\x00\x06\x00\x00\x00\xe7\x81\x00\x00\xc3\x00\x00\x00\xee\x81\x00\x004\x01\x00\x00\xb2\x82\x00\x00[\x00\x00\x00\xe7\x83\x00\x00&\x00\x00\x00C\x84\x00\x00\x03\x00\x00\x00j\x84\x00\x00\x06\x00\x00\x00n\x84\x00\x00\x07\x00\x00\x00u\x84\x00\x00\x06\x00\x00\x00}\x84\x00\x004\x00\x00\x00\x84\x84\x00\x00\x1e\x00\x00\x00\xb9\x84\x00\x00\x1e\x00\x00\x00\xd8\x84\x00\x00\t\x00\x00\x00\xf7\x84\x00\x00\x1f\x00\x00\x00\x01\x85\x00\x00\x18\x00\x00\x00!\x85\x00\x00\x06\x00\x00\x00:\x85\x00\x00:\x02\x00\x00A\x85\x00\x00\x8f\x00\x00\x00|\x87\x00\x00\x82\x00\x00\x00\x0c\x88\x00\x00\x16\x00\x00\x00\x8f\x88\x00\x00\x14\x00\x00\x00\xa6\x88\x00\x00\xcc\x00\x00\x00\xbb\x88\x00\x00*\x00\x00\x00\x88\x89\x00\x00\x14\x00\x00\x00\xb3\x89\x00\x00"\x00\x00\x00\xc8\x89\x00\x00"\x00\x00\x00\xeb\x89\x00\x00?\x00\x00\x00\x0e\x8a\x00\x00\x12\x00\x00\x00N\x8a\x00\x00\x1f\x00\x00\x00a\x8a\x00\x00#\x00\x00\x00\x81\x8a\x00\x00\x07\x00\x00\x00\xa5\x8a\x00\x00"\x00\x00\x00\xad\x8a\x00\x00\n\x00\x00\x00\xd0\x8a\x00\x00\n\x00\x00\x00\xdb\x8a\x00\x00=\x00\x00\x00\xe6\x8a\x00\x00\n\x00\x00\x00$\x8b\x00\x00@\x00\x00\x00/\x8b\x00\x00\x0b\x00\x00\x00p\x8b\x00\x003\x00\x00\x00|\x8b\x00\x009\x00\x00\x00\xb0\x8b\x00\x00\x07\x00\x00\x00\xea\x8b\x00\x001\x00\x00\x00\xf2\x8b\x00\x00\x12\x00\x00\x00$\x8c\x00\x00\n\x00\x00\x007\x8c\x00\x00\xa4\x00\x00\x00B\x8c\x00\x00\x17\x00\x00\x00\xe7\x8c\x00\x00\x04\x00\x00\x00\xff\x8c\x00\x00\n\x00\x00\x00\x04\x8d\x00\x006\x00\x00\x00\x0f\x8d\x00\x00\x0e\x00\x00\x00F\x8d\x00\x00\x11\x00\x00\x00U\x8d\x00\x00\x1a\x00\x00\x00g\x8d\x00\x00\x15\x00\x00\x00\x82\x8d\x00\x00\x19\x00\x00\x00\x98\x8d\x00\x00\x0c\x00\x00\x00\xb2\x8d\x00\x00\x16\x00\x00\x00\xbf\x8d\x00\x00\x14\x00\x00\x00\xd6\x8d\x00\x00\x05\x00\x00\x00\xeb\x8d\x00\x00_\x00\x00\x00\xf1\x8d\x00\x00\x18\x00\x00\x00Q\x8e\x00\x00\r\x00\x00\x00j\x8e\x00\x00\x15\x00\x00\x00x\x8e\x00\x00\x1d\x00\x00\x00\x8e\x8e\x00\x00\x1b\x00\x00\x00\xac\x8e\x00\x00H\x00\x00\x00\xc8\x8e\x00\x00S\x00\x00\x00\x11\x8f\x00\x00\x92\x00\x00\x00e\x8f\x00\x00\x15\x00\x00\x00\xf8\x8f\x00\x00\x11\x00\x00\x00\x0e\x90\x00\x00\x14\x00\x00\x00 \x90\x00\x00J\x00\x00\x005\x90\x00\x00\x15\x00\x00\x00\x80\x90\x00\x00\x04\x00\x00\x00\x96\x90\x00\x00O\x00\x00\x00\x9b\x90\x00\x00V\x00\x00\x00\xeb\x90\x00\x00"\x00\x00\x00B\x91\x00\x00r\x00\x00\x00e\x91\x00\x00J\x00\x00\x00\xd8\x91\x00\x00\x97\x00\x00\x00#\x92\x00\x00Q\x00\x00\x00\xbb\x92\x00\x00\x0f\x00\x00\x00\r\x93\x00\x00\xc6\x00\x00\x00\x1d\x93\x00\x00\x0b\x00\x00\x00\xe4\x93\x00\x00\x0b\x00\x00\x00\xf0\x93\x00\x00\t\x00\x00\x00\xfc\x93\x00\x00#\x00\x00\x00\x06\x94\x00\x00\x14\x00\x00\x00*\x94\x00\x00\x13\x00\x00\x00?\x94\x00\x00 \x00\x00\x00S\x94\x00\x00\x14\x00\x00\x00t\x94\x00\x00-\x00\x00\x00\x89\x94\x00\x00-\x00\x00\x00\xb7\x94\x00\x002\x00\x00\x00\xe5\x94\x00\x00+\x00\x00\x00\x18\x95\x00\x00K\x00\x00\x00D\x95\x00\x00\x11\x00\x00\x00\x90\x95\x00\x00\x1d\x00\x00\x00\xa2\x95\x00\x00:\x00\x00\x00\xc0\x95\x00\x001\x00\x00\x00\xfb\x95\x00\x00\x92\x00\x00\x00-\x96\x00\x00N\x00\x00\x00\xc0\x96\x00\x00\x10\x00\x00\x00\x0f\x97\x00\x00\x15\x00\x00\x00 \x97\x00\x00>\x00\x00\x006\x97\x00\x00\x08\x00\x00\x00u\x97\x00\x00\x0c\x00\x00\x00~\x97\x00\x00\x0e\x00\x00\x00\x8b\x97\x00\x004\x00\x00\x00\x9a\x97\x00\x00=\x00\x00\x00\xcf\x97\x00\x00\r\x00\x00\x00\r\x98\x00\x00z\x00\x00\x00\x1b\x98\x00\x00\x9e\x00\x00\x00\x96\x98\x00\x00P\x00\x00\x005\x99\x00\x000\x00\x00\x00\x86\x99\x00\x00\x15\x00\x00\x00\xb7\x99\x00\x00\x17\x00\x00\x00\xcd\x99\x00\x00\x17\x00\x00\x00\xe5\x99\x00\x00%\x00\x00\x00\xfd\x99\x00\x00\x05\x00\x00\x00#\x9a\x00\x00\x11\x00\x00\x00)\x9a\x00\x00\r\x00\x00\x00;\x9a\x00\x00\x07\x00\x00\x00I\x9a\x00\x005\x00\x00\x00Q\x9a\x00\x00\x18\x00\x00\x00\x87\x9a\x00\x00*\x00\x00\x00\xa0\x9a\x00\x00\x15\x00\x00\x00\xcb\x9a\x00\x00\x15\x00\x00\x00\xe1\x9a\x00\x00\x16\x00\x00\x00\xf7\x9a\x00\x00q\x00\x00\x00\x0e\x9b\x00\x00\x1a\x00\x00\x00\x80\x9b\x00\x00\x1c\x00\x00\x00\x9b\x9b\x00\x00\x1c\x00\x00\x00\xb8\x9b\x00\x00\x95\x00\x00\x00\xd5\x9b\x00\x00}\x00\x00\x00k\x9c\x00\x00]\x00\x00\x00\xe9\x9c\x00\x002\x00\x00\x00G\x9d\x00\x00v\x00\x00\x00z\x9d\x00\x00\x0c\x00\x00\x00\xf1\x9d\x00\x00\x15\x00\x00\x00\xfe\x9d\x00\x00\x15\x00\x00\x00\x14\x9e\x00\x00\x1c\x00\x00\x00*\x9e\x00\x00\x1c\x01\x00\x00G\x9e\x00\x00v\x00\x00\x00d\x9f\x00\x00\x9f\x00\x00\x00\xdb\x9f\x00\x00\n\x01\x00\x00{\xa0\x00\x00R\x00\x00\x00\x86\xa1\x00\x00\x8f\x01\x00\x00\xd9\xa1\x00\x00%\x00\x00\x00i\xa3\x00\x00\x06\x00\x00\x00\x8f\xa3\x00\x00\x1f\x00\x00\x00\x96\xa3\x00\x00\x18\x00\x00\x00\xb6\xa3\x00\x00\x0b\x00\x00\x00\xcf\xa3\x00\x00\x07\x00\x00\x00\xdb\xa3\x00\x00\x10\x00\x00\x00\xe3\xa3\x00\x00#\x00\x00\x00\xf4\xa3\x00\x00\t\x00\x00\x00\x18\xa4\x00\x00\xab\x00\x00\x00"\xa4\x00\x00\x04\x00\x00\x00\xce\xa4\x00\x00\t\x00\x00\x00\xd3\xa4\x00\x003\x00\x00\x00\xdd\xa4\x00\x00l\x00\x00\x00\x11\xa5\x00\x00\x1a\x00\x00\x00~\xa5\x00\x00\x1a\x00\x00\x00\x99\xa5\x00\x00\xb9\x00\x00\x00\xb4\xa5\x00\x00.\x00\x00\x00n\xa6\x00\x00#\x00\x00\x00\x9d\xa6\x00\x00\x99\x00\x00\x00\xc1\xa6\x00\x00\'\x00\x00\x00[\xa7\x00\x00"\x00\x00\x00\x83\xa7\x00\x00^\x00\x00\x00\xa6\xa7\x00\x00s\x00\x00\x00\x05\xa8\x00\x00\x8f\x00\x00\x00y\xa8\x00\x005\x00\x00\x00\t\xa9\x00\x00\x0b\x00\x00\x00?\xa9\x00\x00\x05\x00\x00\x00K\xa9\x00\x00\x1f\x00\x00\x00Q\xa9\x00\x00\x06\x00\x00\x00q\xa9\x00\x00=\x00\x00\x00x\xa9\x00\x00!\x00\x00\x00\xb6\xa9\x00\x00$\x00\x00\x00\xd8\xa9\x00\x00\x10\x00\x00\x00\xfd\xa9\x00\x00\t\x00\x00\x00\x0e\xaa\x00\x00\x1b\x00\x00\x00\x18\xaa\x00\x00\x0e\x00\x00\x004\xaa\x00\x00\x12\x00\x00\x00C\xaa\x00\x00\x12\x00\x00\x00V\xaa\x00\x005\x00\x00\x00i\xaa\x00\x00&\x00\x00\x00\x9f\xaa\x00\x00\xe2\x00\x00\x00\xc6\xaa\x00\x00B\x00\x00\x00\xa9\xab\x00\x00\x1d\x00\x00\x00\xec\xab\x00\x00i\x00\x00\x00\n\xac\x00\x00N\x00\x00\x00t\xac\x00\x007\x00\x00\x00\xc3\xac\x00\x00\x08\x00\x00\x00\xfb\xac\x00\x00\x19\x00\x00\x00\x04\xad\x00\x00\x1b\x00\x00\x00\x1e\xad\x00\x00\x11\x00\x00\x00:\xad\x00\x00=\x00\x00\x00L\xad\x00\x00\x92\x00\x00\x00\x8a\xad\x00\x001\x00\x00\x00\x1d\xae\x00\x00R\x00\x00\x00O\xae\x00\x00.\x00\x00\x00\xa2\xae\x00\x00\n\x00\x00\x00\xd1\xae\x00\x00\t\x00\x00\x00\xdc\xae\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book <font face="serif">%s</font> of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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<br>CSS\x00Page Setup\x00Parsing LRF file\x00Password for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: libprs500 0.4.17\nPOT-Creation-Date: 2008-04-01 09:18+PDT\nPO-Revision-Date: 2008-03-30 13:26+0100\nLast-Translator: S. Dorscht <stdoonline@googlemail.com>\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\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\nArtikel %s von %s geladen\n%s\x00 Tage\x00 von\x00 ist kein g\xc3\xbcltiges Bild\x00 nicht gefunden.\x00 Punkt\x00 Pixel\x00 Sekunden\x00 Sterne\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00&Zugriffsschl\xc3\xbcssel:\x00Feed &anf\xc3\xbcgen\x00Etikett &anf\xc3\xbcgen:\x00&Autor:\x00&Unterer Rand:\x00Datenbank verdi&chten\x00Kapitel Ermittlung &deaktivieren\x00&Feed Titel:\x00Seitenumbruch vor Element &erzwingen:\x00&Kopfzeilenformat:\x00&Linker Rand:\x00Speicherort der B\xc3\xbccherdatenbank (&library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace:\x00\xc3\x84<ester Artikel:\x00&Seitenumbruch vor Element:\x00&Passwort:\x00&Vorbearbeiten:\x00&Priorit\xc3\xa4t der Konvertierungsauftr\xc3\xa4ge:\x00&Profil:\x00&Herausgeber:\x00&Bewertung:\x00&Regul\xc3\xa4rer Ausdruck:\x00Rezept entfe&rnen\x00Etiketten entfe&rnen:\x00&Rechter Rand:\x00&Suche:\x00&Serien:\x00&Serif:\x00Kopfzeile an&zeigen\x00Pa&sswort anzeigen\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&Titel:\x00&Oberer Rand:\x00Ben&utzername:\x00&Wortabstand:\x00...\x00<b>\xc3\x84nderungen treten erst nach einem Neustart in Kraft.\x00<b>Konnte kein Umschlagbild abrufen.</b><br/>\x00<b>Keine Treffer</b> f\xc3\xbcr die Suchworte <i>%s</i> gefunden.\x00<br>Muss ein Verzeichnis sein.\x00<font color="gray">Keine Hilfe verf\xc3\xbcgbar</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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 gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML Dateien von Book Designer</li>\x00<li><b>pdftohtml</b> - HTML Dateien, die mit dem Programm pdftohtml erstellt wurden</li>\x00<ol><li><b>baen</b> - B\xc3\xbccher von BAEN Publishers</li>\x00<p>Es existiert bereits eine ung\xc3\xbcltige Datenbank in %s, bitte l\xc3\xb6schen Sie diese, bevor sie die bestehende Datenbank verschieben.<br>Fehler: %s\x00<p>Es existieren bereits B\xc3\xbccher mit dem selben Titel in der Datenbank. Sollen die folgenden B\xc3\xbccher trotzdem hinzugef\xc3\xbcgt werden?<ul>\x00<p>Es k\xc3\xb6nnen keine B\xc3\xbccher mehr auf das Ger\xc3\xa4t geladen werden, da der Ger\xc3\xa4tespeicher voll ist \x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr <b>LibraryThing.com</b> an. <br/>Insofern Sie dies nicht besitzen, k\xc3\xb6nnen Sie sich kostenlos <a href=\'http://www.librarything.com\'>anmelden</a>! </p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Es trat ein Fehler beim Lesen dieser Datei auf: <br /><b>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Zuge&wiesene Etiketten\x00&Verf\xc3\xbcgbare Etiketten\x00Aktive Auftr\xc3\xa4ge\x00&Etiketten hinzuf\xc3\xbcgen: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Ein Verzeichnis zur Liste der h\xc3\xa4ufig genutzten Verzeichnisse 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\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Aussehen der erstellten LRF Datei durch die Angabe von Schriftgr\xc3\xb6\xc3\x9fen und Wortabst\xc3\xa4nden angleichen.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Irgendein\x00Etikett dem aktuellen Buch zuweisen\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00S&ortierung nach Autor:\x00So&rtierung nach Autor:\x00Autor(en)\x00Autoren:\x00Verf\xc3\xbcgbare Formate\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Zur\xc3\xbcck\x00Ausgangsschrift&gr\xc3\xb6\xc3\x9fe:\x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Buch\x00Buch <font face="serif">%s</font> von %s.\x00Umschlagbild\x00Unterer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Nach Umschlagbild durchsuchen...\x00Zu einem neuen Ort der Datenbank wechseln\x00Auf einmal konvertieren\x00eBooks auf einmal zu LRF konvertieren\x00Konfiguration nicht m\xc3\xb6glich\x00Konfiguration nicht m\xc3\xb6glich w\xc3\xa4hrend Auftr\xc3\xa4ge abgearbeitet werden.\x00Verbindung nicht m\xc3\xb6glich\x00Konvertierung nicht m\xc3\xb6glich\x00Kann %s nicht konvertieren, da dieses Buch nicht den bekannten Formaten entspricht\x00Kann Metadaten nicht bearbeiten\x00Kann kein Umschlagbild abrufen\x00Kann schon fertiggestellte Auftr\xc3\xa4ge nicht abbrechen.\x00Kann Auftrag nicht abbrechen.\x00Kann Auftr\xc3\xa4ge nicht abbrechen, die mit dem Ger\xc3\xa4t kommunizieren, da dies zu Datenverlust f\xc3\xbchren kann.\x00Kann Auftr\xc3\xa4ge in Warteliste nicht abbrechen.\x00Lesen nicht m\xc3\xb6glich\x00Speichern auf Festplatte nicht m\xc3\xb6glich\x00Ansehen nicht m\xc3\xb6glich\x00Karte\n%s verf\xc3\xbcgbar\x00Kategorie\x00&Umschlagbild \xc3\xa4ndern:\x00Passwort \xc3\xa4ndern\x00Autor dieses Buches \xc3\xa4ndern. Mehrere Autoren sollten durch Kommata getrennt werden\x00Herausgeber dieses Buches \xc3\xa4ndern\x00Titel dieses Buches \xc3\xa4ndern\x00Benutzername und/oder Passwort Ihres Kontos bei LibraryThing.com \xc3\xa4ndern\x00Ermittlung der Kapitel\x00Format w\xc3\xa4hlen\x00W\xc3\xa4hlen Sie das Format, das zu LRF konvertiert werden soll\x00Format zur Vorschau w\xc3\xa4hlen\x00Ein Klick zeigt die aktiven Auftr\xc3\xa4ge.\x00Durch getrennte Liste der Etiketten, die von den B\xc3\xbcchern entfernt werden.\x00Bemerkung\x00Konfiguration\x00Konfigurieren\x00Viewer konfigurieren \x00Konvertiere %s in LRF\x00In eBooks umwandeln\x00Einzeln konvertieren\x00Zu LRF konvertieren\x00Konnte Umschlagbild nicht laden: %s\x00Konnte Artikel nicht abrufen. Der erneute Start mit --debug zeigt m\xc3\xb6gliche Gr\xc3\xbcnde an \x00Konnte kein Umschlagbild abrufen\x00Konnte aufgrund zu hoher Serverlast kein Umschlagbild abrufen. Bitte versuchen sie es sp\xc3\xa4ter wieder.\x00Konnte Datenbank nicht verschieben\x00Konnte Datei nicht analysieren: %s\x00Erstellt von \x00Individuelle Nachrichtenquellen\x00Datum\x00Voreinstellung f\xc3\xbcr Zei&t\xc3\xbcberschreitung bei Netzwerkverbindungen:\x00L\xc3\xb6schen\x00Etikett aus der Datenbank l\xc3\xb6schen. Entfernt das Etikett von allen B\xc3\xbcchern und l\xc3\xb6scht es dann aus der Datenbank.\x00Details des Auftrags\x00Was wei\xc3\x9f ich, f\xc3\xbcr was das ist\x00Fortschrittsbalken nicht anzeigen\x00Download beendet\x00Lade Umschlagbild von %s\x00Duplikate gefunden\x00E\x00FEHLER\x00Meta-Informationen bearbeiten\x00Meta-Informationen bearbeiten\x00Meta-Informationen editieren\x00Meta-Daten auf einmal bearbeiten\x00Meta-Daten einzeln bearbeiten\x00Eingebundene Schriften\x00Automatische &Rotation von Bildern einschalten\x00Automatische Rotation von Bildern, die breiter als die Bildschirmbreite sind.\x00Fehler\x00Fehler bei der Kommunikation mit dem Ger\xc3\xa4t\x00Fehler beim Lesen der Datei\x00Fehler in der Kommunikation zum Ger\xc3\xa4t\x00Thumbnail von LRF Datei extrahieren\x00Laden der Artikel fehlgeschlagen: %s von %s\n\x00Der Download von Teilen der folgenden Artikel schlug fehl:\x00Der Download der folgenden Artikel schlug fehl:\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Abrufen\x00Umschlagbild vom Server abrufen\x00Meta-Daten abrufen\x00Meta-Daten vom Server abrufen\x00Nachrichten abrufen\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Meta-Daten abrufen f\xc3\xbcr <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Feineinstellung der Erkennung von Kapitel- und Absatz\xc3\xbcberschriften.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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, verwenden Sie "h\\d,class,chapter". Voreinstellung ist %default\x00Seitenumbruch erzwingen vor Elementen, deren Namen diesem regul\xc3\xa4ren Ausdruck entsprechen. \x00Seitenumbruch vor &Attribut erzwingen:\x00Art\x00Format\x00Formate\x00Weiter\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00H\xc3\xa4ufig benutzte Verzeichnisse\x00Feeds der Index Seite erhalten\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.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Falls die Quelldatei ein Umschlagbild enth\xc3\xa4lt, das Umschlagbild der Quelldatei benutzen, anstatt des angegebenen Umschlagbildes. \x00Farben nicht bea&chten\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\x00Ung\xc3\xbcltige Datenbank\x00Ortsangabe der Datenbank ung\xc3\xbcltig\x00Ortsangabe der Datenbank ung\xc3\xbcltig\x00Ortsangabe der Datenbank ung\xc3\xbcltig.<br>Speichern nicht m\xc3\xb6glich\x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Auftrag\x00Auftrag durch Benutzer abgebrochen\x00Auftr\xc3\xa4ge:\x00LRF Viewer\x00Linker Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Bibliothek\x00Liste der bekannten Serien. Sie k\xc3\xb6nnen neue Serien hinzuf\xc3\xbcgen.\x00Look & Feel\x00\xc3\x9cbereinstimmung mit a&llen der folgenden Kriterien\x00\xc3\x9cbereinstimmung mit irge&ndeinem der folgenden Kriterien\x00Treffer\x00Maximale Anzahl der zu ladenden Artikel pro feed.\x00Meta-Informationen\x00Meta-Daten\x00Speicherbenutzung verringern auf Kosten l\xc3\xa4ngerer Bearbeitungszeiten. Benutzen Sie diese Einstellung, wenn sie an einem Rechner mit geringem Hauptspeicher arbeiten.\x00E&inr\xc3\xbccken mindestens:\x00Mehr\x00Ausblenden\x00Nachrichten abgerufen. \xc3\x9cbertragung ans Ger\xc3\xa4t l\xc3\xa4uft.\x00N\xc3\xa4chste Seite\x00N\xc3\xa4chster Treffer\x00Keine verf\xc3\xbcgbaren Formate\x00Kein Buch ausgew\xc3\xa4hlt\x00Keine B\xc3\xbccher ausgew\xc3\xa4hlt\x00Kein Treffer\x00Keine Treffer gefunden\x00Ger\xc3\xa4tespeicher voll\x00Keine\x00Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. Voreinstellung %default\x00Etiketten-Editor \xc3\xb6ffnen\x00eBook \xc3\xb6ffnen\x00Auswahlm\xc3\xb6glichkeiten\x00Einstellungen f\xc3\xbcr feeds2disk\x00Einstellungen f\xc3\xbcr html2lrf\x00Einstellungen f\xc3\xbcr web2disk (um von Feeds verlinkte Webseiten abzurufen)\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<br>\xc3\xbcberschreiben\x00Seiteneinrichtung\x00Analysiere LRF Datei\x00Passwort f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Passwort erforderlich\x00Pfad\x00Pfad zu einer Grafik, die als Thumbnail f\xc3\xbcr diese Datei verwendet werden soll \x00Pfad zu einer Text Datei, deren Inhalt als Bemerkung in der LRF Datei gespeichert wird\x00Pfad zur Datei des Umschlagbildes \x00Pfad zum Ausgabeverzeichnis, in dem die HTML Datei erstellt werden soll. Voreinstellung auf aktuelles Verzeichnis.\x00Baen HTML Dateien vorbearbeiten, um die erstellte LRF Datei zu verbessern.\x00Datei vorbearbeiten bevor sie zu LRF konvertiert wird. Das ist hilfreich, wenn Sie wissen, dass die Datei von einer der folgenden Bezugsquellen stammt:\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:\x00Fortschritt\x00Herausgeber\x00Bewertung\x00Bewertung dieses Buches: 0-5 Sterne\x00Reader\n%s verf\xc3\xbcgbar\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00B\xc3\xbccher entfernen\x00Feed aus dem Rezept entfernen\x00Markierte Formate dieses Buches aus der Datenbank l\xc3\xb6schen\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\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.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Quick Search l\xc3\xb6schen\x00Rechter Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Laufzeit\x00S&ans-serif:\x00Auf HD sichern\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Liste der B\xc3\xbccher nach Titel oder Autor durchsuchen<br><br>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<br><br>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\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00An Reader \xc3\xbcbertragen\x00An Hauptspeicher senden\x00An Speicherkarte senden\x00Paragraphen durch Leerzeilen trennen.\x00Serie\x00Index der Serien.\x00Serien Index:\x00Serien:\x00Server-Fehler. Bitte versuchen Sie es sp\xc3\xa4ter wieder.\x00Geben Sie die Buch ID an\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie den Autor an\x00Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt angegeben werden. Voreinstellung: %default\x00Geben Sie den Buchtitel an\x00Geben Sie eine Kategorie an.\x00Geben Sie eine Bemerkung an.\x00Voreinstellung der Zeit\xc3\xbcberschreitung f\xc3\xbcr Netzwerkabrufe festsetzen (Gilt immer dann, wenn aus dem Internet Informationen abgerufen werden sollen) \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 <a href="http://www.isbndb.com">ISBNdb.com</a> um einen Zugriffsschl\xc3\xbcssel zu erhalten.\x00Gr\xc3\xb6\xc3\x9fe (MB)\x00Sortierung nach Autor\x00Sortierung nach Titel\x00En&codierung der Quelldatei:\x00Geben Sie eine Liste von Feeds zum Download an. Zum Beispiel: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nWenn Sie diese Option w\xc3\xa4hlen, wird jedes Argument %prog ignoriert und die Voreinstellung zum Download der Feeds verwendet. \x00Geben Sie an, wie der Autor dieses Buches sortiert werden soll. "Charles Dickens" zum Beispiel als "Dickens, Charles".\x00Geben Sie Meta-Daten wie den Titel und den Autor des Buches an. <p>Meta-Daten werden sowohl in der Datenbank als auch in der erstellten LRF Datei aktualisiert.\x00Geben Sie die Ausgangsschriftgr\xc3\xb6\xc3\x9fe in Punkt an. Alle Schriften werden dementsprechend im Ma\xc3\x9fstab angepasst. Diese Einstellung setzt die --font-delta Einstellung au\xc3\x9fer Gebrauch und nimmt den Vorrang ein. Um --font-delta zu benutzen, stellen Sie diesen Wert auf 0.\x00Seiteneinstellungen wie R\xc3\xa4nder und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4ts angeben.\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 individuell 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\x00Starte Download von [%d Thread(s)]...\x00Status\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00&Etiketten:\x00Etikett\x00Etiketten Editor\x00Auf Etiketten basierende Ermittlung\x00Etiketten\x00Etiketten klassifizieren das Buch. Besonders wichtig bei der Suche nach B\xc3\xbcchern. <br><br>Sie k\xc3\xb6nnen f\xc3\xbcr Etiketten durch Kommata getrennte W\xc3\xb6rter oder S\xc3\xa4tze verwenden.\x00Test\x00TextLabel\x00Die Kategorie dieses Buches ... (Z. B.: Geschichte)\x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\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 <a> Elemente ignoriert werden. \x00Nichtproportionale Schriftartfamilie einbetten\x00\xc3\x84ltester Artikel, der geladen wird\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\x00Der Text, nach dem gesucht werden soll. Dies wird als eine Regul\xc3\xa4re Expression interpretiert.\x00Der Titel f\xc3\xbcr dieses Rezept. Wird als Titel f\xc3\xbcr alle eBooks benutzt, die aus den geladenen Feeds erstellt wurden.\x00Es trat ein Fehler in der Kommunikation mit dem Ger\xc3\xa4t auf. Bitte entfernen und schlie\xc3\x9fen Sie das Ger\xc3\xa4t wieder an und - oder starten Sie neu.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Zeitstempel\x00Titel\x00Auf Titel basierende Ermittlung\x00Titel:\x00Oberer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Versuche Umschlagbild zu laden...\x00Etikett vom aktuellen Buch entfernen\x00Nicht verf\xc3\xbcgbar\x00Unbekannt\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00&R\xc3\xb6mische Ziffern f\xc3\xbcr Serien Nummerierung verwenden\x00Um&schlagbild der Quelldatei verwenden\x00Das <spine> 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\x00Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed und l\xc3\xa4dt h\xc3\xb6chstens 2 Feeds.\x00Benutzername f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Vorschau\x00Spezielles Format ansehen\x00Abwarten und Tee trinken...\x00Bei der Arbeit...\x00Sie haben nicht die n\xc3\xb6tigen Rechte, um diese Datei zu lesen:\x00Sie m\xc3\xbcssen diese Auswahl treffen, wenn sie Dateien, die von pdftohtml erstellt wurden, verarbeiten wollen, sonst schl\xc3\xa4gt die Konvertierung fehl.\x00Es muss eine einzelne PDF Datei angegeben werden.\x00Sie m\xc3\xbcssen einen g\xc3\xbcltigen Zugangsschl\xc3\xbcssel (access key) f\xc3\xbcr isbndb.com angeben\x00Sie m\xc3\xbcssen die ISBN f\xc3\xbcr dieses Buch angeben.\x00beinhaltet\x00libprs500\x00', 'it': '\xde\x12\x04\x95\x00\x00\x00\x00\xa2\x01\x00\x00\x1c\x00\x00\x00,\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00<\x1a\x00\x00\x0e\x00\x00\x00=\x1a\x00\x00!\x00\x00\x00L\x1a\x00\x00\x05\x00\x00\x00n\x1a\x00\x00\x06\x00\x00\x00t\x1a\x00\x00\x17\x00\x00\x00{\x1a\x00\x00\x0b\x00\x00\x00\x93\x1a\x00\x00\x04\x00\x00\x00\x9f\x1a\x00\x00\x03\x00\x00\x00\xa4\x1a\x00\x00\x08\x00\x00\x00\xa8\x1a\x00\x00\x06\x00\x00\x00\xb1\x1a\x00\x00\x1c\x00\x00\x00\xb8\x1a\x00\x00\x0e\x00\x00\x00\xd5\x1a\x00\x00\x0c\x00\x00\x00\xe4\x1a\x00\x00\t\x00\x00\x00\xf1\x1a\x00\x00\t\x00\x00\x00\xfb\x1a\x00\x00\x0c\x00\x00\x00\x05\x1b\x00\x00\x0f\x00\x00\x00\x12\x1b\x00\x00\x11\x00\x00\x00"\x1b\x00\x00\x1a\x00\x00\x004\x1b\x00\x00\x0c\x00\x00\x00O\x1b\x00\x00\x1d\x00\x00\x00\\\x1b\x00\x00\x0f\x00\x00\x00z\x1b\x00\x00\r\x00\x00\x00\x8a\x1b\x00\x00)\x00\x00\x00\x98\x1b\x00\x00"\x00\x00\x00\xc2\x1b\x00\x00\x18\x00\x00\x00\xe5\x1b\x00\x00\x0b\x00\x00\x00\xfe\x1b\x00\x00\x10\x00\x00\x00\n\x1c\x00\x00\x17\x00\x00\x00\x1b\x1c\x00\x00\n\x00\x00\x003\x1c\x00\x00\x0c\x00\x00\x00>\x1c\x00\x00\x1e\x00\x00\x00K\x1c\x00\x00\t\x00\x00\x00j\x1c\x00\x00\x0c\x00\x00\x00t\x1c\x00\x00\x08\x00\x00\x00\x81\x1c\x00\x00\x14\x00\x00\x00\x8a\x1c\x00\x00\x0e\x00\x00\x00\x9f\x1c\x00\x00\r\x00\x00\x00\xae\x1c\x00\x00\x0e\x00\x00\x00\xbc\x1c\x00\x00\x08\x00\x00\x00\xcb\x1c\x00\x00\x08\x00\x00\x00\xd4\x1c\x00\x00\x07\x00\x00\x00\xdd\x1c\x00\x00\x0c\x00\x00\x00\xe5\x1c\x00\x00\x0e\x00\x00\x00\xf2\x1c\x00\x00\x12\x00\x00\x00\x01\x1d\x00\x00\x05\x00\x00\x00\x14\x1d\x00\x00\x08\x00\x00\x00\x1a\x1d\x00\x00\x0c\x00\x00\x00#\x1d\x00\x00\n\x00\x00\x000\x1d\x00\x00\x0e\x00\x00\x00;\x1d\x00\x00\x03\x00\x00\x00J\x1d\x00\x001\x00\x00\x00N\x1d\x00\x00"\x00\x00\x00\x80\x1d\x00\x00=\x00\x00\x00\xa3\x1d\x00\x00\x18\x00\x00\x00\xe1\x1d\x00\x00+\x00\x00\x00\xfa\x1d\x00\x00\x00\x02\x00\x00&\x1e\x00\x00\xa3\x01\x00\x00\' \x00\x00\x82\x02\x00\x00\xcb!\x00\x00>\x00\x00\x00N$\x00\x00S\x00\x00\x00\x8d$\x00\x005\x00\x00\x00\xe1$\x00\x00p\x00\x00\x00\x17%\x00\x00a\x00\x00\x00\x88%\x00\x00G\x00\x00\x00\xea%\x00\x00(\x00\x00\x002&\x00\x00\xa7\x00\x00\x00[&\x00\x00W\x00\x00\x00\x03\'\x00\x00\x96\x00\x00\x00[\'\x00\x00=\x01\x00\x00\xf2\'\x00\x002\x00\x00\x000)\x00\x00T\x00\x00\x00c)\x00\x00\x01\x00\x00\x00\xb8)\x00\x00C\x00\x00\x00\xba)\x00\x00X\x00\x00\x00\xfe)\x00\x00\r\x00\x00\x00W*\x00\x00\x0f\x00\x00\x00e*\x00\x00\x0b\x00\x00\x00u*\x00\x00\x0b\x00\x00\x00\x81*\x00\x00\x18\x00\x00\x00\x8d*\x00\x007\x00\x00\x00\xa6*\x00\x004\x00\x00\x00\xde*\x00\x00.\x00\x00\x00\x13+\x00\x00\t\x00\x00\x00B+\x00\x00!\x00\x00\x00L+\x00\x00b\x00\x00\x00n+\x00\x00o\x00\x00\x00\xd1+\x00\x00\x16\x00\x00\x00A,\x00\x00\x12\x00\x00\x00X,\x00\x006\x00\x00\x00k,\x00\x00\x12\x00\x00\x00\xa2,\x00\x00m\x00\x00\x00\xb5,\x00\x00\x08\x00\x00\x00#-\x00\x00\x0f\x00\x00\x00,-\x00\x00\x0f\x00\x00\x00<-\x00\x00\x0e\x00\x00\x00L-\x00\x00\x05\x00\x00\x00[-\x00\x00\x03\x00\x00\x00a-\x00\x00\x19\x00\x00\x00e-\x00\x00\x1b\x00\x00\x00\x7f-\x00\x00\x16\x00\x00\x00\x9b-\x00\x00\x06\x00\x00\x00\xb2-\x00\x00\x0e\x00\x00\x00\xb9-\x00\x00\r\x00\x00\x00\xc8-\x00\x00\t\x00\x00\x00\xd6-\x00\x00\x08\x00\x00\x00\xe0-\x00\x00\x11\x00\x00\x00\xe9-\x00\x00\x16\x00\x00\x00\xfb-\x00\x00\x04\x00\x00\x00\x12.\x00\x00\x10\x00\x00\x00\x17.\x00\x00\x05\x00\x00\x00(.\x00\x00!\x00\x00\x00..\x00\x00\x10\x00\x00\x00P.\x00\x00\x05\x00\x00\x00a.\x00\x00(\x00\x00\x00g.\x00\x00\n\x00\x00\x00\x90.\x00\x00.\x00\x00\x00\x9b.\x00\x005\x00\x00\x00\xca.\x00\x00$\x00\x00\x00\x00/\x00\x00\x0c\x00\x00\x00%/\x00\x00\x1a\x00\x00\x002/\x00\x00\x10\x00\x00\x00M/\x00\x00.\x00\x00\x00^/\x00\x00\x0e\x00\x00\x00\x8d/\x00\x00\x0e\x00\x00\x00\x9c/\x00\x007\x00\x00\x00\xab/\x00\x00\x14\x00\x00\x00\xe3/\x00\x00\x12\x00\x00\x00\xf8/\x00\x00#\x00\x00\x00\x0b0\x00\x00\x0f\x00\x00\x00/0\x00\x00Z\x00\x00\x00?0\x00\x00\x19\x00\x00\x00\x9a0\x00\x00\x0b\x00\x00\x00\xb40\x00\x00\x13\x00\x00\x00\xc00\x00\x00\x0b\x00\x00\x00\xd40\x00\x00\x11\x00\x00\x00\xe00\x00\x00\x08\x00\x00\x00\xf20\x00\x00\x14\x00\x00\x00\xfb0\x00\x00\x0f\x00\x00\x00\x101\x00\x00R\x00\x00\x00 1\x00\x00!\x00\x00\x00s1\x00\x00\x1d\x00\x00\x00\x951\x00\x00H\x00\x00\x00\xb31\x00\x00\x11\x00\x00\x00\xfc1\x00\x00\r\x00\x00\x00\x0e2\x00\x00%\x00\x00\x00\x1c2\x00\x00\x19\x00\x00\x00B2\x00\x00!\x00\x00\x00\\2\x00\x007\x00\x00\x00~2\x00\x00\x08\x00\x00\x00\xb62\x00\x00\r\x00\x00\x00\xbf2\x00\x00\t\x00\x00\x00\xcd2\x00\x00\x10\x00\x00\x00\xd72\x00\x00\x11\x00\x00\x00\xe82\x00\x00\x0f\x00\x00\x00\xfa2\x00\x00\x14\x00\x00\x00\n3\x00\x00\x0e\x00\x00\x00\x1f3\x00\x00\x1c\x00\x00\x00.3\x00\x00;\x00\x00\x00K3\x00\x00\x15\x00\x00\x00\x873\x00\x00R\x00\x00\x00\x9d3\x00\x00\x17\x00\x00\x00\xf03\x00\x00\x18\x00\x00\x00\x084\x00\x00\x0b\x00\x00\x00!4\x00\x00\x13\x00\x00\x00-4\x00\x00\x04\x00\x00\x00A4\x00\x00\x19\x00\x00\x00F4\x00\x00\x03\x00\x00\x00`4\x00\x00h\x00\x00\x00d4\x00\x00\x0e\x00\x00\x00\xcd4\x00\x00\x1b\x00\x00\x00\xdc4\x00\x00\x1a\x00\x00\x00\xf84\x00\x00\x11\x00\x00\x00\x135\x00\x00\x19\x00\x00\x00%5\x00\x00\x11\x00\x00\x00?5\x00\x00\x01\x00\x00\x00Q5\x00\x00\x05\x00\x00\x00S5\x00\x00\x15\x00\x00\x00Y5\x00\x00\x15\x00\x00\x00o5\x00\x00\x15\x00\x00\x00\x855\x00\x00\x15\x00\x00\x00\x9b5\x00\x00\x1a\x00\x00\x00\xb15\x00\x00\x0e\x00\x00\x00\xcc5\x00\x00\x1f\x00\x00\x00\xdb5\x00\x00C\x00\x00\x00\xfb5\x00\x00\x05\x00\x00\x00?6\x00\x00\x1f\x00\x00\x00E6\x00\x00\x12\x00\x00\x00e6\x00\x00\x17\x00\x00\x00x6\x00\x00\x1f\x00\x00\x00\x906\x00\x00\'\x00\x00\x00\xb06\x00\x003\x00\x00\x00\xd86\x00\x00*\x00\x00\x00\x0c7\x00\x00\n\x00\x00\x0077\x00\x00\x14\x00\x00\x00B7\x00\x00\x16\x00\x00\x00W7\x00\x00\x16\x00\x00\x00n7\x00\x00\x0f\x00\x00\x00\x857\x00\x00\x05\x00\x00\x00\x957\x00\x00\x1d\x00\x00\x00\x9b7\x00\x00\x0e\x00\x00\x00\xb97\x00\x00\x1a\x00\x00\x00\xc87\x00\x00\n\x00\x00\x00\xe37\x00\x00\x10\x00\x00\x00\xee7\x00\x00\r\x00\x00\x00\xff7\x00\x00\x11\x00\x00\x00\r8\x00\x00\x1f\x00\x00\x00\x1f8\x00\x00\x13\x00\x00\x00?8\x00\x00\x1b\x00\x00\x00S8\x00\x00\x05\x00\x00\x00o8\x00\x00\x0b\x00\x00\x00u8\x00\x008\x00\x00\x00\x818\x00\x00\x08\x00\x00\x00\xba8\x00\x00\x8a\x00\x00\x00\xc38\x00\x00\x1d\x01\x00\x00N9\x00\x00J\x00\x00\x00l:\x00\x00#\x00\x00\x00\xb7:\x00\x00\x04\x00\x00\x00\xdb:\x00\x00\x06\x00\x00\x00\xe0:\x00\x00\x07\x00\x00\x00\xe7:\x00\x00\x07\x00\x00\x00\xef:\x00\x00\'\x00\x00\x00\xf7:\x00\x00\x1b\x00\x00\x00\x1f;\x00\x00\x19\x00\x00\x00;;\x00\x00\x06\x00\x00\x00U;\x00\x00\x0c\x00\x00\x00\\;\x00\x00\t\x00\x00\x00i;\x00\x00\x06\x00\x00\x00s;\x00\x00\xdc\x01\x00\x00z;\x00\x00n\x00\x00\x00W=\x00\x00a\x00\x00\x00\xc6=\x00\x00\x0e\x00\x00\x00(>\x00\x00\x0e\x00\x00\x007>\x00\x00\xa8\x00\x00\x00F>\x00\x00&\x00\x00\x00\xef>\x00\x00\x10\x00\x00\x00\x16?\x00\x00\x19\x00\x00\x00\'?\x00\x00\x1a\x00\x00\x00A?\x00\x00.\x00\x00\x00\\?\x00\x00\r\x00\x00\x00\x8b?\x00\x00\x1a\x00\x00\x00\x99?\x00\x00\x1e\x00\x00\x00\xb4?\x00\x00\x03\x00\x00\x00\xd3?\x00\x00\x12\x00\x00\x00\xd7?\x00\x00\x05\x00\x00\x00\xea?\x00\x00\n\x00\x00\x00\xf0?\x00\x00,\x00\x00\x00\xfb?\x00\x00\x07\x00\x00\x00(@\x00\x00-\x00\x00\x000@\x00\x00\x0b\x00\x00\x00^@\x00\x00$\x00\x00\x00j@\x00\x00$\x00\x00\x00\x8f@\x00\x00\x07\x00\x00\x00\xb4@\x00\x000\x00\x00\x00\xbc@\x00\x00\x10\x00\x00\x00\xed@\x00\x00\x08\x00\x00\x00\xfe@\x00\x00y\x00\x00\x00\x07A\x00\x00\x10\x00\x00\x00\x81A\x00\x00\x04\x00\x00\x00\x92A\x00\x00\x06\x00\x00\x00\x97A\x00\x00"\x00\x00\x00\x9eA\x00\x00\t\x00\x00\x00\xc1A\x00\x00\n\x00\x00\x00\xcbA\x00\x00\x14\x00\x00\x00\xd6A\x00\x00\x10\x00\x00\x00\xebA\x00\x00\x11\x00\x00\x00\xfcA\x00\x00\x08\x00\x00\x00\x0eB\x00\x00\x10\x00\x00\x00\x17B\x00\x00\x12\x00\x00\x00(B\x00\x00\x04\x00\x00\x00;B\x00\x00^\x00\x00\x00@B\x00\x00\x0f\x00\x00\x00\x9fB\x00\x00\n\x00\x00\x00\xafB\x00\x00\x07\x00\x00\x00\xbaB\x00\x00-\x00\x00\x00\xc2B\x00\x00+\x00\x00\x00\xf0B\x00\x00F\x00\x00\x00\x1cC\x00\x008\x00\x00\x00cC\x00\x00s\x00\x00\x00\x9cC\x00\x00\x0f\x00\x00\x00\x10D\x00\x00\n\x00\x00\x00 D\x00\x00\x10\x00\x00\x00+D\x00\x00:\x00\x00\x00<D\x00\x00\x0f\x00\x00\x00wD\x00\x00\x04\x00\x00\x00\x87D\x00\x00;\x00\x00\x00\x8cD\x00\x00G\x00\x00\x00\xc8D\x00\x001\x00\x00\x00\x10E\x00\x00Y\x00\x00\x00BE\x00\x004\x00\x00\x00\x9cE\x00\x00\x80\x00\x00\x00\xd1E\x00\x00H\x00\x00\x00RF\x00\x00\r\x00\x00\x00\x9bF\x00\x00\xbc\x00\x00\x00\xa9F\x00\x00\x08\x00\x00\x00fG\x00\x00\t\x00\x00\x00oG\x00\x00\x06\x00\x00\x00yG\x00\x00\x1e\x00\x00\x00\x80G\x00\x00\x13\x00\x00\x00\x9fG\x00\x00\x0e\x00\x00\x00\xb3G\x00\x00\x1b\x00\x00\x00\xc2G\x00\x00\x13\x00\x00\x00\xdeG\x00\x00+\x00\x00\x00\xf2G\x00\x00*\x00\x00\x00\x1eH\x00\x000\x00\x00\x00IH\x00\x00)\x00\x00\x00zH\x00\x00<\x00\x00\x00\xa4H\x00\x00\x0c\x00\x00\x00\xe1H\x00\x00\x17\x00\x00\x00\xeeH\x00\x00<\x00\x00\x00\x06I\x00\x000\x00\x00\x00CI\x00\x00\x84\x00\x00\x00tI\x00\x00X\x00\x00\x00\xf9I\x00\x00\x0f\x00\x00\x00RJ\x00\x00\x12\x00\x00\x00bJ\x00\x00-\x00\x00\x00uJ\x00\x00\x0c\x00\x00\x00\xa3J\x00\x00\x0c\x00\x00\x00\xb0J\x00\x00\x0c\x00\x00\x00\xbdJ\x00\x00"\x00\x00\x00\xcaJ\x00\x009\x00\x00\x00\xedJ\x00\x00\x0f\x00\x00\x00\'K\x00\x00V\x00\x00\x007K\x00\x00r\x00\x00\x00\x8eK\x00\x00G\x00\x00\x00\x01L\x00\x00\'\x00\x00\x00IL\x00\x00\x0e\x00\x00\x00qL\x00\x00\x13\x00\x00\x00\x80L\x00\x00\x14\x00\x00\x00\x94L\x00\x00#\x00\x00\x00\xa9L\x00\x00\x06\x00\x00\x00\xcdL\x00\x00\r\x00\x00\x00\xd4L\x00\x00\r\x00\x00\x00\xe2L\x00\x00\x07\x00\x00\x00\xf0L\x00\x00\x1e\x00\x00\x00\xf8L\x00\x00\x0b\x00\x00\x00\x17M\x00\x00\x17\x00\x00\x00#M\x00\x00\x1b\x00\x00\x00;M\x00\x00\x1a\x00\x00\x00WM\x00\x00\x0e\x00\x00\x00rM\x00\x00^\x00\x00\x00\x81M\x00\x00\x12\x00\x00\x00\xe0M\x00\x00\x10\x00\x00\x00\xf3M\x00\x00\x10\x00\x00\x00\x04N\x00\x00g\x00\x00\x00\x15N\x00\x00c\x00\x00\x00}N\x00\x007\x00\x00\x00\xe1N\x00\x00!\x00\x00\x00\x19O\x00\x00d\x00\x00\x00;O\x00\x00\t\x00\x00\x00\xa0O\x00\x00\x17\x00\x00\x00\xaaO\x00\x00\x16\x00\x00\x00\xc2O\x00\x00\x11\x00\x00\x00\xd9O\x00\x00\x04\x01\x00\x00\xebO\x00\x00z\x00\x00\x00\xf0P\x00\x00\x85\x00\x00\x00kQ\x00\x00\xb6\x00\x00\x00\xf1Q\x00\x00P\x00\x00\x00\xa8R\x00\x00+\x01\x00\x00\xf9R\x00\x00#\x00\x00\x00%T\x00\x00\x06\x00\x00\x00IT\x00\x00\x17\x00\x00\x00PT\x00\x00\x14\x00\x00\x00hT\x00\x00\x07\x00\x00\x00}T\x00\x00\x03\x00\x00\x00\x85T\x00\x00\n\x00\x00\x00\x89T\x00\x00\x13\x00\x00\x00\x94T\x00\x00\x04\x00\x00\x00\xa8T\x00\x00\x85\x00\x00\x00\xadT\x00\x00\x04\x00\x00\x003U\x00\x00\t\x00\x00\x008U\x00\x000\x00\x00\x00BU\x00\x00X\x00\x00\x00sU\x00\x00\x1b\x00\x00\x00\xccU\x00\x00\x1a\x00\x00\x00\xe8U\x00\x00\x9d\x00\x00\x00\x03V\x00\x00&\x00\x00\x00\xa1V\x00\x00\x1e\x00\x00\x00\xc8V\x00\x00v\x00\x00\x00\xe7V\x00\x00\'\x00\x00\x00^W\x00\x00"\x00\x00\x00\x86W\x00\x00B\x00\x00\x00\xa9W\x00\x00^\x00\x00\x00\xecW\x00\x00h\x00\x00\x00KX\x00\x00.\x00\x00\x00\xb4X\x00\x00\t\x00\x00\x00\xe3X\x00\x00\x05\x00\x00\x00\xedX\x00\x00\x15\x00\x00\x00\xf3X\x00\x00\x06\x00\x00\x00\tY\x00\x00+\x00\x00\x00\x10Y\x00\x00\x1b\x00\x00\x00<Y\x00\x00&\x00\x00\x00XY\x00\x00\x0b\x00\x00\x00\x7fY\x00\x00\x07\x00\x00\x00\x8bY\x00\x00\x13\x00\x00\x00\x93Y\x00\x00\x0c\x00\x00\x00\xa7Y\x00\x00\x10\x00\x00\x00\xb4Y\x00\x00\x10\x00\x00\x00\xc5Y\x00\x00%\x00\x00\x00\xd6Y\x00\x00\x1b\x00\x00\x00\xfcY\x00\x00\xb4\x00\x00\x00\x18Z\x00\x002\x00\x00\x00\xcdZ\x00\x00\x14\x00\x00\x00\x00[\x00\x00_\x00\x00\x00\x15[\x00\x00:\x00\x00\x00u[\x00\x00*\x00\x00\x00\xb0[\x00\x00\x04\x00\x00\x00\xdb[\x00\x00\x14\x00\x00\x00\xe0[\x00\x00\x07\x00\x00\x00\xf5[\x00\x00\x07\x00\x00\x00\xfd[\x00\x00-\x00\x00\x00\x05\\\x00\x00d\x00\x00\x003\\\x00\x00#\x00\x00\x00\x98\\\x00\x002\x00\x00\x00\xbc\\\x00\x003\x00\x00\x00\xef\\\x00\x00\x08\x00\x00\x00#]\x00\x00\t\x00\x00\x00,]\x00\x00o\x01\x00\x006]\x00\x00\x0e\x00\x00\x00\xa6^\x00\x00\x1f\x00\x00\x00\xb5^\x00\x00\x07\x00\x00\x00\xd5^\x00\x00\x04\x00\x00\x00\xdd^\x00\x00\x1a\x00\x00\x00\xe2^\x00\x00\x0c\x00\x00\x00\xfd^\x00\x00\x03\x00\x00\x00\n_\x00\x00\x03\x00\x00\x00\x0e_\x00\x00\x08\x00\x00\x00\x12_\x00\x00\x07\x00\x00\x00\x1b_\x00\x00\x1d\x00\x00\x00#_\x00\x00\x0c\x00\x00\x00A_\x00\x00\x12\x00\x00\x00N_\x00\x00\x0e\x00\x00\x00a_\x00\x00\x0e\x00\x00\x00p_\x00\x00\x0c\x00\x00\x00\x7f_\x00\x00\x13\x00\x00\x00\x8c_\x00\x00\x12\x00\x00\x00\xa0_\x00\x00)\x00\x00\x00\xb3_\x00\x00\x11\x00\x00\x00\xdd_\x00\x00,\x00\x00\x00\xef_\x00\x00\x16\x00\x00\x00\x1c`\x00\x00\x12\x00\x00\x003`\x00\x00/\x00\x00\x00F`\x00\x00%\x00\x00\x00v`\x00\x00\x1b\x00\x00\x00\x9c`\x00\x00\x12\x00\x00\x00\xb8`\x00\x00\x17\x00\x00\x00\xcb`\x00\x00&\x00\x00\x00\xe3`\x00\x00\n\x00\x00\x00\na\x00\x00\x12\x00\x00\x00\x15a\x00\x00\'\x00\x00\x00(a\x00\x00\t\x00\x00\x00Pa\x00\x00\n\x00\x00\x00Za\x00\x00\n\x00\x00\x00ea\x00\x00\x16\x00\x00\x00pa\x00\x00\x10\x00\x00\x00\x87a\x00\x00\r\x00\x00\x00\x98a\x00\x00\x10\x00\x00\x00\xa6a\x00\x00\x07\x00\x00\x00\xb7a\x00\x00\x07\x00\x00\x00\xbfa\x00\x00\x0c\x00\x00\x00\xc7a\x00\x00\x14\x00\x00\x00\xd4a\x00\x00\x10\x00\x00\x00\xe9a\x00\x00!\x00\x00\x00\xfaa\x00\x00\x05\x00\x00\x00\x1cb\x00\x00\t\x00\x00\x00"b\x00\x00\x13\x00\x00\x00,b\x00\x00\r\x00\x00\x00@b\x00\x00\x16\x00\x00\x00Nb\x00\x00\x03\x00\x00\x00eb\x00\x00/\x00\x00\x00ib\x00\x00.\x00\x00\x00\x99b\x00\x00<\x00\x00\x00\xc8b\x00\x00\x1c\x00\x00\x00\x05c\x00\x002\x00\x00\x00"c\x00\x005\x02\x00\x00Uc\x00\x00\xa3\x01\x00\x00\x8be\x00\x00\x89\x02\x00\x00/g\x00\x00;\x00\x00\x00\xb9i\x00\x00F\x00\x00\x00\xf5i\x00\x002\x00\x00\x00<j\x00\x00x\x00\x00\x00oj\x00\x00[\x00\x00\x00\xe8j\x00\x00V\x00\x00\x00Dk\x00\x00/\x00\x00\x00\x9bk\x00\x00\xc0\x00\x00\x00\xcbk\x00\x00m\x00\x00\x00\x8cl\x00\x00\xaa\x00\x00\x00\xfal\x00\x00\x84\x01\x00\x00\xa5m\x00\x00?\x00\x00\x00*o\x00\x00U\x00\x00\x00jo\x00\x00\x01\x00\x00\x00\xc0o\x00\x00B\x00\x00\x00\xc2o\x00\x00d\x00\x00\x00\x05p\x00\x00\x0e\x00\x00\x00jp\x00\x00\x10\x00\x00\x00yp\x00\x00\r\x00\x00\x00\x8ap\x00\x00\x0f\x00\x00\x00\x98p\x00\x00,\x00\x00\x00\xa8p\x00\x00D\x00\x00\x00\xd5p\x00\x00J\x00\x00\x00\x1aq\x00\x006\x00\x00\x00eq\x00\x00\x0e\x00\x00\x00\x9cq\x00\x00&\x00\x00\x00\xabq\x00\x00b\x00\x00\x00\xd2q\x00\x00u\x00\x00\x005r\x00\x00,\x00\x00\x00\xabr\x00\x00\x1d\x00\x00\x00\xd8r\x00\x00B\x00\x00\x00\xf6r\x00\x00\x1a\x00\x00\x009s\x00\x00\x87\x00\x00\x00Ts\x00\x00\x08\x00\x00\x00\xdcs\x00\x00\x10\x00\x00\x00\xe5s\x00\x00\x10\x00\x00\x00\xf6s\x00\x00\x0b\x00\x00\x00\x07t\x00\x00\x05\x00\x00\x00\x13t\x00\x00\t\x00\x00\x00\x19t\x00\x00 \x00\x00\x00#t\x00\x00&\x00\x00\x00Dt\x00\x00\x16\x00\x00\x00kt\x00\x00\x06\x00\x00\x00\x82t\x00\x00\x19\x00\x00\x00\x89t\x00\x00\x18\x00\x00\x00\xa3t\x00\x00\t\x00\x00\x00\xbct\x00\x00\x07\x00\x00\x00\xc6t\x00\x00\x13\x00\x00\x00\xcet\x00\x00\x1a\x00\x00\x00\xe2t\x00\x00\x08\x00\x00\x00\xfdt\x00\x00\x1d\x00\x00\x00\x06u\x00\x00\x04\x00\x00\x00$u\x00\x00*\x00\x00\x00)u\x00\x00\x11\x00\x00\x00Tu\x00\x00\x06\x00\x00\x00fu\x00\x00(\x00\x00\x00mu\x00\x00\x13\x00\x00\x00\x96u\x00\x008\x00\x00\x00\xaau\x00\x00H\x00\x00\x00\xe3u\x00\x008\x00\x00\x00,v\x00\x00\x12\x00\x00\x00ev\x00\x00%\x00\x00\x00xv\x00\x00\x17\x00\x00\x00\x9ev\x00\x00;\x00\x00\x00\xb6v\x00\x00\x17\x00\x00\x00\xf2v\x00\x00\x16\x00\x00\x00\nw\x00\x00H\x00\x00\x00!w\x00\x00!\x00\x00\x00jw\x00\x00"\x00\x00\x00\x8cw\x00\x00.\x00\x00\x00\xafw\x00\x00\x1f\x00\x00\x00\xdew\x00\x00w\x00\x00\x00\xfew\x00\x00(\x00\x00\x00vx\x00\x00\x13\x00\x00\x00\x9fx\x00\x00\x1d\x00\x00\x00\xb3x\x00\x00\x13\x00\x00\x00\xd1x\x00\x00\x15\x00\x00\x00\xe5x\x00\x00\t\x00\x00\x00\xfbx\x00\x00 \x00\x00\x00\x05y\x00\x00\x0f\x00\x00\x00&y\x00\x00V\x00\x00\x006y\x00\x00 \x00\x00\x00\x8dy\x00\x00 \x00\x00\x00\xaey\x00\x00J\x00\x00\x00\xcfy\x00\x00\x17\x00\x00\x00\x1az\x00\x00\x14\x00\x00\x002z\x00\x00)\x00\x00\x00Gz\x00\x00\x1f\x00\x00\x00qz\x00\x000\x00\x00\x00\x91z\x00\x008\x00\x00\x00\xc2z\x00\x00\x08\x00\x00\x00\xfbz\x00\x00\x0e\x00\x00\x00\x04{\x00\x00\x0e\x00\x00\x00\x13{\x00\x00\x18\x00\x00\x00"{\x00\x00\x12\x00\x00\x00;{\x00\x00\x0e\x00\x00\x00N{\x00\x00\x18\x00\x00\x00]{\x00\x00\x0f\x00\x00\x00v{\x00\x00&\x00\x00\x00\x86{\x00\x00L\x00\x00\x00\xad{\x00\x00"\x00\x00\x00\xfa{\x00\x00Z\x00\x00\x00\x1d|\x00\x00 \x00\x00\x00x|\x00\x00"\x00\x00\x00\x99|\x00\x00\n\x00\x00\x00\xbc|\x00\x00\x1f\x00\x00\x00\xc7|\x00\x00\x04\x00\x00\x00\xe7|\x00\x00 \x00\x00\x00\xec|\x00\x00\x04\x00\x00\x00\r}\x00\x00d\x00\x00\x00\x12}\x00\x00\x13\x00\x00\x00w}\x00\x00\x1a\x00\x00\x00\x8b}\x00\x00"\x00\x00\x00\xa6}\x00\x00\x17\x00\x00\x00\xc9}\x00\x00\x1c\x00\x00\x00\xe1}\x00\x00\x13\x00\x00\x00\xfe}\x00\x00\x01\x00\x00\x00\x12~\x00\x00\x06\x00\x00\x00\x14~\x00\x00\x11\x00\x00\x00\x1b~\x00\x00\x11\x00\x00\x00-~\x00\x00\x11\x00\x00\x00?~\x00\x00\x1b\x00\x00\x00Q~\x00\x00!\x00\x00\x00m~\x00\x00\x11\x00\x00\x00\x8f~\x00\x00,\x00\x00\x00\xa1~\x00\x00Q\x00\x00\x00\xce~\x00\x00\x06\x00\x00\x00 \x7f\x00\x00\'\x00\x00\x00\'\x7f\x00\x00\x1d\x00\x00\x00O\x7f\x00\x00\'\x00\x00\x00m\x7f\x00\x00"\x00\x00\x00\x95\x7f\x00\x00-\x00\x00\x00\xb8\x7f\x00\x008\x00\x00\x00\xe6\x7f\x00\x00+\x00\x00\x00\x1f\x80\x00\x00\x0e\x00\x00\x00K\x80\x00\x00\x1a\x00\x00\x00Z\x80\x00\x00\x1c\x00\x00\x00u\x80\x00\x00\x14\x00\x00\x00\x92\x80\x00\x00\x12\x00\x00\x00\xa7\x80\x00\x00\x07\x00\x00\x00\xba\x80\x00\x00(\x00\x00\x00\xc2\x80\x00\x00\x10\x00\x00\x00\xeb\x80\x00\x00\x1b\x00\x00\x00\xfc\x80\x00\x00\x0f\x00\x00\x00\x18\x81\x00\x00\x13\x00\x00\x00(\x81\x00\x00\x11\x00\x00\x00<\x81\x00\x00\x14\x00\x00\x00N\x81\x00\x00#\x00\x00\x00c\x81\x00\x00\x18\x00\x00\x00\x87\x81\x00\x00$\x00\x00\x00\xa0\x81\x00\x00\x04\x00\x00\x00\xc5\x81\x00\x00\x0b\x00\x00\x00\xca\x81\x00\x00[\x00\x00\x00\xd6\x81\x00\x00\x06\x00\x00\x002\x82\x00\x00\x96\x00\x00\x009\x82\x00\x00O\x01\x00\x00\xd0\x82\x00\x00d\x00\x00\x00 \x84\x00\x003\x00\x00\x00\x85\x84\x00\x00\x07\x00\x00\x00\xb9\x84\x00\x00\x07\x00\x00\x00\xc1\x84\x00\x00\x07\x00\x00\x00\xc9\x84\x00\x00\x06\x00\x00\x00\xd1\x84\x00\x00,\x00\x00\x00\xd8\x84\x00\x00\x1d\x00\x00\x00\x05\x85\x00\x00%\x00\x00\x00#\x85\x00\x00\x0c\x00\x00\x00I\x85\x00\x00\x14\x00\x00\x00V\x85\x00\x00\x06\x00\x00\x00k\x85\x00\x00\x06\x00\x00\x00r\x85\x00\x00B\x02\x00\x00y\x85\x00\x00\x85\x00\x00\x00\xbc\x87\x00\x00n\x00\x00\x00B\x88\x00\x00\x0e\x00\x00\x00\xb1\x88\x00\x00\x0f\x00\x00\x00\xc0\x88\x00\x00\xd9\x00\x00\x00\xd0\x88\x00\x00(\x00\x00\x00\xaa\x89\x00\x00\x13\x00\x00\x00\xd3\x89\x00\x00\x1c\x00\x00\x00\xe7\x89\x00\x00\x1d\x00\x00\x00\x04\x8a\x00\x008\x00\x00\x00"\x8a\x00\x00\x10\x00\x00\x00[\x8a\x00\x00\x1f\x00\x00\x00l\x8a\x00\x00#\x00\x00\x00\x8c\x8a\x00\x00\x06\x00\x00\x00\xb0\x8a\x00\x00\x1c\x00\x00\x00\xb7\x8a\x00\x00\x07\x00\x00\x00\xd4\x8a\x00\x00\x12\x00\x00\x00\xdc\x8a\x00\x007\x00\x00\x00\xef\x8a\x00\x00\n\x00\x00\x00\'\x8b\x00\x00>\x00\x00\x002\x8b\x00\x00\x0f\x00\x00\x00q\x8b\x00\x00,\x00\x00\x00\x81\x8b\x00\x006\x00\x00\x00\xae\x8b\x00\x00\x0e\x00\x00\x00\xe5\x8b\x00\x000\x00\x00\x00\xf4\x8b\x00\x00\x08\x00\x00\x00%\x8c\x00\x00\x08\x00\x00\x00.\x8c\x00\x00\x8a\x00\x00\x007\x8c\x00\x00\x15\x00\x00\x00\xc2\x8c\x00\x00\x07\x00\x00\x00\xd8\x8c\x00\x00\x04\x00\x00\x00\xe0\x8c\x00\x00.\x00\x00\x00\xe5\x8c\x00\x00\x11\x00\x00\x00\x14\x8d\x00\x00\x17\x00\x00\x00&\x8d\x00\x00\x1a\x00\x00\x00>\x8d\x00\x00\x18\x00\x00\x00Y\x8d\x00\x00\x18\x00\x00\x00r\x8d\x00\x00\x16\x00\x00\x00\x8b\x8d\x00\x00\x1e\x00\x00\x00\xa2\x8d\x00\x00$\x00\x00\x00\xc1\x8d\x00\x00\x07\x00\x00\x00\xe6\x8d\x00\x00g\x00\x00\x00\xee\x8d\x00\x00\x15\x00\x00\x00V\x8e\x00\x00\n\x00\x00\x00l\x8e\x00\x00\x07\x00\x00\x00w\x8e\x00\x006\x00\x00\x00\x7f\x8e\x00\x004\x00\x00\x00\xb6\x8e\x00\x00O\x00\x00\x00\xeb\x8e\x00\x00J\x00\x00\x00;\x8f\x00\x00\x83\x00\x00\x00\x86\x8f\x00\x00\x12\x00\x00\x00\n\x90\x00\x00\x0e\x00\x00\x00\x1d\x90\x00\x00\x10\x00\x00\x00,\x90\x00\x00O\x00\x00\x00=\x90\x00\x00\x13\x00\x00\x00\x8d\x90\x00\x00\x08\x00\x00\x00\xa1\x90\x00\x00I\x00\x00\x00\xaa\x90\x00\x00M\x00\x00\x00\xf4\x90\x00\x00>\x00\x00\x00B\x91\x00\x00Z\x00\x00\x00\x81\x91\x00\x00B\x00\x00\x00\xdc\x91\x00\x00{\x00\x00\x00\x1f\x92\x00\x00Z\x00\x00\x00\x9b\x92\x00\x00\x11\x00\x00\x00\xf6\x92\x00\x00\xc2\x00\x00\x00\x08\x93\x00\x00\t\x00\x00\x00\xcb\x93\x00\x00\x07\x00\x00\x00\xd5\x93\x00\x00\x08\x00\x00\x00\xdd\x93\x00\x00$\x00\x00\x00\xe6\x93\x00\x00\x16\x00\x00\x00\x0b\x94\x00\x00\x10\x00\x00\x00"\x94\x00\x00 \x00\x00\x003\x94\x00\x00\x15\x00\x00\x00T\x94\x00\x008\x00\x00\x00j\x94\x00\x007\x00\x00\x00\xa3\x94\x00\x00=\x00\x00\x00\xdb\x94\x00\x007\x00\x00\x00\x19\x95\x00\x00D\x00\x00\x00Q\x95\x00\x00\r\x00\x00\x00\x96\x95\x00\x00\x1d\x00\x00\x00\xa4\x95\x00\x00<\x00\x00\x00\xc2\x95\x00\x000\x00\x00\x00\xff\x95\x00\x00\xa0\x00\x00\x000\x96\x00\x00b\x00\x00\x00\xd1\x96\x00\x00\x19\x00\x00\x004\x97\x00\x00\x16\x00\x00\x00N\x97\x00\x005\x00\x00\x00e\x97\x00\x00\x13\x00\x00\x00\x9b\x97\x00\x00\x0e\x00\x00\x00\xaf\x97\x00\x00\x0e\x00\x00\x00\xbe\x97\x00\x00&\x00\x00\x00\xcd\x97\x00\x00@\x00\x00\x00\xf4\x97\x00\x00\x12\x00\x00\x005\x98\x00\x00h\x00\x00\x00H\x98\x00\x00\x80\x00\x00\x00\xb1\x98\x00\x00\\\x00\x00\x002\x99\x00\x007\x00\x00\x00\x8f\x99\x00\x00\x14\x00\x00\x00\xc7\x99\x00\x00\x1d\x00\x00\x00\xdc\x99\x00\x00\x1c\x00\x00\x00\xfa\x99\x00\x00$\x00\x00\x00\x17\x9a\x00\x00\x05\x00\x00\x00<\x9a\x00\x00\x0c\x00\x00\x00B\x9a\x00\x00\r\x00\x00\x00O\x9a\x00\x00\x06\x00\x00\x00]\x9a\x00\x00\'\x00\x00\x00d\x9a\x00\x00\x16\x00\x00\x00\x8c\x9a\x00\x00\'\x00\x00\x00\xa3\x9a\x00\x004\x00\x00\x00\xcb\x9a\x00\x003\x00\x00\x00\x00\x9b\x00\x00\x10\x00\x00\x004\x9b\x00\x00^\x00\x00\x00E\x9b\x00\x00\x1b\x00\x00\x00\xa4\x9b\x00\x00\x14\x00\x00\x00\xc0\x9b\x00\x00\x13\x00\x00\x00\xd5\x9b\x00\x00\x80\x00\x00\x00\xe9\x9b\x00\x00\x7f\x00\x00\x00j\x9c\x00\x00K\x00\x00\x00\xea\x9c\x00\x00-\x00\x00\x006\x9d\x00\x00x\x00\x00\x00d\x9d\x00\x00\x0f\x00\x00\x00\xdd\x9d\x00\x00)\x00\x00\x00\xed\x9d\x00\x00(\x00\x00\x00\x17\x9e\x00\x00\x13\x00\x00\x00@\x9e\x00\x00\x1b\x01\x00\x00T\x9e\x00\x00\x8d\x00\x00\x00p\x9f\x00\x00|\x00\x00\x00\xfe\x9f\x00\x00\xe1\x00\x00\x00{\xa0\x00\x00c\x00\x00\x00]\xa1\x00\x00\x8e\x01\x00\x00\xc1\xa1\x00\x00\'\x00\x00\x00P\xa3\x00\x00\x05\x00\x00\x00x\xa3\x00\x00\x1d\x00\x00\x00~\xa3\x00\x00\x19\x00\x00\x00\x9c\xa3\x00\x00\x06\x00\x00\x00\xb6\xa3\x00\x00\x03\x00\x00\x00\xbd\xa3\x00\x00\r\x00\x00\x00\xc1\xa3\x00\x00\x1d\x00\x00\x00\xcf\xa3\x00\x00\x03\x00\x00\x00\xed\xa3\x00\x00\x97\x00\x00\x00\xf1\xa3\x00\x00\x04\x00\x00\x00\x89\xa4\x00\x00\x10\x00\x00\x00\x8e\xa4\x00\x006\x00\x00\x00\x9f\xa4\x00\x00K\x00\x00\x00\xd6\xa4\x00\x00\x1d\x00\x00\x00"\xa5\x00\x00\x1c\x00\x00\x00@\xa5\x00\x00\xb4\x00\x00\x00]\xa5\x00\x008\x00\x00\x00\x12\xa6\x00\x00$\x00\x00\x00K\xa6\x00\x00\x97\x00\x00\x00p\xa6\x00\x002\x00\x00\x00\x08\xa7\x00\x000\x00\x00\x00;\xa7\x00\x00A\x00\x00\x00l\xa7\x00\x00^\x00\x00\x00\xae\xa7\x00\x00\x81\x00\x00\x00\r\xa8\x00\x00/\x00\x00\x00\x8f\xa8\x00\x00\t\x00\x00\x00\xbf\xa8\x00\x00\x06\x00\x00\x00\xc9\xa8\x00\x00 \x00\x00\x00\xd0\xa8\x00\x00\x07\x00\x00\x00\xf1\xa8\x00\x008\x00\x00\x00\xf9\xa8\x00\x00,\x00\x00\x002\xa9\x00\x00!\x00\x00\x00_\xa9\x00\x00\x0f\x00\x00\x00\x81\xa9\x00\x00\x0b\x00\x00\x00\x91\xa9\x00\x00\x1f\x00\x00\x00\x9d\xa9\x00\x00\x10\x00\x00\x00\xbd\xa9\x00\x00\x15\x00\x00\x00\xce\xa9\x00\x00\x15\x00\x00\x00\xe4\xa9\x00\x00-\x00\x00\x00\xfa\xa9\x00\x00"\x00\x00\x00(\xaa\x00\x00\xba\x00\x00\x00K\xaa\x00\x004\x00\x00\x00\x06\xab\x00\x00\x15\x00\x00\x00;\xab\x00\x00`\x00\x00\x00Q\xab\x00\x00R\x00\x00\x00\xb2\xab\x00\x00-\x00\x00\x00\x05\xac\x00\x00\x05\x00\x00\x003\xac\x00\x00\x1b\x00\x00\x009\xac\x00\x00\t\x00\x00\x00U\xac\x00\x00\r\x00\x00\x00_\xac\x00\x00-\x00\x00\x00m\xac\x00\x00\x84\x00\x00\x00\x9b\xac\x00\x00-\x00\x00\x00 \xad\x00\x00F\x00\x00\x00N\xad\x00\x008\x00\x00\x00\x95\xad\x00\x00\x08\x00\x00\x00\xce\xad\x00\x00\t\x00\x00\x00\xd7\xad\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book <font face="serif">%s</font> of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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<br>CSS\x00Page Setup\x00Parsing LRF file\x00Password for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: it\nPOT-Creation-Date: 2008-04-01 09:18+PDT\nPO-Revision-Date: 14:08, 1/4/2008\nLast-Translator: Iacopo Benesperi <iacchi@iacchi.org>\nLanguage-Team: italiano\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\nX-Generator: KBabel 1.11.4\nPlural-Forms: nplurals=2; plural=(n != 1);\n\x00\tLink falliti:\x00\nScaricato articolo %s da %s\n%s\x00 giorni\x00 da \x00 non \xc3\xa8 un\'immagine valida\x00 non trovato\x00 pt\x00 px\x00 secondi\x00 stelle\x00%s non ha formati disponibili\x00%sUso%s: %s\n\x00&Chiave d\'accesso;\x00&Aggiungi feed\x00&Aggiungi tag:\x00A&utore(i): \x00Margine i&nferiore:\x00&Compatta database\x00&Disabilita l\'individuazione del capitoli\x00Tit&olo del feed:\x00&Forza interruzione di pagina prima del tag:\x00&Formato intestazione:\x00Margine &sinistro:\x00&Posizione del database dei libri (library1.db)\x00&Numero massimo di articoli per feed:\x00&Metadati dal nome del file\x00&Dimensione fissa:\x00Arti&colo pi\xc3\xb9 vecchio:\x00I&nterruzione di pagina prima del tag:\x00&Password:\x00&Preprocessamento:\x00Pri&orit\xc3\xa0 per i lavori di conversione:\x00&Profilo:\x00&Editore: \x00&Giudizio:\x00&Espressione regolare:\x00Rimuo&vi formula\x00&Rimuovi tag:\x00Margine &destro:\x00&Cerca:\x00&Serie:\x00&Con grazie:\x00&Mostra intestazione\x00&Mostra password\x00I&nterrompi il lavoro selezionato\x00&Test\x00&Titolo: \x00Margine s&uperiore:\x00&Nome utente:\x00Spaziat&ura caratteri:\x00...\x00<b>Le modifiche avranno effetto dopo il riavvio\x00<b>Impossibile scaricare la copertina</b><br/>\x00<b>Nessuna corrispondenza</b> trovata per la frase <i>%s</i>\x00<br>Deve essere una cartella\x00<font color="gray">Nessun aiuto disponibile</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Crea una formula di notizie di base, aggiungendo ad essa dei feed RSS. <br />Per la maggior parte dei feed, bisogner\xc3\xa0 usare la "Modalit\xc3\xa0 avanzata" per personalizzare ulteriormente il processo di scaricamento.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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;">Visitare <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a> per la guida<br /><br /><span style=" font-weight:600;">libprs500</span>: %1 di <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - File HTML0 da Book Designer</li>\x00<li><b>pdftohtml</b> - File HTML generati dal programma pdftohtml</li>\x00<ol><li><b>baen</b> - Libri dall\'editore BAEN</li>\x00<p>Esiste gi\xc3\xa0 un database non valido in %s, eliminarlo prima di provare a spostare il database esistente.<br>Errore: %s\x00<p>Nel database sono gi\xc3\xa0 presenti libri con i seguenti titoli. Aggiungerli ugualmente?<ul>\x00<p>Impossibile salvare libri sul dispositivo perch\xc3\xa9 non c\'\xc3\xa8 pi\xc3\xb9 spazio disponibile \x00<p>Impossibile creare la formula. Errore:<br>%s\x00<p>Inserire il proprio nome utente e password per <b>LibraryThing.com</b>. <br/>Se non se ne possiede uno, \xc3\xa8 possibile <a href=\'http://www.librarything.com\'>registrarsi</a> gratuitamente!</p>\x00<p>Nega questa corrispondenza. Restituisce soltanto i risultati che <b>non</b> corrispondono a questa ricerca\x00<p>Inserire il proprio nome utente e password per %s<br>Se non se ne possiede uno, sottoscriversi per avere accesso a questi articoli.<br/> Fare clic su OK per procedere.\x00<p>Impostare un modello di espressione regolare da usare nel tentativo di indovinare i metadati dei libri dal nome del file. <p>\xc3\x88 disponibile un <a href="http://docs.python.org/lib/re-syntax.html">riferimento</a> sulla sintassi delle espressioni regolari. Usare la funzionalit\xc3\xa0 <b>Test</b> sottostante per testare le proprie espressioni regolari su una serie di nomi di file di esempio.\x00<p>Si \xc3\xa8 verificato un errore nella lettura del file: <br /><b>\x00<span style="color:red; font-weight:bold">Ultima versione: <a href="%s">%s</a></span>\x00A\x00Esiste gi\xc3\xa0 una formula personalizzata di nome %s. Sovrascriverla?\x00Un\'espressione regolare. I tag <a> i cui href corrispondono verranno ignorati. Predefinita: %default\x00&Tag applicati\x00Tag &disponibili\x00Lavori attivi\x00&Aggiungi tag: \x00Aggiungi una fonte di notizie personalizzata\x00Aggiunge una cartella alla lista delle cartelle usate frequentemente\x00Aggiunge a tutte le pagine un\'intestazione contenente il titolo e l\'autore\x00Aggiungi un nuovo formato al database per questo libro\x00Aggiungi libri\x00Aggiungi libri da una singola cartella\x00Aggiungi libri ricorsivamente (pi\xc3\xb9 libri per cartella, assume che ogni file sia un libro diverso)\x00Aggiungi libri ricorsivamente (un libro per cartella, assume che ogni file sia lo stesso libro in un diverso formato)\x00Aggiungi una fonte di notizie personalizzata\x00Aggiunge il feed alla formula\x00Aggiungi il tag a quelli disponibili e applicalo al libro corrente\x00Aggiungi/Aggiorna for&mula\x00Aggiusta la visualizzazione del file LRF generato specificando parametri come la dimensione dei caratteri e la spaziatura tra le parole\x00Avanzata\x00Ricerca avanzata\x00Ricerca avanzata\x00Esiste gi\xc3\xa0\x00Alt+S\x00Qualunque\x00Applica il tag al libro corrente\x00Scaricamento fallito dell\'articolo: %s\x00Articolo scaricato: %s\x00Autore\x00&Classificazione autore: \x00Classifica&zione autore:\x00Autore(i)\x00Autori:\x00Formati disponibili\x00Formule utente disponibili\x00Indietro\x00&Grandezza caratteri di base:\x00Base\x00Sii pi\xc3\xb9 prolisso durante il processamento\x00Sii pi\xc3\xb9 prolisso\x00Libro \x00Libro <font face="serif">%s</font> di %s\x00Copertina del libro\x00Margine inferiore della pagina. Predefinito: %default px\x00Sfoglia per trovare un\'immagine da usare come copertina per questo libro\x00Sfoglia per specificare una nuova posizione del database\x00Converti in gruppo\x00Conversione in gruppo di libri in LRF\x00Impossibile configurare\x00Impossibile configurare mentre ci sono lavori in esecuzione\x00Impossibile connettersi\x00Impossibile convertire\x00Impossibile convertire %s perch\xc3\xa9 questo libro non ha formati supportati\x00Impossibile modificare i metadati\x00Impossibile scaricare la copertina\x00Impossibile terminare i lavori gi\xc3\xa0 completati\x00Impossibile terminare il lavoro\x00Impossibile terminare i lavori che stanno comunicando col dispositivo dato che potrebbe causare una corruzione dei dati\x00Impossibile terminare i lavori in attesa\x00Impossibile leggere\x00Impossibile salvare sul disco\x00Impossibile leggere\x00Scheda\n%s disponibili\x00Categoria\x00Ca&mbia l\'immagine di copertina:\x00Cambia password\x00Cambia l\'autore di questo libro. Autori multipli devono essere separati da una virgola\x00Cambia l\'editore di questo libro\x00Cambia il titolo di questo libro\x00Cambia il nome utente e/o password del proprio account su LibraryThing.com\x00Individuazione capitoli\x00Scegliere il formato\x00Scegliere il formato da convertire in LRF\x00Scegliere il formato da leggere\x00Fare clic per vedere una lista dei lavori attivi\x00Lista separata da virgole dei tag da rimuovere dal libro\x00Commenti\x00Configurazione\x00Configurazione\x00Configura visualizzatore\x00Converte %s in LRF\x00Converti libri\x00Converti individualmente\x00Converti in LRF\x00Impossibile scaricare la copertina: %s\x00Impossibile scaricare l\'articolo. Eseguire con --debug per vedere la ragione\x00Impossibile scaricare la copertina\x00Impossibile scaricare la copertina perch\xc3\xa9 il server \xc3\xa8 sovraccarico. Ritentare pi\xc3\xb9 tardi\x00Impossibile spostare il database\x00Impossibile analizzare il file: %s\x00Creato da \x00Fonti di notizie personalizzate\x00Data\x00&Timeout predefinito della rete:\x00Canc\x00Rimuovi il tag dal database. Questa operazione rimuover\xc3\xa0 il tag da tutti i libri e poi dal database\x00Dettagli del lavoro\x00Non so a cosa serve questo\x00Non mostrare la barra di progresso\x00Scaricamento completato\x00Scaricamento copertina da %s\x00Scoperti duplicati!\x00E\x00ERRORE\x00Modifica metadati\x00Modifica metadati\x00Modifica metadati\x00Modifica metadati in gruppo\x00Modifica metadati individualmente\x00Caratteri inclusi\x00Abilita &rotazione automatica delle immagini\x00Abilita la rotazione automatica delle immagini che sono pi\xc3\xb9 larghe dello schermo\x00Errore\x00Errore di comunicazione col dispositivo\x00Errore nella lettura del file\x00Errore di comunicazione col dispositivo\x00Estrae la miniatura da un file LRF\x00Scaricamento fallito dell\'articolo: %s da %s\n\x00Scaricamento dei seguenti articoli fallito parzialmente:\x00Scaricamento dei seguenti articoli fallito:\x00&URL del feed:\x00Il feed deve avere una URL\x00Il feed deve avere un titolo\x00Feed scaricati in %s\x00Feed nella formula\x00Scarica\x00Scarica immagine di copertina dal server\x00Scarica metadati\x00Scarica metadati dal server\x00Scarica notizie\x00Scarica notizie da \x00Scaricamento feed\x00Scaricamento feed...\x00Scaricamento metadati per <b>%1</b>\x00Scaricamento notizie da \x00Scaricamento della formula fallito: \x00Meno\x00&Nome file:\x00Mette a punto in modo fine l\'individuazione delle intestazioni dei capitoli e delle sezioni\x00Finito\x00Per un aiuto su come scrivere formule di notizie avanzate, visitare <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">Formule utente</a>\x00Forza un\'interruzione di pagina prima di un elemento che possiede l\'attributo specificato. Il formato per questa opzione \xc3\xa8 nometag regexp, nome attributo, valore attributo regexp. Per esempio, per far corrispondere tutti i tag intestazione che hanno l\'attributo class="chapter" bisogna usare "h\\d,class,chapter". Predefinita: %default\x00Forza un\'interruzione di pagina prima dei tag i cui nomi corrispondono a questa espressione regolare\x00Forza interruzione di pagina prima dell\'&attributo:\x00Formato\x00Formato\x00Formati\x00Avanti\x00Libera lo spazio non utilizzato dal database\x00Cartelle usate frequentemente\x00Ricevuti feed dalla pagina principale\x00Intestazione\x00Aiuto per l\'elemento\x00Unisci\x00IS&BN:\x00Se html2lrf non trova nessuna interruzione di pagina nel file HTML e non riesce a individuare le intestazioni dei capitoli, inserir\xc3\xa0 automaticamente un\'interruzione di pagina prima dei tag il cui nome corrisponde a questa espressione regolare. Predefinita: %default. \xc3\x88 possibile disabilitarla impostando la regexp a "$". Lo scopo di questa opzione \xc3\xa8 quello di provare ad assicurarsi che non ci siano pagine molto lunghe, dato che queste degradano le prestazioni dell\'LRF nel girare la pagina. Questa opzione viene perci\xc3\xb2 ignorata se la pagina corrente ha solo pochi elementi\x00Se il tag voluto non \xc3\xa8 nella lista di quelli disponibili, \xc3\xa8 possibile aggiungerlo qui. Accetta una lista di tag separati da virgola\x00Se esiste una copertina grafica individuata nel file di origine, usa quella invece della copertina specificata\x00Ignor&a colori\x00Ignora ta&belle\x00Aumenta la dimensione dei caratteri di 2 * FONT_DELTA punti e la spaziatura tra le linee di FONT_DELTA punti. FONT_DELTA pu\xc3\xb2 essere una frazione. Se FONT_DELTA \xc3\xa8 negativo, la grandezza dei caratteri verr\xc3\xa0 diminuita\x00Ins&erisci linee bianche tra i paragrafi\x00Database non valido\x00Percorso database non valido\x00Percorso database non valido \x00Percorso database non valido.<br>Impossibile scrivere su\x00Input non valido\x00Espressione regolare non valida\x00Espressione regolare non valida: %s\x00Lavoro\x00Lavoro terminato dall\'utente\x00Lavori:\x00Visualizzatore LRF\x00Margine sinistro della pagina. Predefinito: %default px\x00Biblioteca\x00Lista di serie conosciute. \xc3\x88 possibile aggiungere nuove serie\x00Visualizzazione\x00&Corrispondenza con tutti i criteri seguenti\x00C&orrispondenza con uno qualunque dei criteri seguenti\x00Corrispondenze\x00Massimo numero di articoli da scaricare per feed\x00Metadati\x00Metadati\x00Minimizza l\'uso di memoria al costo di un maggior tempo di processamento. Usare questa opzione se si \xc3\xa8 su una macchina a corto di memoria\x00I&ndentazione minima:\x00Di pi\xc3\xb9\x00Nega\x00Notizie scaricate. Salvataggio sul dispositivo\x00Pagina successiva\x00Prossima corrispondenza\x00Nessun formato disponibile\x00Nessun libro selezionato\x00Nessun libro selezionato\x00Nessuna corrispondenza\x00Nessuna corrispondenza trovata\x00Spazio insufficiente sul dispositivo\x00Nessuno\x00Numero di livelli di link da seguire nelle pagine web che sono collegate ai feed. Predefinito: %default\x00Apri l\'editor dei tag\x00Apri libro\x00Opzioni\x00Opzioni per controllare il comportamento di feeds2disk\x00Opzioni per controllare il comportamento di html2lrf\x00Opzioni per controllare web2disk (usato per scaricare i siti collegati ai feed)\x00Nome del file in uscita. Il nome predefinito \xc3\xa8 preso dal file in ingresso\x00Sovrascrive il CSS. Pu\xc3\xb2 essere un percorso ad un foglio di stile CSS o una stringa. Se \xc3\xa8 una stringa, sar\xc3\xa0 interpretata come CSS\x00Sovrascrivi<br>CSS\x00Imposta pagina\x00Analisi file LRF\x00Password per i siti che richiedono un\'identificazione per accedere ai contenuti\x00Password necessaria\x00Percorso\x00Percorso a un\'immagine che verr\xc3\xa0 impostata come miniatura di questo file\x00Percorso a un file TXT contenente il commento che verr\xc3\xa0 incluso nel file LRF\x00Percorso al file contenente l\'immagine da usare come copertina\x00Percorso della cartella in uscita dove creare il file HTML. Predefinito: cartella corrente\x00Preprocessa i file HTML di Baen per migliorare i file LRF generati\x00Preprocessa il file prima di convertirlo in LRF. \xc3\x88 utile se si conosce la fonte da cui proviene il file. Fonti conosciute:\x00Previene l\'inserimento automatico di interruzioni di pagina prima dei capitoli individuati\x00Pagina precedente\x00Profilo del dispositivo per cui viene generato questo LRF. Il profilo determina parametri come la risoluzione e la dimensione dello schermo del dispositivo. Predefinito: %s. Profili supportati: \x00Progresso\x00Editore\x00Giudizio\x00Giudizio su questo libro. 0-5 stelle\x00Lettore\n%s disponibili\x00&Titolo formula:\x00Codice sorgente formula (python)\x00&Espressione regolare\x00Nome del gruppo per l\'espressione regolare (?P<authors>)\x00Nome del gruppo per l\'espressione regolare (?P<series>)\x00Nome del gruppo per l\'espressione regolare (?P<series_index>)\x00Nome del gruppo per l\'espressione regolare (?P< title>)\x00Rimuove una cartella dalla lista delle cartelle usate frequentemente\x00Rimuovi libri\x00Rimuove il feed dalla formula\x00Rimuovi il formato selezionato dal database per questo libro\x00Rimuovi serie inutilizzate (che non hanno libri)\x00Trasforma le tabelle HTML in blocchi di testo invece che in vere tabelle.\nQuesta opzione \xc3\xa8 necessaria se il file HTML contiene tabelle molto grandi o complesse\x00Trasforma tutto il contenuto in bianco e nero al posto dei colori specificati dall\'HTML o dal CSS.\x00Sovrascrivere la formula?\x00Resetta ricerca veloce\x00Margine destro della pagina. Predefinito: %default px\x00Tempo di esecuzione\x00&Senza grazie:\x00Salva su disco\x00Salva su disco in una singola cartella\x00Cerca (Per la ricerca avanzata fare clic sul bottone a sinistra)\x00Criteri di ricerca\x00Cerca nella lista dei libri per titolo o autore<br><br>Parole separate da spazi hanno come operatore AND\x00Cerca nella lista dei libri per titolo, autore, editore, tag e commenti<br><br>Parole separate da spazi hanno come operatore AND\x00Selezionare il libro che corrisponde maggiormente alla propria copia dall\'elenco sottostante\x00&Selezionare le colonne visibili nella vista biblioteca\x00Invia al dispositivo\x00Invia alla memoria principale\x00Invia alla scheda di memoria\x00Separa i paragrafi con linee bianche\x00Serie\x00Indice serie\x00Indice serie:\x00Serie:\x00Errore del server. Ritentare pi\xc3\xb9 tardi\x00Imposta l\'ID del libro\x00Impostazioni di conversione predefinite\x00Imposta la chiave per la classificazione dell\'autore\x00Imposta la chiave per la classificazione del titolo\x00Imposta l\'autore\x00Imposta l\'autore. Autori multipli devono essere separati da una virgola. Predefinito: %default\x00Imposta il titolo del libro\x00Imposta la categoria\x00Imposta il commento\x00Imposta il timeout predefinito per gli scaricamenti dalla rete (cio\xc3\xa8 ogni volta che si usa Internet per prelevare informazioni)\x00Imposta il formato dell\'intestazione. %a verr\xc3\xa0 rimpiazzato dall\'autore e %t dal titolo. L\'impostazione predefinita \xc3\xa8 %default\x00Imposta lo spazio tra le parole in punti. Il valore predefinito \xc3\xa8 %default\x00Imposta il titolo. Predefinito: nome del file\x00Sottoscrivere un account gratuito su <a href="http://www.isbndb.com">ISBNdb.com</a> per ottenere delle chiavi d\'accesso.\x00Dimensione (MB)\x00Chiave per la classificazione dell\'autore\x00Chiave per la classificazione del titolo\x00C&odifica sorgente:\x00Specificare una lista di feed da scaricare. Per esempio: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nSe si specifica questa opzione, ogni indice per %prog viene ignorato e viene usata una formula predefinita per scaricare i feed.\x00Specifica come deve essere classificato l\'autore di questo libro. Ad esempio, Charles Dickens deve essere classificato come Dickens, Charles.\x00Specifica metadati come il titolo e l\'autore del libro.<p>I metadati saranno aggiornati nel database e nel file LRF generato\x00Specifica la dimensione del testo base in punti. Tutti i caratteri saranno scalati in accordo.\nQuesta opzione rende obsoleta l\'opzione --font-delta e ha precedenza su quest\'ultima. Per usare --font-delta, impostare questa a 0\x00Specifica le impostazioni della pagina come i margini e la dimensione dello schermo del dispositivo\x00Specifica la famiglia di caratteri truetype per i caratteri con grazie, senza grazie e a spaziatura fissa. Questi caratteri saranno inclusi nel file LRF. Si noti che i caratteri personalizzati portano a una maggiore lentezza nel girare le pagine. Ogni specificazione di famiglia \xc3\xa8 della forma: "percorso alla cartella dei caratteri, famiglia". Ad esempio: --serif-family "%s, Times New Roman"\n \x00Inizio scaricamento [%d articolo(i)]...\x00Stato\x00Passa alla modalit\xc3\xa0 avanzata\x00Passa alla modalit\xc3\xa0 base\x00T&ag: \x00Tag\x00Editor di tag\x00Individuazione basata sui tag\x00Tag\x00I tag categorizzano un libro. Questo \xc3\xa8 particolarmente utile durante le ricerche. <br>Possono essere qualsiasi parola o frase, separati da una virgola\x00Test\x00EtichettaDiTesto\x00La categoria a cui questo libro appartiene. Es: Storia\x00La cartella in cui salvare i feed scaricati. Perdefinita: cartella corrente\x00Il feed %S deve avere una URL\x00Il feed deve avere un titolo\x00Il numero massimo di livelli per processare ricorsivamente i link. Il valore 0 significa che i link non vengono seguiti. Un valore negativo significa che i tag <a> vengono ignorati\x00La famiglia di caratteri a spaziatura fissa da includere\x00L\'articolo pi\xc3\xb9 vecchio da scaricare\x00L\'espressione regolare utilizzata per individuare i titoli dei capitoli. I titoli vengono cercati nei tag d\'intestazione (H1-H6). Predefinita: %default\x00La famiglia di caratteri senza grazie da includere\x00La famiglia di caratteri con grazie da includere\x00Il testo da cercare. \xc3\x88 interpretato come un\'espressione regolare\x00Il titolo per questa formula. Usato come titolo per ogni libro creato da questi feed scaricati\x00Si \xc3\xa8 verificato un errore di comunicazione temporaneo col dispositivo. Disconnettere e riconnettere il dispositivo e/o riavviare\x00Questo feed \xc3\xa8 gi\xc3\xa0 stato aggiunto alla formula\x00Timestamp\x00Titolo\x00Individuazione basata sul titolo\x00Titolo:\x00Margine superiore della pagina. Predefinito: %default px\x00Tentativo di scaricamento della copertina...\x00Rimuovi il tag dal libro corrente\x00Non disponibile\x00Sconosciuto\x00Sorgente di notizie sconosciuta\x00Feed sconosciuto\x00Articolo senza titolo\x00Articolo senza titolo\x00&Usare numeri romani per i numeri delle serie\x00Usa copertina del file di &origine\x00Usa l\'elemento <spine> dal file OPF per determinare in quale ordine i file HTML devono essere aggiunti al file LRF. Il file OPF deve essere nella stessa cartella del file HTML principale\x00Usare questa opzione sui file html0 di Book Designer\x00Usa uno sfondo bianco\x00Utile per lo sviluppo delle formule. Forza max_articles_per_feed a 2 e scarica al massimo 2 feed\x00Nome utente per i siti che richiedono un\'identificazione per accedere ai contenuti\x00Output molto prolisso, utile per il debugging\x00Leggi\x00Leggi uno specifico formato\x00In attesa\x00In esecuzione\x00Non si hanno i permessi per leggere il file: \x00\xc3\x88 necessario aggiungere questa opzione se si stanno processando file generati da pdftohtml, altrimenti la conversione non riuscir\xc3\xa0\x00\xc3\x88 necessario specificare un singolo file PDF\x00\xc3\x88 necessario specificare delle chiavi d\'accesso valide per isbndb.com\x00\xc3\x88 necessario specificare il codice ISBN di questo libro\x00contiene\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: 2008-04-01 09:18+PDT\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', 'es': '\xde\x12\x04\x95\x00\x00\x00\x00\xa1\x01\x00\x00\x1c\x00\x00\x00$\r\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x1a\x00\x00\x0e\x00\x00\x00-\x1a\x00\x00!\x00\x00\x00<\x1a\x00\x00\x05\x00\x00\x00^\x1a\x00\x00\x06\x00\x00\x00d\x1a\x00\x00\x17\x00\x00\x00k\x1a\x00\x00\x0b\x00\x00\x00\x83\x1a\x00\x00\x04\x00\x00\x00\x8f\x1a\x00\x00\x03\x00\x00\x00\x94\x1a\x00\x00\x08\x00\x00\x00\x98\x1a\x00\x00\x06\x00\x00\x00\xa1\x1a\x00\x00\x1c\x00\x00\x00\xa8\x1a\x00\x00\x0e\x00\x00\x00\xc5\x1a\x00\x00\x0c\x00\x00\x00\xd4\x1a\x00\x00\t\x00\x00\x00\xe1\x1a\x00\x00\t\x00\x00\x00\xeb\x1a\x00\x00\x0c\x00\x00\x00\xf5\x1a\x00\x00\x0f\x00\x00\x00\x02\x1b\x00\x00\x11\x00\x00\x00\x12\x1b\x00\x00\x1a\x00\x00\x00$\x1b\x00\x00\x0c\x00\x00\x00?\x1b\x00\x00\x1d\x00\x00\x00L\x1b\x00\x00\x0f\x00\x00\x00j\x1b\x00\x00\r\x00\x00\x00z\x1b\x00\x00)\x00\x00\x00\x88\x1b\x00\x00"\x00\x00\x00\xb2\x1b\x00\x00\x18\x00\x00\x00\xd5\x1b\x00\x00\x0b\x00\x00\x00\xee\x1b\x00\x00\x10\x00\x00\x00\xfa\x1b\x00\x00\x17\x00\x00\x00\x0b\x1c\x00\x00\n\x00\x00\x00#\x1c\x00\x00\x0c\x00\x00\x00.\x1c\x00\x00\x1e\x00\x00\x00;\x1c\x00\x00\t\x00\x00\x00Z\x1c\x00\x00\x0c\x00\x00\x00d\x1c\x00\x00\x08\x00\x00\x00q\x1c\x00\x00\x14\x00\x00\x00z\x1c\x00\x00\x0e\x00\x00\x00\x8f\x1c\x00\x00\r\x00\x00\x00\x9e\x1c\x00\x00\x0e\x00\x00\x00\xac\x1c\x00\x00\x08\x00\x00\x00\xbb\x1c\x00\x00\x08\x00\x00\x00\xc4\x1c\x00\x00\x07\x00\x00\x00\xcd\x1c\x00\x00\x0c\x00\x00\x00\xd5\x1c\x00\x00\x0e\x00\x00\x00\xe2\x1c\x00\x00\x12\x00\x00\x00\xf1\x1c\x00\x00\x05\x00\x00\x00\x04\x1d\x00\x00\x08\x00\x00\x00\n\x1d\x00\x00\x0c\x00\x00\x00\x13\x1d\x00\x00\n\x00\x00\x00 \x1d\x00\x00\x0e\x00\x00\x00+\x1d\x00\x00\x03\x00\x00\x00:\x1d\x00\x001\x00\x00\x00>\x1d\x00\x00"\x00\x00\x00p\x1d\x00\x00=\x00\x00\x00\x93\x1d\x00\x00\x18\x00\x00\x00\xd1\x1d\x00\x00+\x00\x00\x00\xea\x1d\x00\x00\x00\x02\x00\x00\x16\x1e\x00\x00\xa3\x01\x00\x00\x17 \x00\x00\x82\x02\x00\x00\xbb!\x00\x00>\x00\x00\x00>$\x00\x00S\x00\x00\x00}$\x00\x005\x00\x00\x00\xd1$\x00\x00p\x00\x00\x00\x07%\x00\x00a\x00\x00\x00x%\x00\x00G\x00\x00\x00\xda%\x00\x00(\x00\x00\x00"&\x00\x00\xa7\x00\x00\x00K&\x00\x00W\x00\x00\x00\xf3&\x00\x00\x96\x00\x00\x00K\'\x00\x00=\x01\x00\x00\xe2\'\x00\x002\x00\x00\x00 )\x00\x00\x01\x00\x00\x00S)\x00\x00C\x00\x00\x00U)\x00\x00X\x00\x00\x00\x99)\x00\x00\r\x00\x00\x00\xf2)\x00\x00\x0f\x00\x00\x00\x00*\x00\x00\x0b\x00\x00\x00\x10*\x00\x00\x0b\x00\x00\x00\x1c*\x00\x00\x18\x00\x00\x00(*\x00\x007\x00\x00\x00A*\x00\x004\x00\x00\x00y*\x00\x00.\x00\x00\x00\xae*\x00\x00\t\x00\x00\x00\xdd*\x00\x00!\x00\x00\x00\xe7*\x00\x00b\x00\x00\x00\t+\x00\x00o\x00\x00\x00l+\x00\x00\x16\x00\x00\x00\xdc+\x00\x00\x12\x00\x00\x00\xf3+\x00\x006\x00\x00\x00\x06,\x00\x00\x12\x00\x00\x00=,\x00\x00m\x00\x00\x00P,\x00\x00\x08\x00\x00\x00\xbe,\x00\x00\x0f\x00\x00\x00\xc7,\x00\x00\x0f\x00\x00\x00\xd7,\x00\x00\x0e\x00\x00\x00\xe7,\x00\x00\x05\x00\x00\x00\xf6,\x00\x00\x03\x00\x00\x00\xfc,\x00\x00\x19\x00\x00\x00\x00-\x00\x00\x1b\x00\x00\x00\x1a-\x00\x00\x16\x00\x00\x006-\x00\x00\x06\x00\x00\x00M-\x00\x00\x0e\x00\x00\x00T-\x00\x00\r\x00\x00\x00c-\x00\x00\t\x00\x00\x00q-\x00\x00\x08\x00\x00\x00{-\x00\x00\x11\x00\x00\x00\x84-\x00\x00\x16\x00\x00\x00\x96-\x00\x00\x04\x00\x00\x00\xad-\x00\x00\x10\x00\x00\x00\xb2-\x00\x00\x05\x00\x00\x00\xc3-\x00\x00!\x00\x00\x00\xc9-\x00\x00\x10\x00\x00\x00\xeb-\x00\x00\x05\x00\x00\x00\xfc-\x00\x00(\x00\x00\x00\x02.\x00\x00\n\x00\x00\x00+.\x00\x00.\x00\x00\x006.\x00\x005\x00\x00\x00e.\x00\x00$\x00\x00\x00\x9b.\x00\x00\x0c\x00\x00\x00\xc0.\x00\x00\x1a\x00\x00\x00\xcd.\x00\x00\x10\x00\x00\x00\xe8.\x00\x00.\x00\x00\x00\xf9.\x00\x00\x0e\x00\x00\x00(/\x00\x00\x0e\x00\x00\x007/\x00\x007\x00\x00\x00F/\x00\x00\x14\x00\x00\x00~/\x00\x00\x12\x00\x00\x00\x93/\x00\x00#\x00\x00\x00\xa6/\x00\x00\x0f\x00\x00\x00\xca/\x00\x00Z\x00\x00\x00\xda/\x00\x00\x19\x00\x00\x0050\x00\x00\x0b\x00\x00\x00O0\x00\x00\x13\x00\x00\x00[0\x00\x00\x0b\x00\x00\x00o0\x00\x00\x11\x00\x00\x00{0\x00\x00\x08\x00\x00\x00\x8d0\x00\x00\x14\x00\x00\x00\x960\x00\x00\x0f\x00\x00\x00\xab0\x00\x00R\x00\x00\x00\xbb0\x00\x00!\x00\x00\x00\x0e1\x00\x00\x1d\x00\x00\x0001\x00\x00H\x00\x00\x00N1\x00\x00\x11\x00\x00\x00\x971\x00\x00\r\x00\x00\x00\xa91\x00\x00%\x00\x00\x00\xb71\x00\x00\x19\x00\x00\x00\xdd1\x00\x00!\x00\x00\x00\xf71\x00\x007\x00\x00\x00\x192\x00\x00\x08\x00\x00\x00Q2\x00\x00\r\x00\x00\x00Z2\x00\x00\t\x00\x00\x00h2\x00\x00\x10\x00\x00\x00r2\x00\x00\x11\x00\x00\x00\x832\x00\x00\x0f\x00\x00\x00\x952\x00\x00\x14\x00\x00\x00\xa52\x00\x00\x0e\x00\x00\x00\xba2\x00\x00\x1c\x00\x00\x00\xc92\x00\x00;\x00\x00\x00\xe62\x00\x00\x15\x00\x00\x00"3\x00\x00R\x00\x00\x0083\x00\x00\x17\x00\x00\x00\x8b3\x00\x00\x18\x00\x00\x00\xa33\x00\x00\x0b\x00\x00\x00\xbc3\x00\x00\x13\x00\x00\x00\xc83\x00\x00\x04\x00\x00\x00\xdc3\x00\x00\x19\x00\x00\x00\xe13\x00\x00\x03\x00\x00\x00\xfb3\x00\x00h\x00\x00\x00\xff3\x00\x00\x0e\x00\x00\x00h4\x00\x00\x1b\x00\x00\x00w4\x00\x00\x1a\x00\x00\x00\x934\x00\x00\x11\x00\x00\x00\xae4\x00\x00\x19\x00\x00\x00\xc04\x00\x00\x11\x00\x00\x00\xda4\x00\x00\x01\x00\x00\x00\xec4\x00\x00\x05\x00\x00\x00\xee4\x00\x00\x15\x00\x00\x00\xf44\x00\x00\x15\x00\x00\x00\n5\x00\x00\x15\x00\x00\x00 5\x00\x00\x15\x00\x00\x0065\x00\x00\x1a\x00\x00\x00L5\x00\x00\x0e\x00\x00\x00g5\x00\x00\x1f\x00\x00\x00v5\x00\x00C\x00\x00\x00\x965\x00\x00\x05\x00\x00\x00\xda5\x00\x00\x1f\x00\x00\x00\xe05\x00\x00\x12\x00\x00\x00\x006\x00\x00\x17\x00\x00\x00\x136\x00\x00\x1f\x00\x00\x00+6\x00\x00\'\x00\x00\x00K6\x00\x003\x00\x00\x00s6\x00\x00*\x00\x00\x00\xa76\x00\x00\n\x00\x00\x00\xd26\x00\x00\x14\x00\x00\x00\xdd6\x00\x00\x16\x00\x00\x00\xf26\x00\x00\x16\x00\x00\x00\t7\x00\x00\x0f\x00\x00\x00 7\x00\x00\x05\x00\x00\x0007\x00\x00\x1d\x00\x00\x0067\x00\x00\x0e\x00\x00\x00T7\x00\x00\x1a\x00\x00\x00c7\x00\x00\n\x00\x00\x00~7\x00\x00\x10\x00\x00\x00\x897\x00\x00\r\x00\x00\x00\x9a7\x00\x00\x11\x00\x00\x00\xa87\x00\x00\x1f\x00\x00\x00\xba7\x00\x00\x13\x00\x00\x00\xda7\x00\x00\x1b\x00\x00\x00\xee7\x00\x00\x05\x00\x00\x00\n8\x00\x00\x0b\x00\x00\x00\x108\x00\x008\x00\x00\x00\x1c8\x00\x00\x08\x00\x00\x00U8\x00\x00\x8a\x00\x00\x00^8\x00\x00\x1d\x01\x00\x00\xe98\x00\x00J\x00\x00\x00\x07:\x00\x00#\x00\x00\x00R:\x00\x00\x04\x00\x00\x00v:\x00\x00\x06\x00\x00\x00{:\x00\x00\x07\x00\x00\x00\x82:\x00\x00\x07\x00\x00\x00\x8a:\x00\x00\'\x00\x00\x00\x92:\x00\x00\x1b\x00\x00\x00\xba:\x00\x00\x19\x00\x00\x00\xd6:\x00\x00\x06\x00\x00\x00\xf0:\x00\x00\x0c\x00\x00\x00\xf7:\x00\x00\t\x00\x00\x00\x04;\x00\x00\x06\x00\x00\x00\x0e;\x00\x00\xdc\x01\x00\x00\x15;\x00\x00n\x00\x00\x00\xf2<\x00\x00a\x00\x00\x00a=\x00\x00\x0e\x00\x00\x00\xc3=\x00\x00\x0e\x00\x00\x00\xd2=\x00\x00\xa8\x00\x00\x00\xe1=\x00\x00&\x00\x00\x00\x8a>\x00\x00\x10\x00\x00\x00\xb1>\x00\x00\x19\x00\x00\x00\xc2>\x00\x00\x1a\x00\x00\x00\xdc>\x00\x00.\x00\x00\x00\xf7>\x00\x00\r\x00\x00\x00&?\x00\x00\x1a\x00\x00\x004?\x00\x00\x1e\x00\x00\x00O?\x00\x00\x03\x00\x00\x00n?\x00\x00\x12\x00\x00\x00r?\x00\x00\x05\x00\x00\x00\x85?\x00\x00\n\x00\x00\x00\x8b?\x00\x00,\x00\x00\x00\x96?\x00\x00\x07\x00\x00\x00\xc3?\x00\x00-\x00\x00\x00\xcb?\x00\x00\x0b\x00\x00\x00\xf9?\x00\x00$\x00\x00\x00\x05@\x00\x00$\x00\x00\x00*@\x00\x00\x07\x00\x00\x00O@\x00\x000\x00\x00\x00W@\x00\x00\x10\x00\x00\x00\x88@\x00\x00\x08\x00\x00\x00\x99@\x00\x00y\x00\x00\x00\xa2@\x00\x00\x10\x00\x00\x00\x1cA\x00\x00\x04\x00\x00\x00-A\x00\x00\x06\x00\x00\x002A\x00\x00"\x00\x00\x009A\x00\x00\t\x00\x00\x00\\A\x00\x00\n\x00\x00\x00fA\x00\x00\x14\x00\x00\x00qA\x00\x00\x10\x00\x00\x00\x86A\x00\x00\x11\x00\x00\x00\x97A\x00\x00\x08\x00\x00\x00\xa9A\x00\x00\x10\x00\x00\x00\xb2A\x00\x00\x12\x00\x00\x00\xc3A\x00\x00\x04\x00\x00\x00\xd6A\x00\x00^\x00\x00\x00\xdbA\x00\x00\x0f\x00\x00\x00:B\x00\x00\n\x00\x00\x00JB\x00\x00\x07\x00\x00\x00UB\x00\x00-\x00\x00\x00]B\x00\x00+\x00\x00\x00\x8bB\x00\x00F\x00\x00\x00\xb7B\x00\x008\x00\x00\x00\xfeB\x00\x00s\x00\x00\x007C\x00\x00\x0f\x00\x00\x00\xabC\x00\x00\n\x00\x00\x00\xbbC\x00\x00\x10\x00\x00\x00\xc6C\x00\x00:\x00\x00\x00\xd7C\x00\x00\x0f\x00\x00\x00\x12D\x00\x00\x04\x00\x00\x00"D\x00\x00;\x00\x00\x00\'D\x00\x00G\x00\x00\x00cD\x00\x001\x00\x00\x00\xabD\x00\x00Y\x00\x00\x00\xddD\x00\x004\x00\x00\x007E\x00\x00\x80\x00\x00\x00lE\x00\x00H\x00\x00\x00\xedE\x00\x00\r\x00\x00\x006F\x00\x00\xbc\x00\x00\x00DF\x00\x00\x08\x00\x00\x00\x01G\x00\x00\t\x00\x00\x00\nG\x00\x00\x06\x00\x00\x00\x14G\x00\x00\x1e\x00\x00\x00\x1bG\x00\x00\x13\x00\x00\x00:G\x00\x00\x0e\x00\x00\x00NG\x00\x00\x1b\x00\x00\x00]G\x00\x00\x13\x00\x00\x00yG\x00\x00+\x00\x00\x00\x8dG\x00\x00*\x00\x00\x00\xb9G\x00\x000\x00\x00\x00\xe4G\x00\x00)\x00\x00\x00\x15H\x00\x00<\x00\x00\x00?H\x00\x00\x0c\x00\x00\x00|H\x00\x00\x17\x00\x00\x00\x89H\x00\x00<\x00\x00\x00\xa1H\x00\x000\x00\x00\x00\xdeH\x00\x00\x84\x00\x00\x00\x0fI\x00\x00X\x00\x00\x00\x94I\x00\x00\x0f\x00\x00\x00\xedI\x00\x00\x12\x00\x00\x00\xfdI\x00\x00-\x00\x00\x00\x10J\x00\x00\x0c\x00\x00\x00>J\x00\x00\x0c\x00\x00\x00KJ\x00\x00\x0c\x00\x00\x00XJ\x00\x00"\x00\x00\x00eJ\x00\x009\x00\x00\x00\x88J\x00\x00\x0f\x00\x00\x00\xc2J\x00\x00V\x00\x00\x00\xd2J\x00\x00r\x00\x00\x00)K\x00\x00G\x00\x00\x00\x9cK\x00\x00\'\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00\x0cL\x00\x00\x13\x00\x00\x00\x1bL\x00\x00\x14\x00\x00\x00/L\x00\x00#\x00\x00\x00DL\x00\x00\x06\x00\x00\x00hL\x00\x00\r\x00\x00\x00oL\x00\x00\r\x00\x00\x00}L\x00\x00\x07\x00\x00\x00\x8bL\x00\x00\x1e\x00\x00\x00\x93L\x00\x00\x0b\x00\x00\x00\xb2L\x00\x00\x17\x00\x00\x00\xbeL\x00\x00\x1b\x00\x00\x00\xd6L\x00\x00\x1a\x00\x00\x00\xf2L\x00\x00\x0e\x00\x00\x00\rM\x00\x00^\x00\x00\x00\x1cM\x00\x00\x12\x00\x00\x00{M\x00\x00\x10\x00\x00\x00\x8eM\x00\x00\x10\x00\x00\x00\x9fM\x00\x00g\x00\x00\x00\xb0M\x00\x00c\x00\x00\x00\x18N\x00\x007\x00\x00\x00|N\x00\x00!\x00\x00\x00\xb4N\x00\x00d\x00\x00\x00\xd6N\x00\x00\t\x00\x00\x00;O\x00\x00\x17\x00\x00\x00EO\x00\x00\x16\x00\x00\x00]O\x00\x00\x11\x00\x00\x00tO\x00\x00\x04\x01\x00\x00\x86O\x00\x00z\x00\x00\x00\x8bP\x00\x00\x85\x00\x00\x00\x06Q\x00\x00\xb6\x00\x00\x00\x8cQ\x00\x00P\x00\x00\x00CR\x00\x00+\x01\x00\x00\x94R\x00\x00#\x00\x00\x00\xc0S\x00\x00\x06\x00\x00\x00\xe4S\x00\x00\x17\x00\x00\x00\xebS\x00\x00\x14\x00\x00\x00\x03T\x00\x00\x07\x00\x00\x00\x18T\x00\x00\x03\x00\x00\x00 T\x00\x00\n\x00\x00\x00$T\x00\x00\x13\x00\x00\x00/T\x00\x00\x04\x00\x00\x00CT\x00\x00\x85\x00\x00\x00HT\x00\x00\x04\x00\x00\x00\xceT\x00\x00\t\x00\x00\x00\xd3T\x00\x000\x00\x00\x00\xddT\x00\x00X\x00\x00\x00\x0eU\x00\x00\x1b\x00\x00\x00gU\x00\x00\x1a\x00\x00\x00\x83U\x00\x00\x9d\x00\x00\x00\x9eU\x00\x00&\x00\x00\x00<V\x00\x00\x1e\x00\x00\x00cV\x00\x00v\x00\x00\x00\x82V\x00\x00\'\x00\x00\x00\xf9V\x00\x00"\x00\x00\x00!W\x00\x00B\x00\x00\x00DW\x00\x00^\x00\x00\x00\x87W\x00\x00h\x00\x00\x00\xe6W\x00\x00.\x00\x00\x00OX\x00\x00\t\x00\x00\x00~X\x00\x00\x05\x00\x00\x00\x88X\x00\x00\x15\x00\x00\x00\x8eX\x00\x00\x06\x00\x00\x00\xa4X\x00\x00+\x00\x00\x00\xabX\x00\x00\x1b\x00\x00\x00\xd7X\x00\x00&\x00\x00\x00\xf3X\x00\x00\x0b\x00\x00\x00\x1aY\x00\x00\x07\x00\x00\x00&Y\x00\x00\x13\x00\x00\x00.Y\x00\x00\x0c\x00\x00\x00BY\x00\x00\x10\x00\x00\x00OY\x00\x00\x10\x00\x00\x00`Y\x00\x00%\x00\x00\x00qY\x00\x00\x1b\x00\x00\x00\x97Y\x00\x00\xb4\x00\x00\x00\xb3Y\x00\x002\x00\x00\x00hZ\x00\x00\x14\x00\x00\x00\x9bZ\x00\x00_\x00\x00\x00\xb0Z\x00\x00:\x00\x00\x00\x10[\x00\x00*\x00\x00\x00K[\x00\x00\x04\x00\x00\x00v[\x00\x00\x14\x00\x00\x00{[\x00\x00\x07\x00\x00\x00\x90[\x00\x00\x07\x00\x00\x00\x98[\x00\x00-\x00\x00\x00\xa0[\x00\x00d\x00\x00\x00\xce[\x00\x00#\x00\x00\x003\\\x00\x002\x00\x00\x00W\\\x00\x003\x00\x00\x00\x8a\\\x00\x00\x08\x00\x00\x00\xbe\\\x00\x00\t\x00\x00\x00\xc7\\\x00\x00%\x01\x00\x00\xd1\\\x00\x00 \x00\x00\x00\xf7]\x00\x00\x1d\x00\x00\x00\x18^\x00\x00\x05\x00\x00\x006^\x00\x00\x04\x00\x00\x00<^\x00\x00\x19\x00\x00\x00A^\x00\x00\r\x00\x00\x00[^\x00\x00\x07\x00\x00\x00i^\x00\x00\t\x00\x00\x00q^\x00\x00\t\x00\x00\x00{^\x00\x00\n\x00\x00\x00\x85^\x00\x00"\x00\x00\x00\x90^\x00\x00\x12\x00\x00\x00\xb3^\x00\x00\x11\x00\x00\x00\xc6^\x00\x00\x0e\x00\x00\x00\xd8^\x00\x00\x0f\x00\x00\x00\xe7^\x00\x00\x0b\x00\x00\x00\xf7^\x00\x00\x11\x00\x00\x00\x03_\x00\x00\x15\x00\x00\x00\x15_\x00\x00$\x00\x00\x00+_\x00\x00\x0c\x00\x00\x00P_\x00\x000\x00\x00\x00]_\x00\x00\x18\x00\x00\x00\x8e_\x00\x00\x12\x00\x00\x00\xa7_\x00\x00-\x00\x00\x00\xba_\x00\x00&\x00\x00\x00\xe8_\x00\x00\x1e\x00\x00\x00\x0f`\x00\x00\x0b\x00\x00\x00.`\x00\x00\x13\x00\x00\x00:`\x00\x001\x00\x00\x00N`\x00\x00\r\x00\x00\x00\x80`\x00\x00\x12\x00\x00\x00\x8e`\x00\x00+\x00\x00\x00\xa1`\x00\x00\x08\x00\x00\x00\xcd`\x00\x00\x0b\x00\x00\x00\xd6`\x00\x00\r\x00\x00\x00\xe2`\x00\x00\x14\x00\x00\x00\xf0`\x00\x00\x11\x00\x00\x00\x05a\x00\x00\x1a\x00\x00\x00\x17a\x00\x00\x10\x00\x00\x002a\x00\x00\x08\x00\x00\x00Ca\x00\x00\x08\x00\x00\x00La\x00\x00\x07\x00\x00\x00Ua\x00\x00\x13\x00\x00\x00]a\x00\x00\x18\x00\x00\x00qa\x00\x00\x1e\x00\x00\x00\x8aa\x00\x00\x05\x00\x00\x00\xa9a\x00\x00\t\x00\x00\x00\xafa\x00\x00\x11\x00\x00\x00\xb9a\x00\x00\t\x00\x00\x00\xcba\x00\x00\x17\x00\x00\x00\xd5a\x00\x00\x03\x00\x00\x00\xeda\x00\x00/\x00\x00\x00\xf1a\x00\x00-\x00\x00\x00!b\x00\x00;\x00\x00\x00Ob\x00\x00\x1b\x00\x00\x00\x8bb\x00\x00-\x00\x00\x00\xa7b\x00\x00M\x02\x00\x00\xd5b\x00\x00\xa3\x01\x00\x00#e\x00\x00\x8c\x02\x00\x00\xc7f\x00\x00?\x00\x00\x00Ti\x00\x00K\x00\x00\x00\x94i\x00\x004\x00\x00\x00\xe0i\x00\x00\x8f\x00\x00\x00\x15j\x00\x00j\x00\x00\x00\xa5j\x00\x00K\x00\x00\x00\x10k\x00\x00/\x00\x00\x00\\k\x00\x00\xd5\x00\x00\x00\x8ck\x00\x00\x7f\x00\x00\x00bl\x00\x00\xcd\x00\x00\x00\xe2l\x00\x00\xa4\x01\x00\x00\xb0m\x00\x00.\x00\x00\x00Uo\x00\x00\x01\x00\x00\x00\x84o\x00\x00M\x00\x00\x00\x86o\x00\x00e\x00\x00\x00\xd4o\x00\x00\n\x00\x00\x00:p\x00\x00\x16\x00\x00\x00Ep\x00\x00\x10\x00\x00\x00\\p\x00\x00\x18\x00\x00\x00mp\x00\x00/\x00\x00\x00\x86p\x00\x007\x00\x00\x00\xb6p\x00\x00H\x00\x00\x00\xeep\x00\x00<\x00\x00\x007q\x00\x00\x0e\x00\x00\x00tq\x00\x003\x00\x00\x00\x83q\x00\x00}\x00\x00\x00\xb7q\x00\x00\x98\x00\x00\x005r\x00\x00$\x00\x00\x00\xcer\x00\x00\x1b\x00\x00\x00\xf3r\x00\x00M\x00\x00\x00\x0fs\x00\x00"\x00\x00\x00]s\x00\x00r\x00\x00\x00\x80s\x00\x00\t\x00\x00\x00\xf3s\x00\x00\x10\x00\x00\x00\xfds\x00\x00\x10\x00\x00\x00\x0et\x00\x00\x10\x00\x00\x00\x1ft\x00\x00\x05\x00\x00\x000t\x00\x00\t\x00\x00\x006t\x00\x00\'\x00\x00\x00@t\x00\x00!\x00\x00\x00ht\x00\x00\x13\x00\x00\x00\x8at\x00\x00\x05\x00\x00\x00\x9et\x00\x00\x11\x00\x00\x00\xa4t\x00\x00\x12\x00\x00\x00\xb6t\x00\x00\t\x00\x00\x00\xc9t\x00\x00\x08\x00\x00\x00\xd3t\x00\x00\x14\x00\x00\x00\xdct\x00\x00\x1c\x00\x00\x00\xf1t\x00\x00\x06\x00\x00\x00\x0eu\x00\x00\x1b\x00\x00\x00\x15u\x00\x00\x07\x00\x00\x001u\x00\x003\x00\x00\x009u\x00\x00\x16\x00\x00\x00mu\x00\x00\x06\x00\x00\x00\x84u\x00\x00)\x00\x00\x00\x8bu\x00\x00\x07\x00\x00\x00\xb5u\x00\x008\x00\x00\x00\xbdu\x00\x00;\x00\x00\x00\xf6u\x00\x001\x00\x00\x002v\x00\x00\x13\x00\x00\x00dv\x00\x00%\x00\x00\x00xv\x00\x00\x16\x00\x00\x00\x9ev\x00\x00/\x00\x00\x00\xb5v\x00\x00\x14\x00\x00\x00\xe5v\x00\x00\x15\x00\x00\x00\xfav\x00\x00=\x00\x00\x00\x10w\x00\x00!\x00\x00\x00Nw\x00\x00 \x00\x00\x00pw\x00\x005\x00\x00\x00\x91w\x00\x00\x1d\x00\x00\x00\xc7w\x00\x00g\x00\x00\x00\xe5w\x00\x00-\x00\x00\x00Mx\x00\x00\x10\x00\x00\x00{x\x00\x00\x1c\x00\x00\x00\x8cx\x00\x00\x16\x00\x00\x00\xa9x\x00\x00\x15\x00\x00\x00\xc0x\x00\x00\n\x00\x00\x00\xd6x\x00\x00\x1d\x00\x00\x00\xe1x\x00\x00\x17\x00\x00\x00\xffx\x00\x00S\x00\x00\x00\x17y\x00\x00\x1d\x00\x00\x00ky\x00\x00\x1c\x00\x00\x00\x89y\x00\x00V\x00\x00\x00\xa6y\x00\x00\x18\x00\x00\x00\xfdy\x00\x00\x0e\x00\x00\x00\x16z\x00\x00#\x00\x00\x00%z\x00\x00\x1b\x00\x00\x00Iz\x00\x00&\x00\x00\x00ez\x00\x00E\x00\x00\x00\x8cz\x00\x00\x0b\x00\x00\x00\xd2z\x00\x00\x0e\x00\x00\x00\xdez\x00\x00\n\x00\x00\x00\xedz\x00\x00\x13\x00\x00\x00\xf8z\x00\x00\x12\x00\x00\x00\x0c{\x00\x00\x10\x00\x00\x00\x1f{\x00\x00\x19\x00\x00\x000{\x00\x00\x0f\x00\x00\x00J{\x00\x00#\x00\x00\x00Z{\x00\x00W\x00\x00\x00~{\x00\x00!\x00\x00\x00\xd6{\x00\x00}\x00\x00\x00\xf8{\x00\x00"\x00\x00\x00v|\x00\x00"\x00\x00\x00\x99|\x00\x00\x0b\x00\x00\x00\xbc|\x00\x00\x1f\x00\x00\x00\xc8|\x00\x00\x05\x00\x00\x00\xe8|\x00\x002\x00\x00\x00\xee|\x00\x00\x06\x00\x00\x00!}\x00\x00\x8f\x00\x00\x00(}\x00\x00\x14\x00\x00\x00\xb8}\x00\x00\x1b\x00\x00\x00\xcd}\x00\x00!\x00\x00\x00\xe9}\x00\x00\x10\x00\x00\x00\x0b~\x00\x00\x18\x00\x00\x00\x1c~\x00\x00#\x00\x00\x005~\x00\x00\x01\x00\x00\x00Y~\x00\x00\x05\x00\x00\x00[~\x00\x00\x18\x00\x00\x00a~\x00\x00\x18\x00\x00\x00z~\x00\x00\x1b\x00\x00\x00\x93~\x00\x00\x19\x00\x00\x00\xaf~\x00\x00 \x00\x00\x00\xc9~\x00\x00\x13\x00\x00\x00\xea~\x00\x00-\x00\x00\x00\xfe~\x00\x00V\x00\x00\x00,\x7f\x00\x00\x06\x00\x00\x00\x83\x7f\x00\x00,\x00\x00\x00\x8a\x7f\x00\x00\x15\x00\x00\x00\xb7\x7f\x00\x00)\x00\x00\x00\xcd\x7f\x00\x00$\x00\x00\x00\xf7\x7f\x00\x00,\x00\x00\x00\x1c\x80\x00\x00:\x00\x00\x00I\x80\x00\x00/\x00\x00\x00\x84\x80\x00\x00\n\x00\x00\x00\xb4\x80\x00\x00\x17\x00\x00\x00\xbf\x80\x00\x00\x1a\x00\x00\x00\xd7\x80\x00\x00$\x00\x00\x00\xf2\x80\x00\x00\x11\x00\x00\x00\x17\x81\x00\x00\x06\x00\x00\x00)\x81\x00\x00\x1d\x00\x00\x000\x81\x00\x00\x10\x00\x00\x00N\x81\x00\x00\x1f\x00\x00\x00_\x81\x00\x00\x18\x00\x00\x00\x7f\x81\x00\x00\x17\x00\x00\x00\x98\x81\x00\x00\x0c\x00\x00\x00\xb0\x81\x00\x00\x10\x00\x00\x00\xbd\x81\x00\x00!\x00\x00\x00\xce\x81\x00\x00\x17\x00\x00\x00\xf0\x81\x00\x00\x1d\x00\x00\x00\x08\x82\x00\x00\x07\x00\x00\x00&\x82\x00\x00\x0b\x00\x00\x00.\x82\x00\x00/\x00\x00\x00:\x82\x00\x00\x06\x00\x00\x00j\x82\x00\x00\xc3\x00\x00\x00q\x82\x00\x00"\x01\x00\x005\x83\x00\x00^\x00\x00\x00X\x84\x00\x001\x00\x00\x00\xb7\x84\x00\x00\x03\x00\x00\x00\xe9\x84\x00\x00\x07\x00\x00\x00\xed\x84\x00\x00\x08\x00\x00\x00\xf5\x84\x00\x00\t\x00\x00\x00\xfe\x84\x00\x004\x00\x00\x00\x08\x85\x00\x00!\x00\x00\x00=\x85\x00\x00\x1e\x00\x00\x00_\x85\x00\x00\n\x00\x00\x00~\x85\x00\x00\x12\x00\x00\x00\x89\x85\x00\x00\x16\x00\x00\x00\x9c\x85\x00\x00\x06\x00\x00\x00\xb3\x85\x00\x00\xe2\x01\x00\x00\xba\x85\x00\x00\x8f\x00\x00\x00\x9d\x87\x00\x00r\x00\x00\x00-\x88\x00\x00\x16\x00\x00\x00\xa0\x88\x00\x00\x12\x00\x00\x00\xb7\x88\x00\x00\xc7\x00\x00\x00\xca\x88\x00\x00*\x00\x00\x00\x92\x89\x00\x00\x19\x00\x00\x00\xbd\x89\x00\x00\x15\x00\x00\x00\xd7\x89\x00\x00\x15\x00\x00\x00\xed\x89\x00\x000\x00\x00\x00\x03\x8a\x00\x00\x12\x00\x00\x004\x8a\x00\x00\x1f\x00\x00\x00G\x8a\x00\x00#\x00\x00\x00g\x8a\x00\x00\x07\x00\x00\x00\x8b\x8a\x00\x00"\x00\x00\x00\x93\x8a\x00\x00\t\x00\x00\x00\xb6\x8a\x00\x00\t\x00\x00\x00\xc0\x8a\x00\x009\x00\x00\x00\xca\x8a\x00\x00\n\x00\x00\x00\x04\x8b\x00\x00<\x00\x00\x00\x0f\x8b\x00\x00\n\x00\x00\x00L\x8b\x00\x003\x00\x00\x00W\x8b\x00\x009\x00\x00\x00\x8b\x8b\x00\x00\r\x00\x00\x00\xc5\x8b\x00\x001\x00\x00\x00\xd3\x8b\x00\x00\x11\x00\x00\x00\x05\x8c\x00\x00\t\x00\x00\x00\x17\x8c\x00\x00|\x00\x00\x00!\x8c\x00\x00\x17\x00\x00\x00\x9e\x8c\x00\x00\x04\x00\x00\x00\xb6\x8c\x00\x00\n\x00\x00\x00\xbb\x8c\x00\x006\x00\x00\x00\xc6\x8c\x00\x00\x11\x00\x00\x00\xfd\x8c\x00\x00\x16\x00\x00\x00\x0f\x8d\x00\x00\x17\x00\x00\x00&\x8d\x00\x00\x13\x00\x00\x00>\x8d\x00\x00\x1b\x00\x00\x00R\x8d\x00\x00\x0c\x00\x00\x00n\x8d\x00\x00"\x00\x00\x00{\x8d\x00\x00 \x00\x00\x00\x9e\x8d\x00\x00\x07\x00\x00\x00\xbf\x8d\x00\x00_\x00\x00\x00\xc7\x8d\x00\x00\x1e\x00\x00\x00\'\x8e\x00\x00\x0b\x00\x00\x00F\x8e\x00\x00\x08\x00\x00\x00R\x8e\x00\x00\x1d\x00\x00\x00[\x8e\x00\x00\x1b\x00\x00\x00y\x8e\x00\x00H\x00\x00\x00\x95\x8e\x00\x00K\x00\x00\x00\xde\x8e\x00\x00\x93\x00\x00\x00*\x8f\x00\x00\x11\x00\x00\x00\xbe\x8f\x00\x00\x19\x00\x00\x00\xd0\x8f\x00\x00\x19\x00\x00\x00\xea\x8f\x00\x00J\x00\x00\x00\x04\x90\x00\x00\x18\x00\x00\x00O\x90\x00\x00\x04\x00\x00\x00h\x90\x00\x00:\x00\x00\x00m\x90\x00\x00J\x00\x00\x00\xa8\x90\x00\x001\x00\x00\x00\xf3\x90\x00\x00r\x00\x00\x00%\x91\x00\x00G\x00\x00\x00\x98\x91\x00\x00w\x00\x00\x00\xe0\x91\x00\x00Z\x00\x00\x00X\x92\x00\x00\x10\x00\x00\x00\xb3\x92\x00\x00\xc8\x00\x00\x00\xc4\x92\x00\x00\x08\x00\x00\x00\x8d\x93\x00\x00\t\x00\x00\x00\x96\x93\x00\x00\x0b\x00\x00\x00\xa0\x93\x00\x00 \x00\x00\x00\xac\x93\x00\x00\x19\x00\x00\x00\xcd\x93\x00\x00\x13\x00\x00\x00\xe7\x93\x00\x00 \x00\x00\x00\xfb\x93\x00\x00\x14\x00\x00\x00\x1c\x94\x00\x00-\x00\x00\x001\x94\x00\x00-\x00\x00\x00_\x94\x00\x002\x00\x00\x00\x8d\x94\x00\x00+\x00\x00\x00\xc0\x94\x00\x008\x00\x00\x00\xec\x94\x00\x00\x0f\x00\x00\x00%\x95\x00\x00\x1d\x00\x00\x005\x95\x00\x00G\x00\x00\x00S\x95\x00\x001\x00\x00\x00\x9b\x95\x00\x00\x95\x00\x00\x00\xcd\x95\x00\x00N\x00\x00\x00c\x96\x00\x00\x10\x00\x00\x00\xb2\x96\x00\x00\x1f\x00\x00\x00\xc3\x96\x00\x007\x00\x00\x00\xe3\x96\x00\x00\x08\x00\x00\x00\x1b\x97\x00\x00\x0c\x00\x00\x00$\x97\x00\x00\x13\x00\x00\x001\x97\x00\x004\x00\x00\x00E\x97\x00\x00=\x00\x00\x00z\x97\x00\x00\r\x00\x00\x00\xb8\x97\x00\x00\\\x00\x00\x00\xc6\x97\x00\x00~\x00\x00\x00#\x98\x00\x00C\x00\x00\x00\xa2\x98\x00\x000\x00\x00\x00\xe6\x98\x00\x00\x15\x00\x00\x00\x17\x99\x00\x00\x1b\x00\x00\x00-\x99\x00\x00\x1d\x00\x00\x00I\x99\x00\x000\x00\x00\x00g\x99\x00\x00\x06\x00\x00\x00\x98\x99\x00\x00\x11\x00\x00\x00\x9f\x99\x00\x00\r\x00\x00\x00\xb1\x99\x00\x00\x07\x00\x00\x00\xbf\x99\x00\x001\x00\x00\x00\xc7\x99\x00\x00\x18\x00\x00\x00\xf9\x99\x00\x00(\x00\x00\x00\x12\x9a\x00\x00$\x00\x00\x00;\x9a\x00\x00&\x00\x00\x00`\x9a\x00\x00\x11\x00\x00\x00\x87\x9a\x00\x00`\x00\x00\x00\x99\x9a\x00\x00\x1c\x00\x00\x00\xfa\x9a\x00\x00\x16\x00\x00\x00\x17\x9b\x00\x00\x15\x00\x00\x00.\x9b\x00\x00\x95\x00\x00\x00D\x9b\x00\x00n\x00\x00\x00\xda\x9b\x00\x00?\x00\x00\x00I\x9c\x00\x002\x00\x00\x00\x89\x9c\x00\x00m\x00\x00\x00\xbc\x9c\x00\x00\x0c\x00\x00\x00*\x9d\x00\x00\x18\x00\x00\x007\x9d\x00\x00\x1d\x00\x00\x00P\x9d\x00\x00\x1c\x00\x00\x00n\x9d\x00\x00\x1c\x01\x00\x00\x8b\x9d\x00\x00y\x00\x00\x00\xa8\x9e\x00\x00\x88\x00\x00\x00"\x9f\x00\x00\xc5\x00\x00\x00\xab\x9f\x00\x00M\x00\x00\x00q\xa0\x00\x00V\x01\x00\x00\xbf\xa0\x00\x00%\x00\x00\x00\x16\xa2\x00\x00\x06\x00\x00\x00<\xa2\x00\x00\x1f\x00\x00\x00C\xa2\x00\x00\x18\x00\x00\x00c\xa2\x00\x00\x0b\x00\x00\x00|\xa2\x00\x00\x07\x00\x00\x00\x88\xa2\x00\x00\x15\x00\x00\x00\x90\xa2\x00\x00\x1e\x00\x00\x00\xa6\xa2\x00\x00\t\x00\x00\x00\xc5\xa2\x00\x00\x89\x00\x00\x00\xcf\xa2\x00\x00\x04\x00\x00\x00Y\xa3\x00\x00\t\x00\x00\x00^\xa3\x00\x00<\x00\x00\x00h\xa3\x00\x00l\x00\x00\x00\xa5\xa3\x00\x00\x1a\x00\x00\x00\x12\xa4\x00\x00\x1a\x00\x00\x00-\xa4\x00\x00\x98\x00\x00\x00H\xa4\x00\x00-\x00\x00\x00\xe1\xa4\x00\x00#\x00\x00\x00\x0f\xa5\x00\x00\x89\x00\x00\x003\xa5\x00\x00*\x00\x00\x00\xbd\xa5\x00\x00)\x00\x00\x00\xe8\xa5\x00\x00^\x00\x00\x00\x12\xa6\x00\x00s\x00\x00\x00q\xa6\x00\x00z\x00\x00\x00\xe5\xa6\x00\x005\x00\x00\x00`\xa7\x00\x00\x0f\x00\x00\x00\x96\xa7\x00\x00\x07\x00\x00\x00\xa6\xa7\x00\x00\x1f\x00\x00\x00\xae\xa7\x00\x00\x06\x00\x00\x00\xce\xa7\x00\x008\x00\x00\x00\xd5\xa7\x00\x00!\x00\x00\x00\x0e\xa8\x00\x00%\x00\x00\x000\xa8\x00\x00\r\x00\x00\x00V\xa8\x00\x00\x0b\x00\x00\x00d\xa8\x00\x00\x1b\x00\x00\x00p\xa8\x00\x00\x0e\x00\x00\x00\x8c\xa8\x00\x00\x12\x00\x00\x00\x9b\xa8\x00\x00\x12\x00\x00\x00\xae\xa8\x00\x00;\x00\x00\x00\xc1\xa8\x00\x000\x00\x00\x00\xfd\xa8\x00\x00\xbc\x00\x00\x00.\xa9\x00\x00:\x00\x00\x00\xeb\xa9\x00\x00\x15\x00\x00\x00&\xaa\x00\x00i\x00\x00\x00<\xaa\x00\x00N\x00\x00\x00\xa6\xaa\x00\x007\x00\x00\x00\xf5\xaa\x00\x00\x07\x00\x00\x00-\xab\x00\x00\x19\x00\x00\x005\xab\x00\x00\x0c\x00\x00\x00O\xab\x00\x00\r\x00\x00\x00\\\xab\x00\x00,\x00\x00\x00j\xab\x00\x00n\x00\x00\x00\x97\xab\x00\x001\x00\x00\x00\x06\xac\x00\x006\x00\x00\x008\xac\x00\x002\x00\x00\x00o\xac\x00\x00\n\x00\x00\x00\xa2\xac\x00\x00\t\x00\x00\x00\xad\xac\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 days\x00 from \x00 is not a valid picture\x00 not found.\x00 pts\x00 px\x00 seconds\x00 stars\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00Any\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Base &font size:\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Book \x00Book <font face="serif">%s</font> of %s.\x00Book Cover\x00Bottom margin of page. Default is %default px.\x00Browse for an image to use as the cover of this book.\x00Browse for the new database location\x00Bulk convert\x00Bulk convert ebooks to LRF\x00Cannot configure\x00Cannot configure while there are running jobs.\x00Cannot connect\x00Cannot convert\x00Cannot convert %s as this book has no supported formats\x00Cannot edit metadata\x00Cannot fetch cover\x00Cannot kill already completed jobs.\x00Cannot kill job\x00Cannot kill jobs that are communicating with the device as this may cause data corruption.\x00Cannot kill waiting jobs.\x00Cannot read\x00Cannot save to disk\x00Cannot view\x00Card\n%s available\x00Category\x00Change &cover image:\x00Change password\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\x00Change the username and/or password for your account at LibraryThing.com\x00Chapter Detection\x00Choose Format\x00Choose the format to convert into LRF\x00Choose the format to view\x00Click to see list of active jobs.\x00Comma separated list of tags to remove from the books. \x00Comments\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert individually\x00Convert to LRF\x00Could not download cover: %s\x00Could not fetch article. Run with --debug to see the reason\x00Could not fetch cover\x00Could not fetch cover as server is experiencing high load. Please try again later.\x00Could not move database\x00Could not parse file: %s\x00Created by \x00Custom news sources\x00Date\x00Default network &timeout:\x00Del\x00Delete tag from database. This will unapply the tag from all books and then remove it from the database.\x00Details of job\x00Don\'t know what this is for\x00Dont show the progress bar\x00Download finished\x00Downloading cover from %s\x00Duplicates found!\x00E\x00ERROR\x00Edit Meta Information\x00Edit Meta information\x00Edit meta information\x00Edit metadata in bulk\x00Edit metadata individually\x00Embedded Fonts\x00Enable auto &rotation of images\x00Enable autorotation of images that are wider than the screen width.\x00Error\x00Error communicating with device\x00Error reading file\x00Error talking to device\x00Extract thumbnail from LRF file\x00Failed to download article: %s from %s\n\x00Failed to download parts of the following articles:\x00Failed to download the following articles:\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\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:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\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 the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\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\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00Left margin of page. Default is %default px.\x00Library\x00List of known series. You can add new series.\x00Look & Feel\x00Match a&ll of the following criteria\x00Match a&ny of the following criteria\x00Matches\x00Maximum number of articles to download per feed.\x00Meta information\x00Metadata\x00Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine.\x00Minimum &indent:\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No match\x00No matches found\x00No space on device\x00None\x00Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default\x00Open Tag Editor\x00Open ebook\x00Options\x00Options to control the behavior of feeds2disk\x00Options to control the behavior of html2lrf\x00Options to control web2disk (used to fetch websites linked from feeds)\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<br>CSS\x00Page Setup\x00Parsing LRF file\x00Password for sites that require a login to access content.\x00Password needed\x00Path\x00Path to a graphic that will be set as this files\' thumbnail\x00Path to a txt file containing the comment to be stored in the lrf file.\x00Path to file containing image to be used as cover\x00Path to output directory in which to create the HTML file. Defaults to current directory.\x00Preprocess Baen HTML files to improve generated LRF.\x00Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:\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: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the book title\x00Set the category\x00Set the comment.\x00Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)\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 <a href="http://www.isbndb.com">ISBNdb.com</a> to get an access key.\x00Size (MB)\x00Sort key for the author\x00Sort key for the title\x00Source en&coding:\x00Specify a list of feeds to download. For example: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nIf you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds.\x00Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles.\x00Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file.\x00Specify the base font size in pts. All fonts are rescaled accordingly. This option obsoletes the --font-delta option and takes precedence over it. To use --font-delta, set this to 0.\x00Specify the page settings like margins and the screen size of the target device.\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 \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Tag\x00Tag Editor\x00Tag based detection\x00Tags\x00Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas.\x00Test\x00TextLabel\x00The category this book belongs to. E.g.: History\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The 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.\x00The monospace family of fonts to embed\x00The oldest article to download\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\x00The text to search for. It is interpreted as a regular expression.\x00The title for this recipe. Used as the title for any ebooks created from the downloaded feeds.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Use &Roman numerals for series number\x00Use cover from &source file\x00Use 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.\x00Use this option on html0 files from Book Designer.\x00Use white background\x00Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds.\x00Username for sites that require a login to access content.\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00You do not have permission to read the file: \x00You must add this option if processing files generated by pdftohtml, otherwise conversion will fail.\x00You must specify a single PDF file.\x00You must specify a valid access key for isbndb.com\x00You must specify the ISBN identifier for this book.\x00contains\x00libprs500\x00Project-Id-Version: es\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2008-04-01 09:18+PDT\nPO-Revision-Date: 2007-11-16 09:21+0100\nLast-Translator: libprs500\nLanguage-Team: Spanish\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nX-Generator: KBabel 1.11.4\n\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\nArtikel %s von %s geladen\n%s\x00 Tage\x00 von\x00 no es una imagen v\xc3\xa1lida\x00 pas trouv\xc3\xa9.\x00 puntos\x00 P\xc3\xadxeles\x00 secondes\x00 estrellas\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00Clave de &acceso;\x00Feed &anf\xc3\xbcgen\x00Ajoute mot-clef\x00&Autor(es):\x00Margen &Inferior:\x00Datenbank verdi&chten\x00&Desactivar detecci\xc3\xb3n de cap\xc3\xadtulos\x00&Feed Titel:\x00&Fuerza un salto de p\xc3\xa1gina delante de la marca:\x00&Formato del encabezado:\x00Margen &Izquierdo:\x00&Ubicaci\xc3\xb3n de la base de datos (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace:\x00\xc3\x84<ester Artikel:\x00Inserta un salto de &p\xc3\xa1gina delante de la marca:\x00&Contrase\xc3\xb1a:\x00&Preprocesamiento:\x00&Priorit\xc3\xa9 pour les travaux de conversion :\x00&Perfil:\x00&Editorial:\x00&Valoraci\xc3\xb3n:\x00Expresi\xc3\xb3n &Regular:\x00Rezept entfe&rnen\x00&Supprime des mots-clefs :\x00Margen &Derecho:\x00&Buscar:\x00&Series:\x00&Serif:\x00&Mostrar encabezado\x00&Affiche le mot de passe\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&T\xc3\xadtulo:\x00Margen &Superior:\x00&Usuario:\x00&Espaciado de palabras:\x00...\x00<b>Los cambios no se aplicaran hasta reiniciar.\x00<b>No se puede descargar la portada.</b><br/>\x00<b>No </b>se han encontrado coincidencias para "<i>%s</i>".\x00<br>Debe ser un directorio.\x00<font color="gray">Ayuda no disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; 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; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, 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 gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><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> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Archivos HTML0 de Book Designer</li>\x00<li><b>pdftohtml</b> - Archivos HTML creados con el programa pdftohtml</li>\x00<ol><li><b>baen</b> - Libros de BAEN Publishers</li>\x00<p>Une base de donn\xc3\xa9es invalide existe d\xc3\xa9j\xc3\xa0 ici : %s, spprimez la avant d\'essayer de d\xc3\xa9placer la base de donn\xc3\xa9es existante.<br>Erreur : %s\x00<p>Des livres ayant le m\xc3\xaame titre existent d\xc3\xa9j\xc3\xa0 dans la base de donn\xc3\xa9es. Les ajouter quand m\xc3\xaame ?<ul>\x00<p>No se pueden guardar los libros porque no hay espacio en el dispositivo \x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Veuillez saisir votre nom d\'utilisateur et votre mot de passe de <b>LibraryThing.com</b>. <br/>Si vous n\'en avez pas, vous pouvez <a href=\'http://www.librarything.com\'>y cr\xc3\xa9er un compte </a> gratuitement !</p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Hubo un error leyendo el archivo: <br /><b>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Expresi\xc3\xb3n regular. Las marcas <a> que tengan href coincidentes, son ignoradas. Por defecto: %default\x00Mots-clefs\x00Mots-clefs disponibles\x00Trebajos activos\x00A\xc3\xb1a&dir las etiquetas: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00A\xc3\xb1adir directorio a la lista de directorios frecuentes\x00A\xc3\xb1adir el encabezado en todas las p\xc3\xa1ginas, poniendo t\xc3\xad\xc2\xadtulo y autor.\x00A\xc3\xb1adir un nuevo formato para este libro en la base de datos\x00A\xc3\xb1adir libros\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Mejorar la apariencia del archivo LRF generado, especificando el tama\xc3\xb1o de fuente y el espaciado entre palabras.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Irgendein\x00Applique le mot-clef au livre en cours.\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00&Ordenar autores:\x00O&rd&en por autor:\x00Autor(es)\x00Autoren:\x00Formatos disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Atr\xc3\xa1s\x00Tama\xc3\xb1o de la &fuente base:\x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Libro \x00Libro <font face="serif">%s</font> de %s.\x00Portada\x00Margen inferior de la p\xc3\xa1gina. Por defecto: %default px.\x00Localizar una imagen a utilizar como portada de este libro.\x00Navegar a la nueva ubicaci\xc3\xb3n de la base de datos\x00Convertir en bloque\x00eBooks auf einmal zu LRF konvertieren\x00No se puede configurar\x00No se puede configurar con trabajos en proceso.\x00No se puede conectar\x00No se puede convertir\x00No se puede convertir %s porque el formato no est\xc3\xa1 soportado\x00No se pueden editar los metadatos\x00No se puede descargar la portada\x00Kann schon fertiggestellte Auftr\xc3\xa4ge nicht abbrechen.\x00Kann Auftrag nicht abbrechen.\x00Kann Auftr\xc3\xa4ge nicht abbrechen, die mit dem Ger\xc3\xa4t kommunizieren, da dies zu Datenverlust f\xc3\xbchren kann.\x00Kann Auftr\xc3\xa4ge in Warteliste nicht abbrechen.\x00No se puede leer\x00No se puede guardar en disco\x00No se puede visualizar\x00Tarjeta\n%s disponible\x00Categor\xc3\xada\x00Cambia la imagen de &portada:\x00Modifie le mot de passe\x00Cambia el(los) autor(es). Para especificar m\xc3\xa1s de uno, separarlos mediante comas.\x00Cambia la editorial del libro\x00Cambiar el t\xc3\xadtulo del libro\x00Modifie le nom d\'utilisateur et/ou le mot de passe de votre compte \xc3\xa0 LibraryThing.com\x00Detecci\xc3\xb3n de cap\xc3\xadtulos\x00Elegir formato\x00Elegir el formato a conertir en LRF\x00Format zur Vorschau w\xc3\xa4hlen\x00Ein Klick zeigt die aktiven Auftr\xc3\xa4ge.\x00Liste de mots-clefs s\xc3\xa9par\xc3\xa9s par des virgules \xc3\xa0 retirer des livres.\x00Comentarios\x00Configuraci\xc3\xb3n\x00Configurar\x00Configurar el visor\x00Convertir %s a LRF\x00Convertir Ebooks\x00Convertir individualmente\x00Convertir a LRF\x00Konnte Umschlagbild nicht laden: %s\x00Konnte Artikel nicht abrufen. Der erneute Start mit --debug zeigt m\xc3\xb6gliche Gr\xc3\xbcnde an \x00No se puede descargar la portada.\x00L\'image de couverture n\'a pas pu \xc3\xaatre r\xc3\xa9cup\xc3\xa9r\xc3\xa9e \xc3\xa0 cause de probl\xc3\xa8mes de connexion. Veuillez r\xc3\xa9essayer ult\xc3\xa9rieurement.\x00No se puede mover la base de datos\x00Konnte Datei nicht analysieren: %s\x00Creado por \x00Individuelle Nachrichtenquellen\x00Fecha\x00&Timeout par d\xc3\xa9faut pour les connexions r\xc3\xa9seau :\x00Borrar\x00Supprime un mot-clef de la base de donn\xc3\xa9es. Cette op\xc3\xa9ration va retirer ce mot-clef de tous les livres et le supprimer de la base de donn\xc3\xa9es.\x00Details des Auftrags\x00No s\xc3\xa9 para qu\xc3\xa9 sirve esto\x00Fortschrittsbalken nicht anzeigen\x00Download beendet\x00Lade Umschlagbild von %s\x00Des doublons ont \xc3\xa9t\xc3\xa9 d\xc3\xa9tect\xc3\xa9s !\x00E\x00ERROR\x00Editar meta-informaci\xc3\xb3n\x00Editar Meta-informaci\xc3\xb3n\x00Editar la meta-informaci\xc3\xb3n\x00Edita metadatos en bloque\x00Editar metadatos individualmente\x00Fuentes incrustadas\x00Activa la &rotaci\xc3\xb3n autom\xc3\xa1tica de im\xc3\xa1genes\x00Activa la rotaci\xc3\xb3n autom\xc3\xa1tica de im\xc3\xa1genes m\xc3\xa1s grandes que el ancho de la pantalla.\x00Fehler\x00Error en la comunicaci\xc3\xb3n con el dispositivo\x00Error leyendo archivo\x00Error de comunicaci\xc3\xb3n con el dispositivo\x00Extraer la miniatura del archivo LRF\x00Laden der Artikel fehlgeschlagen: %s von %s\n\x00Der Download von Teilen der folgenden Artikel schlug fehl:\x00Der Download der folgenden Artikel schlug fehl:\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Buscar\x00Buscar portada en el servidor\x00Buscar metadatos\x00Buscar metadatos en el servidor\x00Descargar noticias (RSS)\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Buscando metadatos para <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Afinar la detecci\xc3\xb3n de cap\xc3\xadtulos y secciones.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Fuerza un salto de p\xc3\xa1gina antes de un elemento con un atributo concreto. El formato de esta opci\xc3\xb3n es regexp_marca,nom_atribut,tegexp_valor_atribut. Por ejemplo, "h\\d,class,chapter", coincide con todas las marcas de encabezado que tienen el atributo class="chapter". Por defecto: %default\x00Fuerza un salto de p\xc3\xa1gina antes de las marcas cuyo nombre coincida con la expresi\xc3\xb3n regular.\x00Fuerza un salto de p\xc3\xa1gina delante del &atributo:\x00Art\x00Formato\x00Formatos\x00Siguiente\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00Directorios usados con frecuencia\x00Feeds der Index Seite erhalten\x00Encabezado\x00Ayuda con el \xc3\xadtem\x00Partici\xc3\xb3n de palabras\x00IS&BN:\x00Si html2lrf no encuentra saltos de p\xc3\xa1gina en el archivo html y no puede detectar los encabezados de los cap\xc3\xadtulos, inserta autom\xc3\xa1ticamente un salto de p\xc3\xa1gina delante de las marcas que cuyo nombre coincida con la expresi\xc3\xb3n regular. Por defecto: %default. Esta opci\xc3\xb3n se inhabilita estableciendo la regexp a "$".El prop\xc3\xb3sito es evitar p\xc3\xa1ginas muy largas, que relentizan al cambio de p\xc3\xa1gina en el archivo LRF. Esta opci\xc3\xb3n se ignora si la p\xc3\xa1gina actual tiene pocos elementos.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si se detecta un gr\xc3\xa1fico para la portada en el archivo de origen, utilizarla en lugar de la portada especificada.\x00Farben nicht bea&chten\x00Ignora las &tablas\x00Aumenta el tama\xc3\xb1o de la fuente en 2 * FONT_DELTA puntos y el espacio de l\xc3\xad\xc2\xadnea en FONT_DELTA puntos. FONT_DELTA puede ser una fracci\xc3\xb3n. Si es un valor negativo, el tama\xc3\xb1o de la fuente disminuye.\x00Inserta l\xc3\xadneas en &blanco entre p\xc3\xa1rrafos\x00Base de donn\xc3\xa9es invalide\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida.<br>Imposible escribir en \x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Trabajo\x00Auftrag durch Benutzer abgebrochen\x00Trabajos:\x00Visor LRF\x00Margen izquierdo de la p\xc3\xa1gina. Por defecto: %default px.\x00Biblioteca\x00Listado de series conocidas. Se puede a\xc3\xb1adir nuevas series.\x00Apariencia\x00\xc3\x9cbereinstimmung mit a&llen der folgenden Kriterien\x00\xc3\x9cbereinstimmung mit irge&ndeinem der folgenden Kriterien\x00Coincidencias\x00Maximale Anzahl der zu ladenden Artikel pro feed.\x00Meta-informaci\xc3\xb3n\x00Metadatos\x00Minimizar el uso de memoria, a cambio de mayor tiempo de procesador. Usar esta opci\xc3\xb3n si el equipo no dispone de mucha RAM.\x00E&inr\xc3\xbccken mindestens:\x00Mehr\x00Ausblenden\x00Nachrichten abgerufen. \xc3\x9cbertragung ans Ger\xc3\xa4t l\xc3\xa4uft.\x00P\xc3\xa1gina siguiente\x00Siguiente coincidencia\x00Formatos no disponibles\x00Seleccione un libro\x00No hay libros seleccionados\x00Kein Treffer\x00No se han encontrado coincidencias\x00No hay espacio en el dispositivo\x00Ninguno\x00Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. Voreinstellung %default\x00Ouvre l\'\xc3\xa9diteur de mots-clefs\x00Abrir eBook\x00Opciones\x00Einstellungen f\xc3\xbcr feeds2disk\x00Einstellungen f\xc3\xbcr html2lrf\x00Einstellungen f\xc3\xbcr web2disk (um von Feeds verlinkte Webseiten abzurufen)\x00Nombre del archivo de destino\xc2\xad. Por defecto, deriva del archivo de entrada\x00Substituye la hoja CSS. Se admite tanto una ruta al archivo CSS alternativo, como una cadena. En el \xc3\xbaltimo caso, la cadena se interpreta como CSS.\x00Substituye<br>CSS\x00Configuraci\xc3\xb3n de p\xc3\xa1gina\x00Analizando el archivo LRF\x00Passwort f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Se necesita contrase\xc3\xb1a.\x00Ruta\x00Ruta al archivo de imagen que se utilizar\xc3\xa1 como miniatura\x00Ruta al archivo txt que contiene el comentaria a guardar en el archivo LRF\x00Ruta al archivo de imagen a utilizar como portada\x00Pfad zum Ausgabeverzeichnis, in dem die HTML Datei erstellt werden soll. Voreinstellung auf aktuelles Verzeichnis.\x00Preprocesa los archivos Baen HTML para mejorar el archivo LRF generado.\x00Preprocesar el archivo antes de convertir a LRF, \xc3\xbatil si se conoce el origen del archivo. Tipos de archivos conocidos:\x00Evita la inserci\xc3\xb3n autom\xc3\xa1tica de saltos de p\xc3\xa1gina delante de los cap\xc3\xadtulos detectados.\x00P\xc3\xa1gina anterior\x00Perfil del dispositivo para el cual se genera el archivo LRF. Este perfil determina, entre otras cosas, la resoluci\xc3\xb3n y el tama\xc3\xb1o de la pantalla del dispositivo. Por defecto: %s Perfiles soportados:\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Sony Reader\n%s disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Eliminar directorio a la lista de directorios frecuentes\x00Suprimir libros\x00Feed aus dem Rezept entfernen\x00Elimina los formatos seleccionados para este libro de la base de datos.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Renderizar las tablas HTML como bloques de texto en lugar de las tablas actuales. Activar si el archivo HTML contiene tablas muy grandes o complejas.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Reinicializar b\xc3\xbasqueda r\xc3\xa1pida\x00Margen derecho de la p\xc3\xa1gina. Por defecto: %default px.\x00Laufzeit\x00S&ans-serif:\x00Guardar en el disco\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Busca libros por t\xc3\xadtulo o autor. <br><br>Los espacios entre palabras se sustituyen por AND.\x00Buscar libros por t\xc3\xadtulo, autor, editorial, etiquetas y comentaris<br><br>Los espacios entre parlabras se sustituyen por AND.\x00Seleccionar el libro que m\xc3\xa1s se aproxime al listado mostrado abajo\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Enviar al dispositivo\x00Enviar a la memoria interna\x00Envia a la targeta de memoria\x00Separa los p\xc3\xa1rrafos mediante l\xc3\xadneas en blanco.\x00Series\x00\xc3\x8dndice de serie.\x00Serien Index:\x00Serien:\x00Erreur Serveur. Veuillez essayer ult\xc3\xa9rieurement.\x00Insertar el ID del libro\x00Fijar valores de conversi\xc3\xb3n por defecto\x00Insertar la clave de orden por autor\x00Insertar la clave de orden por t\xc3\xadtulo\x00Insertar el autor\x00Insertar autor(es). Si indica m\xc3\xa1s de un autor, sep\xc3\xa1relos mediante comas. Por defecto: %default\x00Insertar el nombre del libro\x00Insertar categor\xc3\xad\xc2\xada.\x00Insertar comentarios.\x00Voreinstellung der Zeit\xc3\xbcberschreitung f\xc3\xbcr Netzwerkabrufe festsetzen (Gilt immer dann, wenn aus dem Internet Informationen abgerufen werden sollen) \x00Establece el formato del encabezado. %a se reemplaza por el autor y %t por el t\xc3\xad\xc2\xadtulo. Por defecto: %default\x00Fija el espacio entre palabras en puntos. Por defecto: %default\x00Insertar t\xc3\xadtulo. Por defecto: nombre_del_archivo.\x00Registraros gratuitamente en <a href="http://www.isbndb.com">ISBNdb.com</a> para obtenir una clave de acceso.\x00Tama\xc3\xb1o (MB)\x00Clave de orden por autor\x00Clave de orden por t\xc3\xad\xc2\xadtulo.\x00En&codierung der Quelldatei:\x00Geben Sie eine Liste von Feeds zum Download an. Zum Beispiel: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nWenn Sie diese Option w\xc3\xa4hlen, wird jedes Argument %prog ignoriert und die Voreinstellung zum Download der Feeds verwendet. \x00Especificar c\xc3\xb3mo ordenar el(los) autor(es) de este libro. Por ejemplo,ordena Federico Garc\xc3\xada Lorca como Lorca, Federico\x00Especificar datos como t\xc3\xadtulo y autor para el libro.<p>Esta informaci\xc3\xb3n se actualiza tanto en la base de datos como en el archivo LRF.\x00Especifica el tama\xc3\xb1o de fuente en puntos. Todas las fuentes se reescalan seg\xc3\xban este valo. Esta opci\xc3\xb3n sustituye a --font-delta que se considera obsoleta. Para user ---font-delta, asigne 0 aqu\xc3\xad.\x00Configuraci\xc3\xb3n de p\xc3\xa1gina del dispositivo: m\xc3\xa1rgenes y tama\xc3\xb1o de la pantalla\x00Especificar fuentes truetype para las familias serif, sans-serif y monoespaciadas. Las fuentes se insertan en el archivo LRF. Tener en cuenta que a\xc3\xb1adir fuentes personalizadas relentiza el cambio de p\xc3\xa1gina. Para especificar cada una de las familias se utiliza: "ruta a la carpeta de fuents, familia" ( --serif-family "%s, Times New Roman")\n\x00Starte Download von [%d Thread(s)]...\x00Estado\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Etique&tas:\x00Etikett\x00Editeur de Mots-Clefs\x00Detecci\xc3\xb3n basada en etiquetas\x00Etiquetas\x00Etiquetas para categorizar el libr (muy \xc3\xbatil en b\xc3\xbasquedas). <br><br>Puede utilizarse qualquier palabra o frase, separada medante comas.\x00Test\x00TextLabel\x00Categoria a la que pertenece el libro. Por ejemplo, Historia\x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00N\xc3\xbamero m\xc3\xa1ximo de niveles para procesar enlaces recursivamente. El valor 0 (cero) indica que no se seguir\xc3\xa1n. Un valor negativo, ignora las marcas <a>.\x00Familia de fuentes monoespaiadas a incrustar.\x00\xc3\x84ltester Artikel, der geladen wird\x00Expressi\xc3\xb3n regular utilizada para detectar los t\xc3\xadtulos de los cap\xc3\xadtulos. Busca las marcas de encabezado (h1-h6). Por defecto: %default\x00Familia de fuentes sans-serif a incrustar.\x00Familia de fuentes serif per a incrustar.\x00Der Text, nach dem gesucht werden soll. Dies wird als eine Regul\xc3\xa4re Expression interpretiert.\x00Der Titel f\xc3\xbcr dieses Rezept. Wird als Titel f\xc3\xbcr alle eBooks benutzt, die aus den geladenen Feeds erstellt wurden.\x00Hubo un error de comunicaci\xc3\xb3n con el dispositivo. Desconecte, vuelva a conectar el dispositivo y reinicie la aplicaci\xc3\xb3n.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Marca de tiempo\x00T\xc3\xadtulo\x00Detecci\xc3\xb3n basada en el t\xc3\xadtulo\x00Titel:\x00Margen superior de la p\xc3\xa1gina. Por defecto: %default px.\x00Versuche Umschlagbild zu laden...\x00Enl\xc3\xa8ve le mot-clef du livre en cours\x00No disponible\x00Desconocido\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Utilisation de chiffres romains pour les num\xc3\xa9ro de s\xc3\xa9ries\x00Utilise l\'image de couverture du fichier &source\x00Utiliza el elemento <spine> del archivo OPF para determinar el orden en el que se a\xc3\xb1aden los archivos HTML al LRF. El archivo .opf debe estar en la misma carpeta que el archivo HTML base.\x00Utilice esta opci\xc3\xb3n para archivos html0 de Book Designer.\x00Utilizar fondo blanco\x00Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed und l\xc3\xa4dt h\xc3\xb6chstens 2 Feeds.\x00Benutzername f\xc3\xbcr Webseiten, die einen Login f\xc3\xbcr den Inhaltsabruf ben\xc3\xb6tigen.\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Mostrar\x00Spezielles Format ansehen\x00En espera...\x00Procesando...\x00No tienes permiso de lectura en el archivo: \x00Es necesario activar esta opci\xc3\xb3n para archivos generados con pdftohtml, para evitar que la conversi\xc3\xb3n falle.\x00Es muss eine einzelne PDF Datei angegeben werden.\x00Especifica una clave de acceso v\xc3\xa1lida para isbndb.com\x00Especifique primero un ISBN v\xc3\xa1lido para el libro.\x00beinhaltet\x00libprs500\x00'} \ No newline at end of file diff --git a/src/libprs500/translations/de.po b/src/libprs500/translations/de.po index 10a0aabdff..3876c359af 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: 2008-03-31 15:53+PDT\n" +"POT-Creation-Date: 2008-04-01 09:18+PDT\n" "PO-Revision-Date: 2008-03-30 13:26+0100\n" "Last-Translator: S. Dorscht <stdoonline@googlemail.com>\n" "Language-Team: de\n" @@ -143,6 +143,12 @@ msgstr "" "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:130 +msgid "" +"Minimum paragraph indent (the indent of the first line of a paragraph) in " +"pts. Default: %default" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 msgid "" "Increase the font size by 2 * FONT_DELTA pts and the line spacing by " @@ -303,6 +309,14 @@ msgstr "Serifenlose Schriftartfamilie einbetten" msgid "The monospace family of fonts to embed" msgstr "Nichtproportionale Schriftartfamilie einbetten" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +msgid "Be verbose while processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +msgid "Convert to LRS" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " @@ -312,6 +326,37 @@ msgstr "" "Benutzen Sie diese Einstellung, wenn sie an einem Rechner mit geringem " "Hauptspeicher arbeiten." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +msgid "" +"Specify the character encoding of the source file. If the output LRF file " +"contains strange characters, try changing this option. A common encoding for " +"files from windows computers is cp-1252. Another common choice is utf-8. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +msgid "" +"any2lrf [options] myfile\n" +"\n" +"Convert any ebook format into LRF. Supported formats are:\n" +"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " +"RAR or\n" +"ZIP archive, looking for an ebook inside the archive.\n" +" " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +msgid "No file to convert specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +msgid "" +"Usage: %prog [options] mybook.epub\n" +" \n" +" \n" +"%prog converts mybook.epub to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "Einstellungen für feeds2disk" @@ -324,55 +369,216 @@ msgstr "Einstellungen für html2lrf" msgid "Fetching of recipe failed: " msgstr "Abruf des Rezepts misslungen:" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +msgid "\tBook Designer file detected." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +msgid "\tParsing HTML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +msgid "\tBaen file detected. Re-parsing..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +msgid "Written preprocessed HTML to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +msgid "Processing %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +msgid "\tConverting to BBeB..." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 msgid "Could not parse file: %s" msgstr "Konnte Datei nicht analysieren: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:546 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +msgid "Failed to parse link %s %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +msgid "Cannot add link %s to TOC" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +msgid "Unable to process image %s. Error: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +msgid "Unable to process interlaced PNG %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +msgid "" +"Could not process image: %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +msgid "An error occurred while processing a table: %s. Ignoring table markup." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +msgid "" +"Bad table:\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +msgid "Table has cell that is too large" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +msgid "" +"You have to save the website %s as an html file first and then run html2lrf " +"on it." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1740 +msgid "Cannot read from: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1869 +msgid "Failed to process opf file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1875 +msgid "" +"Usage: %prog [options] mybook.html\n" +"\n" +"\n" +"%prog converts mybook.html to mybook.lrf. \n" +"%prog follows all links in mybook.html that point \n" +"to local files recursively. Thus, you can use it to \n" +"convert a whole tree of HTML files." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +msgid "" +"Usage: %prog [options] mybook.lit\n" +"\n" +"\n" +"%prog converts mybook.lit to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +msgid "" +"%prog [options] file.lrs\n" +"Compile an LRS file into an LRF file." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +msgid "Path to output file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +msgid "Verbose processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +msgid "Convert LRS to LRS, useful for debugging." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +msgid "" +"%prog [options] mybook.lrf\n" +"\n" +"\n" +"Show/edit the metadata in an LRF file.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 msgid "Set the book title" msgstr "Geben Sie den Buchtitel an" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 msgid "Set sort key for the title" msgstr "Sortierung nach Titel" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 msgid "Set the author" msgstr "Geben Sie den Autor an" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 msgid "Set sort key for the author" msgstr "Sortierung nach Autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "Die Kategorie dieses Buches ... (Z. B.: Geschichte)" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:557 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" msgstr "" "Pfad zu einer Grafik, die als Thumbnail für diese Datei verwendet werden " "soll " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:560 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 msgid "Path to a txt file containing the comment to be stored in the lrf file." msgstr "" "Pfad zu einer Text Datei, deren Inhalt als Bemerkung in der LRF Datei " "gespeichert wird" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:564 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "Thumbnail von LRF Datei extrahieren" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "Geben Sie die Buch ID an" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "Was weiß ich, für was das ist" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +msgid "" +"Usage: %prog [options] mybook.mobi|prc\n" +"\n" +"\n" +"%prog converts mybook.mobi to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +msgid "" +"%prog book.lrf\n" +"Convert an LRF file into an LRS (XML UTF-8 encoded) file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +msgid "Output LRS file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +msgid "Parsing LRF..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +msgid "Creating XML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +msgid "LRS written to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +msgid "" +"%prog [options] mybook.pdf\n" +"\n" +"\n" +"%prog converts mybook.pdf to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 msgid "" "Path to output directory in which to create the HTML file. Defaults to " @@ -389,6 +595,72 @@ msgstr "Mehr Wörter benutzen!" msgid "You must specify a single PDF file." msgstr "Es muss eine einzelne PDF Datei angegeben werden." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +msgid "" +"%prog [options] mybook.rtf\n" +"\n" +"\n" +"%prog converts mybook.rtf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +msgid "" +"%prog [options] mybook.txt\n" +"\n" +"\n" +"%prog converts mybook.txt to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +msgid "Set the authors" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +msgid "Set the comment" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "Usage:" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "mybook.epub" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +msgid "" +"\n" +"%prog [options] key\n" +"\n" +"Fetch metadata for books from isndb.com. You can specify either the \n" +"books ISBN ID or its title and author. If you specify the title and author,\n" +"then more than one book may be returned.\n" +"\n" +"key is the account key you generate after signing up for a free account from " +"isbndb.com.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +msgid "The ISBN ID of the book you want metadata for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +msgid "The author whoose book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +msgid "The title of the book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +msgid "The publisher of the book to search for." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 msgid "" "Could not fetch cover as server is experiencing high load. Please try again " @@ -405,6 +677,46 @@ msgstr " nicht gefunden." msgid "Server error. Try again later." msgstr "Server-Fehler. Bitte versuchen Sie es später wieder." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +msgid "" +"\n" +"%prog [options] ISBN\n" +"\n" +"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +msgid "Usage: %s file.lit" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +msgid "Cover saved to" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +msgid "Usage: pdf-meta file.pdf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +msgid "No filename specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +msgid "%prog [options] myebook.mobi" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +msgid "Output directory. Defaults to current directory." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +msgid "Raw MOBI HTML saved in" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +msgid "OEB ebook created in" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Format wählen" @@ -1573,6 +1885,10 @@ msgstr "Formate" msgid "Book <font face=\"serif\">%s</font> of %s." msgstr "Buch <font face=\"serif\">%s</font> von %s." +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +msgid "Double click to <b>edit</b> me<br><br>" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 msgid "Author(s)" @@ -2019,12 +2335,33 @@ msgstr "Feed unbekannt" msgid "Untitled article" msgstr "Artikel ohne Titel" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:35 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +msgid "" +"%%prog [options] ARG\n" +"\n" +"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" +"fetches the article contents organized in a nice hierarchy.\n" +"\n" +"ARG can be one of:\n" +"\n" +"file name - %%prog will try to load a recipe from the file\n" +"\n" +"builtin recipe title - %%prog will load the builtin recipe and use it to " +"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" +"\n" +"recipe as a string - %%prog will load the recipe directly from the string " +"arg.\n" +"\n" +"Available builtin recipes are:\n" +"%s\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" "Einstellungen für web2disk (um von Feeds verlinkte Webseiten abzurufen)" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:38 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -2038,11 +2375,11 @@ msgstr "" "Wenn Sie diese Option wählen, wird jedes Argument %prog ignoriert und die " "Voreinstellung zum Download der Feeds verwendet. " -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:42 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "Mehr Wörter bei der weiteren Verarbeitung angeben." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." @@ -2050,17 +2387,17 @@ msgstr "" "Der Titel für dieses Rezept. Wird als Titel für alle eBooks benutzt, die aus " "den geladenen Feeds erstellt wurden." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:45 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" "Benutzername für Webseiten, die einen Login für den Inhaltsabruf benötigen." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" "Passwort für Webseiten, die einen Login für den Inhaltsabruf benötigen." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:49 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" @@ -2068,7 +2405,7 @@ msgstr "" "Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. " "Voreinstellung %default" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." @@ -2076,15 +2413,15 @@ msgstr "" "Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. " "Voreinstellung auf das aktuelle Verzeichnis." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "Fortschrittsbalken nicht anzeigen" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "Ausführliche Ausgabe, hilfreich zur Fehlerbeseitigung." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." @@ -2092,8 +2429,8 @@ msgstr "" "Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed " "und lädt höchstens 2 Feeds." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:82 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:86 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "Rufe Feeds ab..." @@ -2183,6 +2520,71 @@ msgstr "Laden der Artikel schlug fehl: %s" msgid "Fetching feed" msgstr "Rufe Feed ab" +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +msgid "" +"%prog URL\n" +"\n" +"Where URL is for example http://google.com" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +msgid "Base directory into which URL is saved. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +msgid "" +"Timeout in seconds to wait for a response from the server. Default: %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +msgid "" +"Maximum number of levels to recurse i.e. depth of links to follow. Default %" +"default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +msgid "" +"The maximum number of files to download. This only applies to files from <a " +"href> tags. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +msgid "" +"Minimum interval in seconds between consecutive fetches. Default is %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +msgid "" +"The character encoding for the websites you are trying to download. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +msgid "" +"Only links that match this regular expression will be followed. This option " +"can be specified multiple times, in which case as long as a link matches any " +"one regexp, it will be followed. By default all links are followed." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +msgid "" +"Any link that matches this regular expression will be ignored. This option " +"can be specified multiple times, in which case as long as any regexp matches " +"a link, it will be ignored.By default, no links are ignored. If both --" +"filter-regexp and --match-regexp are specified, then --filter-regexp is " +"applied first." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +msgid "Do not download CSS stylesheets." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +msgid "Show detailed output information. Useful for debugging" +msgstr "" + #~ msgid "Available user profiles" #~ msgstr "Verfügbare Benutzerprofile" diff --git a/src/libprs500/translations/es.po b/src/libprs500/translations/es.po index 7a8f92bb07..db1c16fa6c 100644 --- a/src/libprs500/translations/es.po +++ b/src/libprs500/translations/es.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-03-31 15:53+PDT\n" +"POT-Creation-Date: 2008-04-01 09:18+PDT\n" "PO-Revision-Date: 2007-11-16 09:21+0100\n" "Last-Translator: libprs500\n" "Language-Team: Spanish\n" @@ -145,6 +145,12 @@ msgstr "" "que se añaden los archivos HTML al LRF. El archivo .opf debe estar en la " "misma carpeta que el archivo HTML base." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 +msgid "" +"Minimum paragraph indent (the indent of the first line of a paragraph) in " +"pts. Default: %default" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 msgid "" "Increase the font size by 2 * FONT_DELTA pts and the line spacing by " @@ -300,6 +306,14 @@ msgstr "Familia de fuentes sans-serif a incrustar." msgid "The monospace family of fonts to embed" msgstr "Familia de fuentes monoespaiadas a incrustar." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +msgid "Be verbose while processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +msgid "Convert to LRS" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " @@ -308,6 +322,37 @@ msgstr "" "Minimizar el uso de memoria, a cambio de mayor tiempo de procesador. Usar " "esta opción si el equipo no dispone de mucha RAM." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +msgid "" +"Specify the character encoding of the source file. If the output LRF file " +"contains strange characters, try changing this option. A common encoding for " +"files from windows computers is cp-1252. Another common choice is utf-8. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +msgid "" +"any2lrf [options] myfile\n" +"\n" +"Convert any ebook format into LRF. Supported formats are:\n" +"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " +"RAR or\n" +"ZIP archive, looking for an ebook inside the archive.\n" +" " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +msgid "No file to convert specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +msgid "" +"Usage: %prog [options] mybook.epub\n" +" \n" +" \n" +"%prog converts mybook.epub to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "" @@ -320,52 +365,213 @@ msgstr "" msgid "Fetching of recipe failed: " msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +msgid "\tBook Designer file detected." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +msgid "\tParsing HTML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +msgid "\tBaen file detected. Re-parsing..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +msgid "Written preprocessed HTML to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +msgid "Processing %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +msgid "\tConverting to BBeB..." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 msgid "Could not parse file: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:546 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +msgid "Failed to parse link %s %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +msgid "Cannot add link %s to TOC" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +msgid "Unable to process image %s. Error: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +msgid "Unable to process interlaced PNG %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +msgid "" +"Could not process image: %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +msgid "An error occurred while processing a table: %s. Ignoring table markup." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +msgid "" +"Bad table:\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +msgid "Table has cell that is too large" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +msgid "" +"You have to save the website %s as an html file first and then run html2lrf " +"on it." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1740 +msgid "Cannot read from: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1869 +msgid "Failed to process opf file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1875 +msgid "" +"Usage: %prog [options] mybook.html\n" +"\n" +"\n" +"%prog converts mybook.html to mybook.lrf. \n" +"%prog follows all links in mybook.html that point \n" +"to local files recursively. Thus, you can use it to \n" +"convert a whole tree of HTML files." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +msgid "" +"Usage: %prog [options] mybook.lit\n" +"\n" +"\n" +"%prog converts mybook.lit to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +msgid "" +"%prog [options] file.lrs\n" +"Compile an LRS file into an LRF file." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +msgid "Path to output file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +msgid "Verbose processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +msgid "Convert LRS to LRS, useful for debugging." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +msgid "" +"%prog [options] mybook.lrf\n" +"\n" +"\n" +"Show/edit the metadata in an LRF file.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 msgid "Set the book title" msgstr "Insertar el nombre del libro" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 msgid "Set sort key for the title" msgstr "Insertar la clave de orden por título" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 msgid "Set the author" msgstr "Insertar el autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 msgid "Set sort key for the author" msgstr "Insertar la clave de orden por autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "Categoria a la que pertenece el libro. Por ejemplo, Historia" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:557 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" msgstr "Ruta al archivo de imagen que se utilizará como miniatura" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:560 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 msgid "Path to a txt file containing the comment to be stored in the lrf file." msgstr "" "Ruta al archivo txt que contiene el comentaria a guardar en el archivo LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:564 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "Extraer la miniatura del archivo LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "Insertar el ID del libro" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "No sé para qué sirve esto" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +msgid "" +"Usage: %prog [options] mybook.mobi|prc\n" +"\n" +"\n" +"%prog converts mybook.mobi to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +msgid "" +"%prog book.lrf\n" +"Convert an LRF file into an LRS (XML UTF-8 encoded) file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +msgid "Output LRS file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +msgid "Parsing LRF..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +msgid "Creating XML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +msgid "LRS written to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +msgid "" +"%prog [options] mybook.pdf\n" +"\n" +"\n" +"%prog converts mybook.pdf to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 msgid "" "Path to output directory in which to create the HTML file. Defaults to " @@ -380,6 +586,72 @@ msgstr "" msgid "You must specify a single PDF file." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +msgid "" +"%prog [options] mybook.rtf\n" +"\n" +"\n" +"%prog converts mybook.rtf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +msgid "" +"%prog [options] mybook.txt\n" +"\n" +"\n" +"%prog converts mybook.txt to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +msgid "Set the authors" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +msgid "Set the comment" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "Usage:" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "mybook.epub" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +msgid "" +"\n" +"%prog [options] key\n" +"\n" +"Fetch metadata for books from isndb.com. You can specify either the \n" +"books ISBN ID or its title and author. If you specify the title and author,\n" +"then more than one book may be returned.\n" +"\n" +"key is the account key you generate after signing up for a free account from " +"isbndb.com.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +msgid "The ISBN ID of the book you want metadata for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +msgid "The author whoose book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +msgid "The title of the book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +msgid "The publisher of the book to search for." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 msgid "" "Could not fetch cover as server is experiencing high load. Please try again " @@ -394,6 +666,46 @@ msgstr "" msgid "Server error. Try again later." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +msgid "" +"\n" +"%prog [options] ISBN\n" +"\n" +"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +msgid "Usage: %s file.lit" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +msgid "Cover saved to" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +msgid "Usage: pdf-meta file.pdf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +msgid "No filename specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +msgid "%prog [options] myebook.mobi" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +msgid "Output directory. Defaults to current directory." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +msgid "Raw MOBI HTML saved in" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +msgid "OEB ebook created in" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Elegir formato" @@ -1503,6 +1815,10 @@ msgstr "Formatos" msgid "Book <font face=\"serif\">%s</font> of %s." msgstr "Libro <font face=\"serif\">%s</font> de %s." +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +msgid "Double click to <b>edit</b> me<br><br>" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 msgid "Author(s)" @@ -1924,11 +2240,32 @@ msgstr "" msgid "Untitled article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:35 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +msgid "" +"%%prog [options] ARG\n" +"\n" +"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" +"fetches the article contents organized in a nice hierarchy.\n" +"\n" +"ARG can be one of:\n" +"\n" +"file name - %%prog will try to load a recipe from the file\n" +"\n" +"builtin recipe title - %%prog will load the builtin recipe and use it to " +"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" +"\n" +"recipe as a string - %%prog will load the recipe directly from the string " +"arg.\n" +"\n" +"Available builtin recipes are:\n" +"%s\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:38 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -1937,52 +2274,52 @@ msgid "" "recipe is used to download the feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:42 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:45 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:49 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:82 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:86 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "" @@ -2067,6 +2404,71 @@ msgstr "" msgid "Fetching feed" msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +msgid "" +"%prog URL\n" +"\n" +"Where URL is for example http://google.com" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +msgid "Base directory into which URL is saved. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +msgid "" +"Timeout in seconds to wait for a response from the server. Default: %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +msgid "" +"Maximum number of levels to recurse i.e. depth of links to follow. Default %" +"default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +msgid "" +"The maximum number of files to download. This only applies to files from <a " +"href> tags. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +msgid "" +"Minimum interval in seconds between consecutive fetches. Default is %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +msgid "" +"The character encoding for the websites you are trying to download. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +msgid "" +"Only links that match this regular expression will be followed. This option " +"can be specified multiple times, in which case as long as a link matches any " +"one regexp, it will be followed. By default all links are followed." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +msgid "" +"Any link that matches this regular expression will be ignored. This option " +"can be specified multiple times, in which case as long as any regexp matches " +"a link, it will be ignored.By default, no links are ignored. If both --" +"filter-regexp and --match-regexp are specified, then --filter-regexp is " +"applied first." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +msgid "Do not download CSS stylesheets." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +msgid "Show detailed output information. Useful for debugging" +msgstr "" + #~ msgid "%s is not available in LRF format. Please convert it first." #~ msgstr "\"%s\" no es un archivo LRF. Conviértalo primero." diff --git a/src/libprs500/translations/fr.po b/src/libprs500/translations/fr.po index bc5bde4766..b196ee240c 100644 --- a/src/libprs500/translations/fr.po +++ b/src/libprs500/translations/fr.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: libprs500 0.4.22\n" -"POT-Creation-Date: 2008-03-31 15:53+PDT\n" +"POT-Creation-Date: 2008-04-01 09:18+PDT\n" "PO-Revision-Date: 2008-01-20 09:59+0100\n" "Last-Translator: FixB <fix.bornes@free.fr>\n" "Language-Team: fr\n" @@ -140,6 +140,12 @@ msgstr "" "les fichiers HTML sont ajoutés au LRF. Le fichier .opt doit être dans le " "même répertoire que les fichiers HTML de base." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 +msgid "" +"Minimum paragraph indent (the indent of the first line of a paragraph) in " +"pts. Default: %default" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 msgid "" "Increase the font size by 2 * FONT_DELTA pts and the line spacing by " @@ -298,6 +304,14 @@ msgstr "La famille de police sans-serif à inclure" msgid "The monospace family of fonts to embed" msgstr "La famille de police monospace à inclure" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +msgid "Be verbose while processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +msgid "Convert to LRS" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " @@ -307,6 +321,37 @@ msgstr "" "long. N'utilisez cette option que si vous avez des problèmes de mémoire " "disponible." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +msgid "" +"Specify the character encoding of the source file. If the output LRF file " +"contains strange characters, try changing this option. A common encoding for " +"files from windows computers is cp-1252. Another common choice is utf-8. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +msgid "" +"any2lrf [options] myfile\n" +"\n" +"Convert any ebook format into LRF. Supported formats are:\n" +"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " +"RAR or\n" +"ZIP archive, looking for an ebook inside the archive.\n" +" " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +msgid "No file to convert specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +msgid "" +"Usage: %prog [options] mybook.epub\n" +" \n" +" \n" +"%prog converts mybook.epub to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "" @@ -319,53 +364,214 @@ msgstr "" msgid "Fetching of recipe failed: " msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +msgid "\tBook Designer file detected." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +msgid "\tParsing HTML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +msgid "\tBaen file detected. Re-parsing..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +msgid "Written preprocessed HTML to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +msgid "Processing %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +msgid "\tConverting to BBeB..." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 msgid "Could not parse file: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:546 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +msgid "Failed to parse link %s %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +msgid "Cannot add link %s to TOC" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +msgid "Unable to process image %s. Error: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +msgid "Unable to process interlaced PNG %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +msgid "" +"Could not process image: %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +msgid "An error occurred while processing a table: %s. Ignoring table markup." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +msgid "" +"Bad table:\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +msgid "Table has cell that is too large" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +msgid "" +"You have to save the website %s as an html file first and then run html2lrf " +"on it." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1740 +msgid "Cannot read from: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1869 +msgid "Failed to process opf file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1875 +msgid "" +"Usage: %prog [options] mybook.html\n" +"\n" +"\n" +"%prog converts mybook.html to mybook.lrf. \n" +"%prog follows all links in mybook.html that point \n" +"to local files recursively. Thus, you can use it to \n" +"convert a whole tree of HTML files." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +msgid "" +"Usage: %prog [options] mybook.lit\n" +"\n" +"\n" +"%prog converts mybook.lit to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +msgid "" +"%prog [options] file.lrs\n" +"Compile an LRS file into an LRF file." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +msgid "Path to output file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +msgid "Verbose processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +msgid "Convert LRS to LRS, useful for debugging." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +msgid "" +"%prog [options] mybook.lrf\n" +"\n" +"\n" +"Show/edit the metadata in an LRF file.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 msgid "Set the book title" msgstr "Définit le titre du livre" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 msgid "Set sort key for the title" msgstr "Définit la clé de tri pour le titre" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 msgid "Set the author" msgstr "Définit l'auteur" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 msgid "Set sort key for the author" msgstr "Définit la clef de tri pour l'auteur" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "La catégorie à laquelle le livre appartient. Exemple : Histoire" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:557 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" msgstr "Chemin d'une image qui sera utilisée comme vignette pour ces fichiers" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:560 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 msgid "Path to a txt file containing the comment to be stored in the lrf file." msgstr "" "Chemin d'un fichier texte contenant les commentaires qui seront inclus dans " "le fichier lrf." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:564 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "Extrait la vignette du fichier LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "Définit l'ID du livre" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "Je ne sais pas à quoi cela sert" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +msgid "" +"Usage: %prog [options] mybook.mobi|prc\n" +"\n" +"\n" +"%prog converts mybook.mobi to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +msgid "" +"%prog book.lrf\n" +"Convert an LRF file into an LRS (XML UTF-8 encoded) file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +msgid "Output LRS file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +msgid "Parsing LRF..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +msgid "Creating XML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +msgid "LRS written to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +msgid "" +"%prog [options] mybook.pdf\n" +"\n" +"\n" +"%prog converts mybook.pdf to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 msgid "" "Path to output directory in which to create the HTML file. Defaults to " @@ -380,6 +586,72 @@ msgstr "" msgid "You must specify a single PDF file." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +msgid "" +"%prog [options] mybook.rtf\n" +"\n" +"\n" +"%prog converts mybook.rtf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +msgid "" +"%prog [options] mybook.txt\n" +"\n" +"\n" +"%prog converts mybook.txt to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +msgid "Set the authors" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +msgid "Set the comment" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "Usage:" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "mybook.epub" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +msgid "" +"\n" +"%prog [options] key\n" +"\n" +"Fetch metadata for books from isndb.com. You can specify either the \n" +"books ISBN ID or its title and author. If you specify the title and author,\n" +"then more than one book may be returned.\n" +"\n" +"key is the account key you generate after signing up for a free account from " +"isbndb.com.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +msgid "The ISBN ID of the book you want metadata for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +msgid "The author whoose book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +msgid "The title of the book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +msgid "The publisher of the book to search for." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 msgid "" "Could not fetch cover as server is experiencing high load. Please try again " @@ -396,6 +668,46 @@ msgstr " pas trouvé." msgid "Server error. Try again later." msgstr "Erreur Serveur. Veuillez essayer ultérieurement." +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +msgid "" +"\n" +"%prog [options] ISBN\n" +"\n" +"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +msgid "Usage: %s file.lit" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +msgid "Cover saved to" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +msgid "Usage: pdf-meta file.pdf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +msgid "No filename specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +msgid "%prog [options] myebook.mobi" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +msgid "Output directory. Defaults to current directory." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +msgid "Raw MOBI HTML saved in" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +msgid "OEB ebook created in" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Choisir le format" @@ -1518,6 +1830,10 @@ msgstr "Formats" msgid "Book <font face=\"serif\">%s</font> of %s." msgstr "Livre <font face=\"serif\">%s</font> of %s." +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +msgid "Double click to <b>edit</b> me<br><br>" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 msgid "Author(s)" @@ -1947,11 +2263,32 @@ msgstr "" msgid "Untitled article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:35 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +msgid "" +"%%prog [options] ARG\n" +"\n" +"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" +"fetches the article contents organized in a nice hierarchy.\n" +"\n" +"ARG can be one of:\n" +"\n" +"file name - %%prog will try to load a recipe from the file\n" +"\n" +"builtin recipe title - %%prog will load the builtin recipe and use it to " +"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" +"\n" +"recipe as a string - %%prog will load the recipe directly from the string " +"arg.\n" +"\n" +"Available builtin recipes are:\n" +"%s\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:38 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -1960,52 +2297,52 @@ msgid "" "recipe is used to download the feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:42 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:45 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:49 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:82 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:86 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "" @@ -2090,6 +2427,71 @@ msgstr "" msgid "Fetching feed" msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +msgid "" +"%prog URL\n" +"\n" +"Where URL is for example http://google.com" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +msgid "Base directory into which URL is saved. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +msgid "" +"Timeout in seconds to wait for a response from the server. Default: %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +msgid "" +"Maximum number of levels to recurse i.e. depth of links to follow. Default %" +"default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +msgid "" +"The maximum number of files to download. This only applies to files from <a " +"href> tags. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +msgid "" +"Minimum interval in seconds between consecutive fetches. Default is %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +msgid "" +"The character encoding for the websites you are trying to download. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +msgid "" +"Only links that match this regular expression will be followed. This option " +"can be specified multiple times, in which case as long as a link matches any " +"one regexp, it will be followed. By default all links are followed." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +msgid "" +"Any link that matches this regular expression will be ignored. This option " +"can be specified multiple times, in which case as long as any regexp matches " +"a link, it will be ignored.By default, no links are ignored. If both --" +"filter-regexp and --match-regexp are specified, then --filter-regexp is " +"applied first." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +msgid "Do not download CSS stylesheets." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +msgid "Show detailed output information. Useful for debugging" +msgstr "" + #~ msgid "" #~ "Set the default timeout for network fetches (i.e. anytime libprs500 foes " #~ "out to the internet to get information)" diff --git a/src/libprs500/translations/it.po b/src/libprs500/translations/it.po index e2d49cec79..879c136b8c 100644 --- a/src/libprs500/translations/it.po +++ b/src/libprs500/translations/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: it\n" -"POT-Creation-Date: 2008-03-31 15:53+PDT\n" +"POT-Creation-Date: 2008-04-01 09:18+PDT\n" "PO-Revision-Date: 14:08, 1/4/2008\n" "Last-Translator: Iacopo Benesperi <iacchi@iacchi.org>\n" "Language-Team: italiano\n" @@ -79,7 +79,8 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:108 msgid "Output file name. Default is derived from input filename" -msgstr "Nome del file in uscita. Il nome predefinito è preso dal file in ingresso" +msgstr "" +"Nome del file in uscita. Il nome predefinito è preso dal file in ingresso" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:110 msgid "" @@ -109,7 +110,8 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:118 msgid "Set the space between words in pts. Default is %default" -msgstr "Imposta lo spazio tra le parole in punti. Il valore predefinito è %default" +msgstr "" +"Imposta lo spazio tra le parole in punti. Il valore predefinito è %default" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:120 msgid "Separate paragraphs by blank lines." @@ -117,7 +119,8 @@ msgstr "Separa i paragrafi con linee bianche" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:122 msgid "Add a header to all the pages with title and author." -msgstr "Aggiunge a tutte le pagine un'intestazione contenente il titolo e l'autore" +msgstr "" +"Aggiunge a tutte le pagine un'intestazione contenente il titolo e l'autore" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:124 msgid "" @@ -145,6 +148,12 @@ msgstr "" "HTML devono essere aggiunti al file LRF. Il file OPF deve essere nella " "stessa cartella del file HTML principale" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 +msgid "" +"Minimum paragraph indent (the indent of the first line of a paragraph) in " +"pts. Default: %default" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 msgid "" "Increase the font size by 2 * FONT_DELTA pts and the line spacing by " @@ -208,7 +217,8 @@ msgstr "" "ignorati. Predefinita: %default" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:169 -msgid "Prevent the automatic insertion of page breaks before detected chapters." +msgid "" +"Prevent the automatic insertion of page breaks before detected chapters." msgstr "" "Previene l'inserimento automatico di interruzioni di pagina prima dei " "capitoli individuati" @@ -241,7 +251,8 @@ msgstr "" "perciò ignorata se la pagina corrente ha solo pochi elementi" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:186 -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 "" "Forza un'interruzione di pagina prima dei tag i cui nomi corrispondono a " "questa espressione regolare" @@ -303,6 +314,14 @@ msgstr "La famiglia di caratteri senza grazie da includere" msgid "The monospace family of fonts to embed" msgstr "La famiglia di caratteri a spaziatura fissa da includere" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +msgid "Be verbose while processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +msgid "Convert to LRS" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " @@ -311,6 +330,37 @@ msgstr "" "Minimizza l'uso di memoria al costo di un maggior tempo di processamento. " "Usare questa opzione se si è su una macchina a corto di memoria" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +msgid "" +"Specify the character encoding of the source file. If the output LRF file " +"contains strange characters, try changing this option. A common encoding for " +"files from windows computers is cp-1252. Another common choice is utf-8. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +msgid "" +"any2lrf [options] myfile\n" +"\n" +"Convert any ebook format into LRF. Supported formats are:\n" +"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " +"RAR or\n" +"ZIP archive, looking for an ebook inside the archive.\n" +" " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +msgid "No file to convert specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +msgid "" +"Usage: %prog [options] mybook.epub\n" +" \n" +" \n" +"%prog converts mybook.epub to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "Opzioni per controllare il comportamento di feeds2disk" @@ -323,51 +373,214 @@ msgstr "Opzioni per controllare il comportamento di html2lrf" msgid "Fetching of recipe failed: " msgstr "Scaricamento della formula fallito: " +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +msgid "\tBook Designer file detected." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +msgid "\tParsing HTML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +msgid "\tBaen file detected. Re-parsing..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +msgid "Written preprocessed HTML to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +msgid "Processing %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +msgid "\tConverting to BBeB..." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 msgid "Could not parse file: %s" msgstr "Impossibile analizzare il file: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:546 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +msgid "Failed to parse link %s %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +msgid "Cannot add link %s to TOC" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +msgid "Unable to process image %s. Error: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +msgid "Unable to process interlaced PNG %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +msgid "" +"Could not process image: %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +msgid "An error occurred while processing a table: %s. Ignoring table markup." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +msgid "" +"Bad table:\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +msgid "Table has cell that is too large" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +msgid "" +"You have to save the website %s as an html file first and then run html2lrf " +"on it." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1740 +msgid "Cannot read from: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1869 +msgid "Failed to process opf file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1875 +msgid "" +"Usage: %prog [options] mybook.html\n" +"\n" +"\n" +"%prog converts mybook.html to mybook.lrf. \n" +"%prog follows all links in mybook.html that point \n" +"to local files recursively. Thus, you can use it to \n" +"convert a whole tree of HTML files." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +msgid "" +"Usage: %prog [options] mybook.lit\n" +"\n" +"\n" +"%prog converts mybook.lit to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +msgid "" +"%prog [options] file.lrs\n" +"Compile an LRS file into an LRF file." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +msgid "Path to output file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +msgid "Verbose processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +msgid "Convert LRS to LRS, useful for debugging." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +msgid "" +"%prog [options] mybook.lrf\n" +"\n" +"\n" +"Show/edit the metadata in an LRF file.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 msgid "Set the book title" msgstr "Imposta il titolo del libro" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 msgid "Set sort key for the title" msgstr "Imposta la chiave per la classificazione del titolo" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 msgid "Set the author" msgstr "Imposta l'autore" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 msgid "Set sort key for the author" msgstr "Imposta la chiave per la classificazione dell'autore" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "La categoria a cui questo libro appartiene. Es: Storia" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:557 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" -msgstr "Percorso a un'immagine che verrà impostata come miniatura di questo file" +msgstr "" +"Percorso a un'immagine che verrà impostata come miniatura di questo file" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:560 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 msgid "Path to a txt file containing the comment to be stored in the lrf file." -msgstr "Percorso a un file TXT contenente il commento che verrà incluso nel file LRF" +msgstr "" +"Percorso a un file TXT contenente il commento che verrà incluso nel file LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:564 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "Estrae la miniatura da un file LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "Imposta l'ID del libro" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "Non so a cosa serve questo" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +msgid "" +"Usage: %prog [options] mybook.mobi|prc\n" +"\n" +"\n" +"%prog converts mybook.mobi to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +msgid "" +"%prog book.lrf\n" +"Convert an LRF file into an LRS (XML UTF-8 encoded) file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +msgid "Output LRS file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +msgid "Parsing LRF..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +msgid "Creating XML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +msgid "LRS written to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +msgid "" +"%prog [options] mybook.pdf\n" +"\n" +"\n" +"%prog converts mybook.pdf to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 msgid "" "Path to output directory in which to create the HTML file. Defaults to " @@ -384,6 +597,72 @@ msgstr "Sii più prolisso" msgid "You must specify a single PDF file." msgstr "È necessario specificare un singolo file PDF" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +msgid "" +"%prog [options] mybook.rtf\n" +"\n" +"\n" +"%prog converts mybook.rtf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +msgid "" +"%prog [options] mybook.txt\n" +"\n" +"\n" +"%prog converts mybook.txt to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +msgid "Set the authors" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +msgid "Set the comment" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "Usage:" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "mybook.epub" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +msgid "" +"\n" +"%prog [options] key\n" +"\n" +"Fetch metadata for books from isndb.com. You can specify either the \n" +"books ISBN ID or its title and author. If you specify the title and author,\n" +"then more than one book may be returned.\n" +"\n" +"key is the account key you generate after signing up for a free account from " +"isbndb.com.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +msgid "The ISBN ID of the book you want metadata for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +msgid "The author whoose book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +msgid "The title of the book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +msgid "The publisher of the book to search for." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 msgid "" "Could not fetch cover as server is experiencing high load. Please try again " @@ -400,6 +679,46 @@ msgstr " non trovato" msgid "Server error. Try again later." msgstr "Errore del server. Ritentare più tardi" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +msgid "" +"\n" +"%prog [options] ISBN\n" +"\n" +"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +msgid "Usage: %s file.lit" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +msgid "Cover saved to" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +msgid "Usage: pdf-meta file.pdf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +msgid "No filename specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +msgid "%prog [options] myebook.mobi" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +msgid "Output directory. Defaults to current directory." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +msgid "Raw MOBI HTML saved in" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +msgid "OEB ebook created in" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Scegliere il formato" @@ -588,7 +907,8 @@ msgstr "Nessun formato disponibile" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:82 msgid "Cannot convert %s as this book has no supported formats" -msgstr "Impossibile convertire %s perché questo libro non ha formati supportati" +msgstr "" +"Impossibile convertire %s perché questo libro non ha formati supportati" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:86 msgid "Choose the format to convert into LRF" @@ -732,7 +1052,8 @@ msgstr "Ca&mbia l'immagine di copertina:" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:609 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:334 msgid "Browse for an image to use as the cover of this book." -msgstr "Sfoglia per trovare un'immagine da usare come copertina per questo libro" +msgstr "" +"Sfoglia per trovare un'immagine da usare come copertina per questo libro" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:611 msgid "Use cover from &source file" @@ -1099,8 +1420,10 @@ msgid "Fetch cover image from server" msgstr "Scarica immagine di copertina dal server" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:337 -msgid "Change the username and/or password for your account at LibraryThing.com" -msgstr "Cambia il nome utente e/o password del proprio account su LibraryThing.com" +msgid "" +"Change the username and/or password for your account at LibraryThing.com" +msgstr "" +"Cambia il nome utente e/o password del proprio account su LibraryThing.com" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:338 msgid "Change password" @@ -1551,6 +1874,10 @@ msgstr "Formati" msgid "Book <font face=\"serif\">%s</font> of %s." msgstr "Libro <font face=\"serif\">%s</font> di %s" +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +msgid "Double click to <b>edit</b> me<br><br>" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 msgid "Author(s)" @@ -1998,13 +2325,34 @@ msgstr "Feed sconosciuto" msgid "Untitled article" msgstr "Articolo senza titolo" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:35 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +msgid "" +"%%prog [options] ARG\n" +"\n" +"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" +"fetches the article contents organized in a nice hierarchy.\n" +"\n" +"ARG can be one of:\n" +"\n" +"file name - %%prog will try to load a recipe from the file\n" +"\n" +"builtin recipe title - %%prog will load the builtin recipe and use it to " +"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" +"\n" +"recipe as a string - %%prog will load the recipe directly from the string " +"arg.\n" +"\n" +"Available builtin recipes are:\n" +"%s\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" "Opzioni per controllare web2disk (usato per scaricare i siti collegati ai " "feed)" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:38 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -2018,11 +2366,11 @@ msgstr "" "Se si specifica questa opzione, ogni indice per %prog viene ignorato e viene " "usata una formula predefinita per scaricare i feed." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:42 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "Sii più prolisso durante il processamento" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." @@ -2030,19 +2378,19 @@ msgstr "" "Il titolo per questa formula. Usato come titolo per ogni libro creato da " "questi feed scaricati" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:45 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" "Nome utente per i siti che richiedono un'identificazione per accedere ai " "contenuti" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" "Password per i siti che richiedono un'identificazione per accedere ai " "contenuti" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:49 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" @@ -2050,21 +2398,22 @@ msgstr "" "Numero di livelli di link da seguire nelle pagine web che sono collegate ai " "feed. Predefinito: %default" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." -msgstr "La cartella in cui salvare i feed scaricati. Perdefinita: cartella corrente" +msgstr "" +"La cartella in cui salvare i feed scaricati. Perdefinita: cartella corrente" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "Non mostrare la barra di progresso" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "Output molto prolisso, utile per il debugging" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." @@ -2072,8 +2421,8 @@ msgstr "" "Utile per lo sviluppo delle formule. Forza max_articles_per_feed a 2 e " "scarica al massimo 2 feed" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:82 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:86 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "Scaricamento feed..." @@ -2105,7 +2454,8 @@ msgstr "\tLink falliti:" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:549 msgid "Could not fetch article. Run with --debug to see the reason" -msgstr "Impossibile scaricare l'articolo. Eseguire con --debug per vedere la ragione" +msgstr "" +"Impossibile scaricare l'articolo. Eseguire con --debug per vedere la ragione" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:571 msgid "Got feeds from index page" @@ -2161,3 +2511,67 @@ msgstr "Scaricamento fallito dell'articolo: %s" msgid "Fetching feed" msgstr "Scaricamento feed" +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +msgid "" +"%prog URL\n" +"\n" +"Where URL is for example http://google.com" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +msgid "Base directory into which URL is saved. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +msgid "" +"Timeout in seconds to wait for a response from the server. Default: %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +msgid "" +"Maximum number of levels to recurse i.e. depth of links to follow. Default %" +"default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +msgid "" +"The maximum number of files to download. This only applies to files from <a " +"href> tags. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +msgid "" +"Minimum interval in seconds between consecutive fetches. Default is %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +msgid "" +"The character encoding for the websites you are trying to download. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +msgid "" +"Only links that match this regular expression will be followed. This option " +"can be specified multiple times, in which case as long as a link matches any " +"one regexp, it will be followed. By default all links are followed." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +msgid "" +"Any link that matches this regular expression will be ignored. This option " +"can be specified multiple times, in which case as long as any regexp matches " +"a link, it will be ignored.By default, no links are ignored. If both --" +"filter-regexp and --match-regexp are specified, then --filter-regexp is " +"applied first." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +msgid "Do not download CSS stylesheets." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +msgid "Show detailed output information. Useful for debugging" +msgstr "" diff --git a/src/libprs500/translations/sl.po b/src/libprs500/translations/sl.po index 6436f02e0c..b7e4c7d9e1 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: 2008-03-31 15:53+PDT\n" +"POT-Creation-Date: 2008-04-01 09:18+PDT\n" "PO-Revision-Date: 2007-11-08 14:39+PST\n" "Last-Translator: Automatically generated\n" "Language-Team: sl\n" @@ -121,6 +121,12 @@ msgid "" "directory as the base HTML file." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 +msgid "" +"Minimum paragraph indent (the indent of the first line of a paragraph) in " +"pts. Default: %default" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 msgid "" "Increase the font size by 2 * FONT_DELTA pts and the line spacing by " @@ -240,12 +246,51 @@ msgstr "" msgid "The monospace family of fonts to embed" msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +msgid "Be verbose while processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +msgid "Convert to LRS" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " "option if you are on a memory constrained machine." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +msgid "" +"Specify the character encoding of the source file. If the output LRF file " +"contains strange characters, try changing this option. A common encoding for " +"files from windows computers is cp-1252. Another common choice is utf-8. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +msgid "" +"any2lrf [options] myfile\n" +"\n" +"Convert any ebook format into LRF. Supported formats are:\n" +"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " +"RAR or\n" +"ZIP archive, looking for an ebook inside the archive.\n" +" " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +msgid "No file to convert specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +msgid "" +"Usage: %prog [options] mybook.epub\n" +" \n" +" \n" +"%prog converts mybook.epub to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "" @@ -258,51 +303,212 @@ msgstr "" msgid "Fetching of recipe failed: " msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +msgid "\tBook Designer file detected." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +msgid "\tParsing HTML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +msgid "\tBaen file detected. Re-parsing..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +msgid "Written preprocessed HTML to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +msgid "Processing %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +msgid "\tConverting to BBeB..." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 msgid "Could not parse file: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:546 -msgid "Set the book title" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +msgid "Failed to parse link %s %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +msgid "Cannot add link %s to TOC" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +msgid "Unable to process image %s. Error: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +msgid "Unable to process interlaced PNG %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +msgid "" +"Could not process image: %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +msgid "An error occurred while processing a table: %s. Ignoring table markup." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +msgid "" +"Bad table:\n" +"%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +msgid "Table has cell that is too large" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +msgid "" +"You have to save the website %s as an html file first and then run html2lrf " +"on it." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1740 +msgid "Cannot read from: %s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1869 +msgid "Failed to process opf file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1875 +msgid "" +"Usage: %prog [options] mybook.html\n" +"\n" +"\n" +"%prog converts mybook.html to mybook.lrf. \n" +"%prog follows all links in mybook.html that point \n" +"to local files recursively. Thus, you can use it to \n" +"convert a whole tree of HTML files." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +msgid "" +"Usage: %prog [options] mybook.lit\n" +"\n" +"\n" +"%prog converts mybook.lit to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +msgid "" +"%prog [options] file.lrs\n" +"Compile an LRS file into an LRF file." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +msgid "Path to output file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +msgid "Verbose processing" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +msgid "Convert LRS to LRS, useful for debugging." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +msgid "" +"%prog [options] mybook.lrf\n" +"\n" +"\n" +"Show/edit the metadata in an LRF file.\n" +"\n" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 -msgid "Set sort key for the title" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 +msgid "Set the book title" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 -msgid "Set the author" +msgid "Set sort key for the title" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 -msgid "Set sort key for the author" +msgid "Set the author" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +msgid "Set sort key for the author" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:557 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:560 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 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:564 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +msgid "" +"Usage: %prog [options] mybook.mobi|prc\n" +"\n" +"\n" +"%prog converts mybook.mobi to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +msgid "" +"%prog book.lrf\n" +"Convert an LRF file into an LRS (XML UTF-8 encoded) file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +msgid "Output LRS file" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +msgid "Parsing LRF..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +msgid "Creating XML..." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +msgid "LRS written to " +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +msgid "" +"%prog [options] mybook.pdf\n" +"\n" +"\n" +"%prog converts mybook.pdf to mybook.lrf" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 msgid "" "Path to output directory in which to create the HTML file. Defaults to " @@ -317,6 +523,72 @@ msgstr "" msgid "You must specify a single PDF file." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +msgid "" +"%prog [options] mybook.rtf\n" +"\n" +"\n" +"%prog converts mybook.rtf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +msgid "" +"%prog [options] mybook.txt\n" +"\n" +"\n" +"%prog converts mybook.txt to mybook.lrf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +msgid "Set the authors" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +msgid "Set the comment" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "Usage:" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +msgid "mybook.epub" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +msgid "" +"\n" +"%prog [options] key\n" +"\n" +"Fetch metadata for books from isndb.com. You can specify either the \n" +"books ISBN ID or its title and author. If you specify the title and author,\n" +"then more than one book may be returned.\n" +"\n" +"key is the account key you generate after signing up for a free account from " +"isbndb.com.\n" +"\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +msgid "The ISBN ID of the book you want metadata for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +msgid "The author whoose book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +msgid "The title of the book to search for." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +msgid "The publisher of the book to search for." +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 msgid "" "Could not fetch cover as server is experiencing high load. Please try again " @@ -331,6 +603,46 @@ msgstr "" msgid "Server error. Try again later." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +msgid "" +"\n" +"%prog [options] ISBN\n" +"\n" +"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +msgid "Usage: %s file.lit" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +msgid "Cover saved to" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +msgid "Usage: pdf-meta file.pdf" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +msgid "No filename specified." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +msgid "%prog [options] myebook.mobi" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +msgid "Output directory. Defaults to current directory." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +msgid "Raw MOBI HTML saved in" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +msgid "OEB ebook created in" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "" @@ -1423,6 +1735,10 @@ msgstr "" msgid "Book <font face=\"serif\">%s</font> of %s." msgstr "" +#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +msgid "Double click to <b>edit</b> me<br><br>" +msgstr "" + #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 #: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 msgid "Author(s)" @@ -1833,11 +2149,32 @@ msgstr "" msgid "Untitled article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:35 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +msgid "" +"%%prog [options] ARG\n" +"\n" +"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" +"fetches the article contents organized in a nice hierarchy.\n" +"\n" +"ARG can be one of:\n" +"\n" +"file name - %%prog will try to load a recipe from the file\n" +"\n" +"builtin recipe title - %%prog will load the builtin recipe and use it to " +"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" +"\n" +"recipe as a string - %%prog will load the recipe directly from the string " +"arg.\n" +"\n" +"Available builtin recipes are:\n" +"%s\n" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:38 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -1846,52 +2183,52 @@ msgid "" "recipe is used to download the feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:42 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:45 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:49 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:82 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:86 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "" @@ -1975,3 +2312,68 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:761 msgid "Fetching feed" msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +msgid "" +"%prog URL\n" +"\n" +"Where URL is for example http://google.com" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +msgid "Base directory into which URL is saved. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +msgid "" +"Timeout in seconds to wait for a response from the server. Default: %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +msgid "" +"Maximum number of levels to recurse i.e. depth of links to follow. Default %" +"default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +msgid "" +"The maximum number of files to download. This only applies to files from <a " +"href> tags. Default is %default" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +msgid "" +"Minimum interval in seconds between consecutive fetches. Default is %default " +"s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +msgid "" +"The character encoding for the websites you are trying to download. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +msgid "" +"Only links that match this regular expression will be followed. This option " +"can be specified multiple times, in which case as long as a link matches any " +"one regexp, it will be followed. By default all links are followed." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +msgid "" +"Any link that matches this regular expression will be ignored. This option " +"can be specified multiple times, in which case as long as any regexp matches " +"a link, it will be ignored.By default, no links are ignored. If both --" +"filter-regexp and --match-regexp are specified, then --filter-regexp is " +"applied first." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +msgid "Do not download CSS stylesheets." +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +msgid "Show detailed output information. Useful for debugging" +msgstr "" diff --git a/src/libprs500/web/feeds/main.py b/src/libprs500/web/feeds/main.py index 233c475761..5a31b0b06a 100644 --- a/src/libprs500/web/feeds/main.py +++ b/src/libprs500/web/feeds/main.py @@ -1,7 +1,9 @@ #!/usr/bin/env python __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' -'''''' +''' +CLI for downloading feeds. +''' import sys, os, logging from libprs500.web.feeds.recipes import get_builtin_recipe, compile_recipe, titles @@ -10,7 +12,7 @@ from libprs500.web.feeds.news import Profile2Recipe, BasicNewsRecipe from libprs500.ebooks.lrf.web.profiles import DefaultProfile, FullContentProfile -def option_parser(usage='''\ +def option_parser(usage=_('''\ %%prog [options] ARG %%prog parses an online source of articles, like an RSS or ATOM feed and @@ -26,7 +28,7 @@ recipe as a string - %%prog will load the recipe directly from the string arg. Available builtin recipes are: %s -'''%(unicode(list(titles))[1:-1])): +''')%(unicode(list(titles))[1:-1])): p = _option_parser(usage=usage) p.remove_option('--max-recursions') p.remove_option('--base-dir') diff --git a/src/libprs500/web/fetch/simple.py b/src/libprs500/web/fetch/simple.py index e762062db3..ac851a87f4 100644 --- a/src/libprs500/web/fetch/simple.py +++ b/src/libprs500/web/fetch/simple.py @@ -370,27 +370,30 @@ class RecursiveFetcher(object): def __del__(self): socket.setdefaulttimeout(self.default_timeout) -def option_parser(usage='%prog URL\n\nWhere URL is for example http://google.com'): +def option_parser(usage=_('%prog URL\n\nWhere URL is for example http://google.com')): parser = OptionParser(usage=usage) - parser.add_option('-d', '--base-dir', help='Base directory into which URL is saved. Default is %default', + parser.add_option('-d', '--base-dir', + help=_('Base directory into which URL is saved. Default is %default'), default='.', type='string', dest='dir') - parser.add_option('-t', '--timeout', help='Timeout in seconds to wait for a response from the server. Default: %default s', + parser.add_option('-t', '--timeout', + help=_('Timeout in seconds to wait for a response from the server. Default: %default s'), default=10.0, type='float', dest='timeout') - parser.add_option('-r', '--max-recursions', default=1, help='Maximum number of levels to recurse i.e. depth of links to follow. Default %default', + parser.add_option('-r', '--max-recursions', default=1, + help=_('Maximum number of levels to recurse i.e. depth of links to follow. Default %default'), type='int', dest='max_recursions') parser.add_option('-n', '--max-files', default=sys.maxint, type='int', dest='max_files', - help='The maximum number of files to download. This only applies to files from <a href> tags. Default is %default') + help=_('The maximum number of files to download. This only applies to files from <a href> tags. Default is %default')) parser.add_option('--delay', default=0, dest='delay', type='int', - help='Minimum interval in seconds between consecutive fetches. Default is %default s') + help=_('Minimum interval in seconds between consecutive fetches. Default is %default s')) parser.add_option('--encoding', default=None, - help='The character encoding for the websites you are trying to download. The default is to try and guess the encoding.') + help=_('The character encoding for the websites you are trying to download. The default is to try and guess the encoding.')) parser.add_option('--match-regexp', default=[], action='append', dest='match_regexps', - help='Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.') + help=_('Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.')) parser.add_option('--filter-regexp', default=[], action='append', dest='filter_regexps', - help='Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.') + help=_('Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.')) parser.add_option('--dont-download-stylesheets', action='store_true', default=False, - help='Do not download CSS stylesheets.', dest='no_stylesheets') - parser.add_option('--verbose', help='Show detailed output information. Useful for debugging', + help=_('Do not download CSS stylesheets.'), dest='no_stylesheets') + parser.add_option('--verbose', help=_('Show detailed output information. Useful for debugging'), default=False, action='store_true', dest='verbose') return parser