diff --git a/src/libprs500/ebooks/lrf/html/convert_to.py b/src/libprs500/ebooks/lrf/html/convert_to.py index 242b43d0df..677ab73ac8 100644 --- a/src/libprs500/ebooks/lrf/html/convert_to.py +++ b/src/libprs500/ebooks/lrf/html/convert_to.py @@ -20,7 +20,8 @@ from libprs500.ebooks.lrf.meta import get_metadata from libprs500.ebooks.lrf.parser import LRFDocument from libprs500.ebooks.metadata.opf import OPFCreator -from libprs500.ebooks.lrf.objects import PageAttr, BlockAttr +from libprs500.ebooks.lrf.objects import PageAttr, BlockAttr, TextAttr + class BlockStyle(object): @@ -74,7 +75,8 @@ class LRFConverter(object): selector = 'body.'+str(obj.id) self.page_css = selector + ' {\n' # TODO: Headers and footers - self.page_css += '}\n' + self.page_css += '}\n' + def create_block_styles(self): self.block_css = '' @@ -82,8 +84,12 @@ class LRFConverter(object): if isinstance(obj, BlockAttr): self.block_css += str(BlockStyle(obj)) - print self.block_css - + def create_text_styles(self): + self.text_css = '' + for obj in self.lrf.objects.values(): + if isinstance(obj, TextAttr): + self.text_css += str(TextStyle(obj)) + print self.text_css def create_styles(self): self.logger.info('Creating CSS stylesheet...') diff --git a/src/libprs500/ebooks/lrf/objects.py b/src/libprs500/ebooks/lrf/objects.py index 534f97f88b..66577935d5 100644 --- a/src/libprs500/ebooks/lrf/objects.py +++ b/src/libprs500/ebooks/lrf/objects.py @@ -12,10 +12,9 @@ ## You should have received a copy of the GNU General Public License along ## with this program; if not, write to the Free Software Foundation, Inc., ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -from libprs500.ebooks.lrf import entity_to_unicode import struct, array, zlib, cStringIO, collections, re -from libprs500.ebooks.lrf import LRFParseError +from libprs500.ebooks.lrf import LRFParseError, PRS500_PROFILE, entity_to_unicode from libprs500.ebooks.lrf.tags import Tag ruby_tags = { @@ -245,6 +244,10 @@ class PageAttr(StyleObject, LRFObject): 0xF529: ['', "parse_bg_image"], } tag_map.update(LRFObject.tag_map) + + @classmethod + def to_css(cls, obj, inline=False): + return '' class Color(object): @@ -446,8 +449,42 @@ class BlockAttr(StyleObject, LRFObject): 0xF529: ['', 'parse_bg_image'], } tag_map.update(LRFObject.tag_map) + + @classmethod + def to_css(cls, obj, inline=False): + ans = '' + def item(line): + ans += '' if inline else '\t' + ans += line + ans += ' ' if inline else '\n' + + if hasattr(obj, 'sidemargin'): + margin = str(obj.sidemargin) + 'px' + item('margin-left: %(m)s; margin-right: %(m)s;'%dict(m=margin)) + if hasattr(obj, 'topskip'): + item('margin-top: %dpx;'%obj.topskip) + if hasattr(obj, 'footskip'): + item('margin-bottom: %dpx;'%obj.footskip) + if hasattr(obj, 'framewidth'): + item('border: solid %dpx'%obj.framewidth) + if hasattr(obj, 'framecolor') and obj.framecolor.a < 255: + item('border-color: %s;'%obj.framecolor.to_html()) + if hasattr(obj, 'bgcolor') and obj.bgcolor.a < 255: + item('background-color: %s;'%obj.bgcolor.to_html()) + + return ans + + + + + class TextAttr(StyleObject, LRFObject): + + FONT_MAP = collections.defaultdict(lambda : 'serif') + for key, value in PRS500_PROFILE.default_fonts.items(): + FONT_MAP[value] = key + tag_map = { 0xF511: ['fontsize', 'w'], 0xF512: ['fontwidth', 'w'], @@ -472,6 +509,45 @@ class TextAttr(StyleObject, LRFObject): } tag_map.update(ruby_tags) tag_map.update(LRFObject.tag_map) + + @classmethod + def to_css(cls, obj, inline=False): + ans = '' + def item(line): + ans += '' if inline else '\t' + ans += line + ans += ' ' if inline else '\n' + + fs = getattr(obj, 'fontsize', None) + if fs is not None: + item('font-size: %fpt;'%(int(fs)/10.)) + fw = getattr(obj, 'fontweight', None) + if fw is not None: + item('font-weight: %s;'%('bold' if int(fw) >= 700 else 'normal')) + fn = getattr(obj, 'fontfacename', None) + if fn is not None: + fn = cls.FONT_MAP[fn] + item('font-family: %s;'%fn) + fg = getattr(obj, 'textcolor', None) + if fg is not None: + fg = fg.to_html() + item('color: %s;'%fg) + bg = getattr(obj, 'textbgcolor', None) + if bg is not None: + bg = bg.to_html() + item('background-color: %s;'%bg) + al = getattr(obj, 'align', None) + if al is not None: + al = dict(head='left', center='center', foot='right') + item('text-align: %s;'%al) + lh = getattr(obj, 'linespace', None) + if lh is not None: + item('text-align: %fpt;'%(int(lh)/10.)) + pi = getattr(obj, 'parindent', None) + if pi is not None: + item('text-indent: %fpt;'%(int(pi)/10.)) + + return ans class Block(LRFStream): diff --git a/src/libprs500/gui2/dialogs/user_profiles.py b/src/libprs500/gui2/dialogs/user_profiles.py index c8a5610940..6dc38cea13 100644 --- a/src/libprs500/gui2/dialogs/user_profiles.py +++ b/src/libprs500/gui2/dialogs/user_profiles.py @@ -17,7 +17,8 @@ import time from PyQt4.QtCore import SIGNAL from PyQt4.QtGui import QDialog, QMessageBox -from libprs500.ebooks.lrf.web.profiles import FullContentProfile, create_class +from libprs500.web.feeds.recipes import compile_recipe +from libprs500.web.feeds.news import AutomaticNewsRecipe from libprs500.gui2.dialogs.user_profiles_ui import Ui_Dialog from libprs500.gui2 import qstring_to_unicode, error_dialog, question_dialog from libprs500.gui2.widgets import PythonHighlighter @@ -52,56 +53,56 @@ class UserProfiles(QDialog, Ui_Dialog): if not current: current = previous src = current.user_data[1] - if 'class BasicUserProfile' in src: - profile = create_class(src) - self.populate_options(profile) + if 'class BasicUserRecipe' in src: + recipe = compile_recipe(src) + self.populate_options(recipe) self.stacks.setCurrentIndex(0) - self.toggle_mode_button.setText('Switch to Advanced mode') + self.toggle_mode_button.setText(_('Switch to Advanced mode')) else: self.source_code.setPlainText(src) self.highlighter = PythonHighlighter(self.source_code.document()) self.stacks.setCurrentIndex(1) - self.toggle_mode_button.setText('Switch to Basic mode') + self.toggle_mode_button.setText(_('Switch to Basic mode')) def toggle_mode(self, *args): if self.stacks.currentIndex() == 1: self.stacks.setCurrentIndex(0) - self.toggle_mode_button.setText('Switch to Advanced mode') + self.toggle_mode_button.setText(_('Switch to Advanced mode')) else: self.stacks.setCurrentIndex(1) - self.toggle_mode_button.setText('Switch to Basic mode') + self.toggle_mode_button.setText(_('Switch to Basic mode')) if not qstring_to_unicode(self.source_code.toPlainText()).strip(): - src = self.options_to_profile()[0] - self.source_code.setPlainText(src.replace('BasicUserProfile', 'AdvancedUserProfile')) + src = self.options_to_profile()[0].replace('AutomaticNewsRecipe', 'BasicNewsRecipe') + self.source_code.setPlainText(src.replace('BasicUserRecipe', 'AdvancedUserRecipe')) self.highlighter = PythonHighlighter(self.source_code.document()) def add_feed(self, *args): title = qstring_to_unicode(self.feed_title.text()).strip() if not title: - d = error_dialog(self, 'Feed must have a title', 'The feed must have a title') - d.exec_() + error_dialog(self, _('Feed must have a title'), + _('The feed must have a title')).exec_() return url = qstring_to_unicode(self.feed_url.text()).strip() if not url: - d = error_dialog(self, 'Feed must have a URL', 'The feed %s must have a URL'%title) - d.exec_() + error_dialog(self, _('Feed must have a URL'), + _('The feed %s must have a URL')%title).exec_() return try: self.added_feeds.add_item(title+' - '+url, (title, url)) except ValueError: - error_dialog(self, 'Already in list', 'This feed has already been added to the profile').exec_() + error_dialog(self, _('Already exists'), + _('This feed has already been added to the recipe')).exec_() return self.feed_title.setText('') self.feed_url.setText('') def options_to_profile(self): - classname = 'BasicUserProfile'+str(int(time.time())) + classname = 'BasicUserRecipe'+str(int(time.time())) title = qstring_to_unicode(self.profile_title.text()).strip() if not title: title = classname self.profile_title.setText(title) - summary_length = self.summary_length.value() oldest_article = self.oldest_article.value() max_articles = self.max_articles.value() feeds = [i.user_data for i in self.added_feeds.items()] @@ -109,20 +110,19 @@ class UserProfiles(QDialog, Ui_Dialog): src = '''\ class %(classname)s(%(base_class)s): title = %(title)s - summary_length = %(summary_length)d oldest_article = %(oldest_article)d max_articles_per_feed = %(max_articles)d feeds = %(feeds)s -'''%dict(classname=classname, title=repr(title), summary_length=summary_length, +'''%dict(classname=classname, title=repr(title), feeds=repr(feeds), oldest_article=oldest_article, max_articles=max_articles, - base_class='DefaultProfile' if self.full_articles.isChecked() else 'FullContentProfile') + base_class='AutomaticNewsRecipe') return src, title def populate_source_code(self): - src = self.options_to_profile().replace('BasicUserProfile', 'AdvancedUserProfile') + src = self.options_to_profile().replace('BasicUserRecipe', 'AdvancedUserRecipe') self.source_code.setPlainText(src) self.highlighter = PythonHighlighter(self.source_code.document()) @@ -131,26 +131,26 @@ class %(classname)s(%(base_class)s): src, title = self.options_to_profile() try: - create_class(src) + compile_recipe(src) except Exception, err: - error_dialog(self, 'Invalid input', - '

Could not create profile. Error:
%s'%str(err)).exec_() + error_dialog(self, _('Invalid input'), + _('

Could not create recipe. Error:
%s')%str(err)).exec_() return profile = src else: src = qstring_to_unicode(self.source_code.toPlainText()) try: - title = create_class(src).title + title = compile_recipe(src).title except Exception, err: - error_dialog(self, 'Invalid input', - '

Could not create profile. Error:
%s'%str(err)).exec_() + error_dialog(self, _('Invalid input'), + _('

Could not create recipe. Error:
%s')%str(err)).exec_() return - profile = src.replace('BasicUserProfile', 'AdvancedUserProfile') + profile = src.replace('BasicUserRecipe', 'AdvancedUserRecipe') try: self.available_profiles.add_item(title, (title, profile), replace=False) except ValueError: - d = question_dialog(self, 'Replace profile?', - 'A custom profile named %s already exists. Do you want to replace it?'%title) + d = question_dialog(self, _('Replace recipe?'), + _('A custom recipe named %s already exists. Do you want to replace it?')%title) if d.exec_() == QMessageBox.Yes: self.available_profiles.add_item(title, (title, profile), replace=True) else: @@ -160,18 +160,17 @@ class %(classname)s(%(base_class)s): def populate_options(self, profile): self.oldest_article.setValue(profile.oldest_article) self.max_articles.setValue(profile.max_articles_per_feed) - self.summary_length.setValue(profile.summary_length) self.profile_title.setText(profile.title) self.added_feeds.clear() - for title, url in profile.feeds: + feeds = [] if profile.feeds is None else profile.feeds + for title, url in feeds: self.added_feeds.add_item(title+' - '+url, (title, url)) self.feed_title.setText('') self.feed_url.setText('') - self.full_articles.setChecked(isinstance(profile, FullContentProfile)) def clear(self): - self.populate_options(FullContentProfile) + self.populate_options(AutomaticNewsRecipe) self.source_code.setText('') def profiles(self): diff --git a/src/libprs500/gui2/dialogs/user_profiles.ui b/src/libprs500/gui2/dialogs/user_profiles.ui index 25b7eeabaa..a2aef80038 100644 --- a/src/libprs500/gui2/dialogs/user_profiles.ui +++ b/src/libprs500/gui2/dialogs/user_profiles.ui @@ -45,7 +45,7 @@ - Available user profiles + Available user recipes @@ -64,7 +64,7 @@ - Add/Update &profile + Add/Update &recipe :/images/plus.svg @@ -74,7 +74,7 @@ - &Remove profile + &Remove recipe :/images/list_remove.svg @@ -83,7 +83,7 @@ - + @@ -105,7 +105,7 @@ <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; font-weight:400; font-style:normal;"> -<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 profile, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced" setting to further customize the fetch process.<br />The Basic tab is useful mainly for feeds that have the full article content embedded within them.</p></body></html> +<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> Qt::RichText @@ -120,7 +120,7 @@ p, li { white-space: pre-wrap; } - Profile &title: + Recipe &title: profile_title @@ -137,32 +137,6 @@ p, li { white-space: pre-wrap; } - - - - &Summary length: - - - summary_length - - - - - - - characters - - - 0 - - - 100000 - - - 500 - - - @@ -218,22 +192,12 @@ p, li { white-space: pre-wrap; } - - - - Try to follow links in the RSS feed to full articles on the web. If you enable this option, you're probably going to end up having to use the advanced mode. - - - Try to download &full articles - - - - Feeds in profile + Feeds in recipe @@ -246,7 +210,7 @@ p, li { white-space: pre-wrap; } - Remove feed from profile + Remove feed from recipe ... @@ -262,7 +226,7 @@ p, li { white-space: pre-wrap; } - Add feed to profile + Add feed to recipe @@ -294,7 +258,7 @@ p, li { white-space: pre-wrap; } - Add feed to profile + Add feed to recipe &Add feed @@ -314,7 +278,7 @@ p, li { white-space: pre-wrap; } - For help with writing advanced news profiles, please visit <a href="https://__appname__.kovidgoyal.net/wiki/UserProfiles">UserProfiles</a> + For help with writing advanced news recipes, please visit <a href="http://__appname__.kovidgoyal.net/user_manual/news.html">User Recipes</a> true @@ -327,7 +291,7 @@ p, li { white-space: pre-wrap; } - Profile source code (python) + Recipe source code (python) diff --git a/src/libprs500/library/database.py b/src/libprs500/library/database.py index 2abfd00af6..bdb84874f3 100644 --- a/src/libprs500/library/database.py +++ b/src/libprs500/library/database.py @@ -24,6 +24,7 @@ from libprs500.ebooks.metadata.meta import set_metadata, metadata_from_formats from libprs500.ebooks.metadata.opf import OPFCreator from libprs500.ebooks.metadata import MetaInformation from libprs500.ebooks import BOOK_EXTENSIONS +from libprs500.web.feeds.recipes import migrate_automatic_profile_to_automatic_recipe class Concatenate(object): '''String concatenation aggregator for sqlite''' @@ -779,6 +780,15 @@ ALTER TABLE books ADD COLUMN isbn TEXT DEFAULT "" COLLATE NOCASE; conn.execute('pragma user_version=8') conn.commit() + @staticmethod + def upgrade_version8(conn): + feeds = conn.execute('SELECT title, script FROM feeds').fetchall() + for title, script in feeds: + script = migrate_automatic_profile_to_automatic_recipe(script) + conn.execute('UPDATE feeds SET script=? WHERE title=?', (script, title)) + conn.execute('pragma user_version=9') + conn.commit() + def __del__(self): global _lock_file import os @@ -808,6 +818,8 @@ ALTER TABLE books ADD COLUMN isbn TEXT DEFAULT "" COLLATE NOCASE; LibraryDatabase.upgrade_version6(self.conn) if self.user_version == 7: # Upgrade to 8 LibraryDatabase.upgrade_version7(self.conn) + if self.user_version == 8: # Upgrade to 9 + LibraryDatabase.upgrade_version8(self.conn) def close(self): global _lock_file diff --git a/src/libprs500/manual/Makefile b/src/libprs500/manual/Makefile index 8124efc6a4..25e96dd637 100644 --- a/src/libprs500/manual/Makefile +++ b/src/libprs500/manual/Makefile @@ -21,7 +21,7 @@ help: @echo " linkcheck to check all external links for integrity" clean: - -rm -rf .build/* + -rm -rf .build/* cli html: mkdir -p .build/html .build/doctrees diff --git a/src/libprs500/manual/conf.py b/src/libprs500/manual/conf.py index cece3abd41..416dbc9885 100644 --- a/src/libprs500/manual/conf.py +++ b/src/libprs500/manual/conf.py @@ -24,7 +24,7 @@ import custom # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.addons.*') or your custom ones. -extensions = ['custom'] +extensions = ['sphinx.ext.autodoc', 'custom'] # Add any paths that contain templates here, relative to this directory. templates_path = ['.templates'] @@ -54,9 +54,8 @@ release = __version__ today_fmt = '%B %d, %Y' # List of documents that shouldn't be included in the build. -unused_docs = ['global'] +unused_docs = ['global', 'cli/global'] -master_doc = 'index' # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True @@ -105,7 +104,7 @@ html_last_updated_fmt = '%b %d, %Y' #html_additional_pages = {} # If false, no module index is generated. -html_use_modindex = False +# html_use_modindex = True # If true, the reST sources are included in the HTML build as _sources/. html_copy_source = False diff --git a/src/libprs500/manual/custom.py b/src/libprs500/manual/custom.py index b6e974ed3a..29a29693c1 100644 --- a/src/libprs500/manual/custom.py +++ b/src/libprs500/manual/custom.py @@ -15,8 +15,13 @@ ## You should have received a copy of the GNU General Public License along ## with this program; if not, write to the Free Software Foundation, Inc., ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -import shutil, sys, os +import shutil, sys, os, inspect, re from sphinx.builder import StandaloneHTMLBuilder, bold +from sphinx.util import rpartition +from sphinx.ext.autodoc import get_module_charset, prepare_docstring +from docutils.statemachine import ViewList +from docutils import nodes + from genshi.template import TextTemplate sys.path.append(os.path.abspath('../../../')) from libprs500.linux import entry_points @@ -29,7 +34,7 @@ def substitute(app, doctree): pass CLI_INDEX = '''\ -.. include:: ../global.rst +.. include:: global.rst || .. _cli: || @@ -62,22 +67,19 @@ You can see usage for undocumented commands by executing them without arguments ''' CLI_CMD=r''' -.. include:: ../global.rst +.. include:: global.rst || .. _$cmd: -|| -.. role:: mycmdopt(literal) - :class: bold || #def option(opt) -`${opt.get_opt_string() + ((', '+', '.join(opt._short_opts)) if opt._short_opts else '')}`:mycmdopt: +:option:`${opt.get_opt_string() + ((', '+', '.join(opt._short_opts)) if opt._short_opts else '')}` #end $cmd ==================================================================== || -Usage:: +.. code-block:: none || - $cmdline + $cmdline || #for line in usage #choose @@ -111,7 +113,8 @@ ${option(opt)} #end ''' -def cli_docs(info): +def cli_docs(app): + info = app.builder.info info(bold('creating CLI documentation...')) documented_cmds = [] undocumented_cmds = [] @@ -134,7 +137,11 @@ def cli_docs(info): raw = raw.replace('||', '\n') if not os.path.exists('cli'): os.makedirs('cli') - open(os.path.join('cli', 'cli-index.rst'), 'wb').write(raw) + if not os.path.exists(os.path.join('cli', 'global.rst')): + os.link('global.rst', os.path.join('cli', 'global.rst')) + if not os.path.exists(os.path.join('cli', 'cli-index.rst')): + info(bold('creating cli-index...')) + open(os.path.join('cli', 'cli-index.rst'), 'wb').write(raw) templ = TextTemplate(CLI_CMD) for cmd, parser in documented_cmds: @@ -148,18 +155,68 @@ def cli_docs(info): raw = templ.generate(cmd=cmd, cmdline=cmdline, usage=usage, groups=groups).render() raw = raw.replace('||', '\n').replace('<', '<').replace('>', '>') - open(os.path.join('cli', cmd+'.rst'), 'wb').write(raw) + if not os.path.exists(os.path.join('cli', cmd+'.rst')): + info(bold('creating docs for %s...'%cmd)) + open(os.path.join('cli', cmd+'.rst'), 'wb').write(raw) -def generate(app): - app.builder.info(bold('copying images to the build tree...')) - shutil.rmtree('.build/html/images', True) - shutil.copytree('images', '.build/html/images') - shutil.rmtree('.build/html/images/.svn', True) - shutil.rmtree('.build/html/images/.bzr', True) - cli_docs(app.builder.info) +def auto_member(dirname, arguments, options, content, lineno, + content_offset, block_text, state, state_machine): + name = arguments[0] + env = state.document.settings.env + + mod_cls, obj = rpartition(name, '.') + if not mod_cls and hasattr(env, 'autodoc_current_class'): + mod_cls = env.autodoc_current_class + if not mod_cls: + mod_cls = env.currclass + mod, cls = rpartition(mod_cls, '.') + if not mod and hasattr(env, 'autodoc_current_module'): + mod = env.autodoc_current_module + if not mod: + mod = env.currmodule + + module = __import__(mod, None, None, ['foo']) + cls = getattr(module, cls) + lines = inspect.getsourcelines(cls)[0] + + comment_lines = [] + for i, line in enumerate(lines): + if re.search(r'%s\s*=\s*\S+'%obj, line) and not line.strip().startswith('#:'): + for j in range(i-1, 0, -1): + raw = lines[j].strip() + if not raw.startswith('#:'): + break + comment_lines.append(raw[2:]) + break + comment_lines.reverse() + docstring = '\n'.join(comment_lines) + + if module is not None and docstring is not None: + docstring = docstring.decode(get_module_charset(mod)) + + result = ViewList() + result.append('.. attribute:: %s.%s'%(cls.__name__, obj), '') + result.append('', '') + + docstring = prepare_docstring(docstring) + for i, line in enumerate(docstring): + result.append(' ' + line, '' % name, i) + + result.append('', '') + result.append(' **Default**: ``%s``'%repr(getattr(cls, obj, None)), '') + result.append('', '') + node = nodes.paragraph() + state.nested_parse(result, content_offset, node) + + return node + + + def setup(app): app.add_builder(CustomBuilder) + app.add_directive('automember', auto_member, 1, (1, 0, 1)) app.connect('doctree-read', substitute) - app.connect('builder-inited', generate) + app.connect('builder-inited', cli_docs) + diff --git a/src/libprs500/manual/glossary.rst b/src/libprs500/manual/glossary.rst new file mode 100644 index 0000000000..4a366ae491 --- /dev/null +++ b/src/libprs500/manual/glossary.rst @@ -0,0 +1,30 @@ +.. include:: global.rst + +Glossary +========== + +.. glossary:: + + RSS + **RSS** *(Really Simple Syndication)* is a web feed format that is used to publish frequently updated content, like news articles, blog posts, etc. It is a format that is particularly suited to being read by computers, and is therefore the preferred way of getting content from the web into an e-book. There are many other feed formats in use on the internet, and |app| understands most of them. In particular, it has good support for the *ATOM* format, which is commonly used for blogs. + + recipe + A recipe is a set of instructions that teach |app| how to convert an online news source, like a magazine or a blog into an e-book. A recipe, is essentially `python `_ code. As such, it is capable of converting arbitrarily complex news sources into e-books. At the simplest level, it is just a set of variables such as URLs that give |app| enough information to go out onto the internet and download the news. + + HTML + **HTML** *(Hyper Text Mark-Up Language)*, a subset of Standard Generalized Mark-Up Language (SGML) for electronic publishing, the specific standard used for the World Wide Web. + + CSS + **CSS** *(Cascading Style Sheets)* a language used to describe how an :term:`HTML` document should be rendered (visual styling). + + API + **API** *(Application Programming Interface)* is a source code interface that a library provides to support requests for services to be made of it by computer programs. + + LRF + **LRF** The e-book format that is read by the SONY e-book readers. + + URL + **URL** *(Uniform Resource Locator)* for example: ``http://example.com`` + + regexp + **Regular expressions** provide a concise and flexible means for identifying strings of text of interest, such as particular characters, words, or patterns of characters. See http://docs.python.org/lib/re-syntax.html for the syntax of regular expressions used in python. diff --git a/src/libprs500/manual/images/bbc_advanced.png b/src/libprs500/manual/images/bbc_advanced.png new file mode 100644 index 0000000000..2d600e107c Binary files /dev/null and b/src/libprs500/manual/images/bbc_advanced.png differ diff --git a/src/libprs500/manual/images/bbc_altered.png b/src/libprs500/manual/images/bbc_altered.png new file mode 100644 index 0000000000..615eb98d65 Binary files /dev/null and b/src/libprs500/manual/images/bbc_altered.png differ diff --git a/src/libprs500/manual/images/bbc_altered1.png b/src/libprs500/manual/images/bbc_altered1.png new file mode 100644 index 0000000000..ac3cb05187 Binary files /dev/null and b/src/libprs500/manual/images/bbc_altered1.png differ diff --git a/src/libprs500/manual/images/custom_news.png b/src/libprs500/manual/images/custom_news.png new file mode 100644 index 0000000000..2f2c6e47be Binary files /dev/null and b/src/libprs500/manual/images/custom_news.png differ diff --git a/src/libprs500/manual/index.rst b/src/libprs500/manual/index.rst index 86391816dd..03e93873d4 100644 --- a/src/libprs500/manual/index.rst +++ b/src/libprs500/manual/index.rst @@ -29,6 +29,7 @@ Sections metadata cli/cli-index faq + glossary Convenience ----------------------- diff --git a/src/libprs500/manual/news.rst b/src/libprs500/manual/news.rst index 21e80f9ced..7ab851bc7e 100644 --- a/src/libprs500/manual/news.rst +++ b/src/libprs500/manual/news.rst @@ -4,3 +4,207 @@ Adding your favorite news website ================================== + +|app| has a powerful, flexible and easy-to-use framework for downloading news from the internet and converting it into an e-book. In the following, I will show you by means of examples, how to get news from various websites. + +To gain an understanding of how to use the framework, follow the examples in the order listed below: + +.. contents:: + :depth: 2 + :local: + +Completely automatic fetching +------------------------------- + +If your news source is simple enough, |app| may well be able to fetch it completely automatically, all you need to do is provide the URL. |app| gathers all the information needed to download a news source into a :term:`recipe`. In order to tell |app| about a news source, you have to create a :term:`recipe` for it. Let's see some examples: + +.. _portfolio: + +portfolio.com +~~~~~~~~~~~~~~~~~~~ + +*portfolio.com* is the website for *Condé Nast Portfolio*, a business related magazine. In order to download articles from the magazine and convert them to e-books, we rely on the :term:`RSS` feeds of portfolio.com. A list of such feeds is available at http://www.portfolio.com/rss/. + +Lets pick a couple of feeds that look interesting: + + #. Business Travel: http://feeds.portfolio.com/portfolio/businesstravel + #. Tech Observer: http://feeds.portfolio.com/portfolio/thetechobserver + +I got the URLs by clicking the little orange RSS icon next to each feed name. To make |app| download the feeds and convert them into an e-book, you should click the :guilabel:`Fetch news` button and then the :guilabel:`Add a custom news source` menu item. A dialog similar to that shown below should open up. + +.. image:: images/custom_news.png + +First enter ``Portfolio`` into the :guilabel:`Recipe title` field. This will be the title of the e-book that will be created from the articles in the above feeds. + +The next two fields (:guilabel:`Oldest article` and :guilabel:`Max. number of articles`) allow you some control over how many articles should be downloaded from each feed, and they are pretty self explanatory. + +To add the feeds to the recipe, enter the feed title and the feed URL and click the :guilabel:`Add feed` button. Once you have added both feeds, simply click the :guilabel:`Add/update recipe` button and you're done! Close the dialog. + +To test your new :term:`recipe`, click the :guilabel:`Fetch news` button and in the :guilabel:`Custom news sources` sub-menu click :guilabel:`Portfolio`. After a couple of minutes, the newly downloaded Portfolio e-book will appear in the main library view (if you have your reader connected, it will be put onto the reader instead of into the library). Select it and hit the :guilabel:`View` button to read! + +The reason this worked so well, with so little effort is that *portfolio.com* provides *full-content* :term:`RSS` feeds, i.e., the article content is embedded in the feed itself. For most news sources that provide news in this fashion, with *full-content* feeds, you don't need any more effort to convert them to e-books. Now we will look at a news source that does not provide full content feeds. In such feeds, the full article is a webpage and the feed only contains a link to the webpage with a short summary of the article. + +.. _bbc: + +bbc.co.uk +~~~~~~~~~~~~~~ + +Lets try the following two feeds from *The BBC*: + + #. News Front Page: http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml + #. Science/Nature: http://newsrss.bbc.co.uk/rss/newsonline_world_edition/science/nature/rss.xml + +Follow the procedure outlined in :ref:`portfolio` to create a recipe for *The BBC* (using the feeds above). Looking at the downloaded e-book, we see that |app| has done a creditable job of extracting only the content you care about from each article's webpage. However, the extraction process is not perfect. Sometimes it leaves in undesirable content like menus and navigation aids or it removes content that should have been left alone, like article headings. In order, to have perfect content extraction, we will need to customize the fetch process, as described in the next section. + +Customizing the fetch process +-------------------------------- + +When you want to perfect the download process, or download content from a particularly complex website, you can avail yourself of all the power and flexibility of the :term:`recipe` framework. In order to do that, in the :guilabel:`Add custom news sources` dialog, simply click the :guilabel:`Switch to Advanced mode` button. + +The easiest and often most productive customization is to use the print version of the online articles. The print version typically has much less cruft and translates much more smoothly to an e-book. Let's try to use the print version of the articles from *The BBC*. + +Using the print version of bbc.co.uk +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The first step is to look at the e-book we downloaded previously from :ref:`bbc`. At the end of each article, in the e-book is a little blurb telling you where the article was downloaded from. Copy and paste that URL into a browser. Now on the article webpage look for a link that points to the "Printable version". Click it to see the print version of the article. It looks much neater! Now compare the two URLs. For me they were: + + Article URL + http://news.bbc.co.uk/2/hi/science/nature/7312016.stm + + Print version URL + http://newsvote.bbc.co.uk/mpapps/pagetools/print/news.bbc.co.uk/2/hi/science/nature/7312016.stm + +So it looks like to get the print version, we need to prefix every article URL with: + + newsvote.bbc.co.uk/mpapps/pagetools/print/ + +Now in the :guilabel:`Advanced Mode` of the Custom news sources dialog, you should see something like (remember to select *The BBC* recipe before switching to advanced mode): + +.. image:: images/bbc_advanced.png + +You can see that the fields from the :guilabel:`Basic mode` have been translated to python code in a straightforward manner. We need to add instructions to this recipe to use the print version of the articles. All that's needed is to add the following two lines: + +.. code-block:: python + + def print_version(self, url): + return url.replace('http://', 'http://newsvote.bbc.co.uk/mpapps/pagetools/print/') + +This is python, so indentation is important. After you've added the lines, it should look like: + +.. image:: images/bbc_altered.png + +In the above, ``def print_version(self, url)`` defines a *method* that is called by |app| for every article. ``url`` is the URL of the original article. What ``print_version`` does is take that url and replace it with the new URL that points to the print version of the article. To learn about `python `_ see the `tutorial `_. + +Now, click the :guilabel:`Add/update recipe` button and your changes will be saved. Re-download the e-book. You should have a much improved e-book. One of the problems with the new version is that the fonts on the print version webpage are too small. This is automatically fixed when converting to an e-book, but even after the fixing process, the font size of the menus and navigation bar to become too large relative to the article text. To fix this, we will do some more customization, in the next section. + +Replacing article styles +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +In the previous section, we saw that the font size for articles from the print version of *The BBC* was too small. In most websites, *The BBC* included, this font size is set by means of :term:`CSS` stylesheets. We can disable the fetching of such stylesheets by adding the line:: + + no_stylesheets = True + +The recipe now looks like: + +.. _bbc1: + +.. image:: images/bbc_altered1.png + +The new version looks pretty good. If you're a perfectionist, you'll want to read the next section, which deals with actually modifying the downloaded content. + +Slicing and dicing +~~~~~~~~~~~~~~~~~~~~~~~ + +|app| contains very powerful and flexible abilities when it comes to manipulating downloaded content. To show off a couple of these, let's look at our old friend the :ref:`The BBC ` recipe again. Looking at the source code (:term:`HTML`) of a couple of articles (print version), we see that they have a footer that contains no useful information, contained in + +.. code-block:: html + +

+ +This can be removed by adding:: + + remove_tags = [dict(name='div', attrs={'class':'footer'})] + +to the recipe. Finally, lets replace some of the :term:`CSS` that we disabled earlier, with our own :term:`CSS` that is suitable for conversion to an e-book:: + + extra_css = '.headline {font-size: x-large;} \n .fact { padding-top: 10pt }' + +With these additions, our recipe has become "production quality", indeed it is very close to the actual recipe used by |app| for the *BBC*, shown below: + +.. literalinclude:: ../web/feeds/recipes/bbc.py + +This :term:`recipe` explores only the tip of the iceberg when it comes to the power of |app|. To explore more of the abilities of |app| we'll examine a more complex real life example in the next section. + +Real life example +~~~~~~~~~~~~~~~~~~~~~ + +A reasonably complex real life example that exposes more of the :term:`API` of ``BasicNewsRecipe`` is the :term:`recipe` for *The New York Times* + +.. literalinclude:: ../web/feeds/recipes/nytimes.py + :linenos: + + +Tips for developing new recipes +--------------------------------- + +The best way to develop new recipes is to use the command line interface. Create the recipe using your favorite python editor and save it to a file say :file:`myrecipe.py`. You can download content using this recipe with the command: + + :command:`feeds2disk` :option:`--debug` :option:`--test` myrecipe.py + +The :command:`feeds2disk` will download all the webpages and save them to the current directory. The :option:`--debug` makes feeds2disk spit out a lot of information about what it is doing. The :option:`--test` makes it download only a couple of articles from at most two feeds. + +Once the download is complete, you can look at the downloaded :term:`HTML` by opening the file :file:`index.html` in a browser. Once you're satisfied that the download and preprocessing is happening correctly, you can generate an LRF ebook with the command + + :command:`html2lrf` :option:`--use-spine` :option:`--page-break-before` "$" index.html + +If the generated :term:`LRF` looks good, you can finally, run + + :command:`feeds2lrf` myrecipe.py + +to see the final :term:`LRF` format e-book generated from your recipe. If you're satisfied with your recipe, consider attaching it to `the wiki `_, so that others can use it as well. If you feel there is enough demand to justify its inclusion into the set of built-in recipes, add a comment to the ticket http://libprs500.kovidgoyal.net/ticket/405 + +.. seealso:: + + :ref:`feeds2disk` + The command line interfce for downloading content from the internet + + :ref:`feeds2lrf` + The command line interface for downloading content fro the internet and converting it into a :term:`LRF` e-book. + + :ref:`html2lrf` + The command line interface for converting :term:`HTML` into a :term:`LRF` e-book. + + +Further reading +-------------------- + +To learn more about writing advanced recipes using some of the facilities, available in ``BasicNewsRecipe`` you should consult the following sources: + + :ref:`API Documentation ` + Documentation of the ``BasicNewsRecipe`` class and all its important methods and fields. + + `BasicNewsRecipe `_ + The source code of ``BasicNewsRecipe`` + + `Built-in recipes `_ + The source code for the built-in recipes that come with |app| + +Migrating old style profiles to recipes +---------------------------------------- + +In earlier versions of |app| there was a similar, if less powerful, framework for fetching news based on *Profiles*. If you have a profile that you would like to migrate to a recipe, the basic technique is simple, as they are very similar (on the surface). Common changes you have to make include: + + * Replace ``DefaultProfile`` with ``BasicNewsRecipe`` + + * Remove ``max_recursions`` + + * If the server you're downloading from doesn't like multiple connects, set ``simultaneous_downloads = 1``. + +API documentation +-------------------- + +.. toctree:: + + news_recipe diff --git a/src/libprs500/manual/news_recipe.rst b/src/libprs500/manual/news_recipe.rst new file mode 100644 index 0000000000..ef75be9fdc --- /dev/null +++ b/src/libprs500/manual/news_recipe.rst @@ -0,0 +1,133 @@ +.. include:: global.rst + +.. _news_recipe: + +API Documentation for recipes +=============================== + +.. module:: libprs500.web.feeds.news + :synopsis: Defines various abstract base classes that can be subclassed to create powerful news fetching recipes. + +Defines various abstract base classes that can be subclassed to create powerful news fetching recipes. The useful +subclasses are: + +.. contents:: + :depth: 1 + :local: + +BasicNewsRecipe +----------------- + +.. class:: BasicNewsRecipe + + Abstract base class that contains a number of members and methods to customize the fetching of contents in your recipes. All + recipes must inherit from this class or a subclass of it. + + The members and methods are organized as follows: + +.. contents:: + :depth: 1 + :local: + + + +Customizing e-book download +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. automember:: BasicNewsRecipe.title + +.. automember:: BasicNewsRecipe.__author__ + +.. automember:: BasicNewsRecipe.max_articles_per_feed + +.. automember:: BasicNewsRecipe.oldest_article + +.. automember:: BasicNewsRecipe.recursions + +.. automember:: BasicNewsRecipe.delay + +.. automember:: BasicNewsRecipe.simultaneous_downloads + +.. automember:: BasicNewsRecipe.timeout + +.. automember:: BasicNewsRecipe.timefmt + +.. automember:: BasicNewsRecipe.feeds + +.. automember:: BasicNewsRecipe.no_stylesheets + +.. automember:: BasicNewsRecipe.encoding + +.. automethod:: BasicNewsRecipe.get_browser + +.. automethod:: BasicNewsRecipe.get_cover_url + +.. automethod:: BasicNewsRecipe.get_feeds + +.. automethod:: BasicNewsRecipe.parse_index + + + +Customizing feed parsing +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. automember:: BasicNewsRecipe.summary_length + +.. automember:: BasicNewsRecipe.use_embedded_content + +.. automethod:: BasicNewsRecipe.get_article_url + +.. automethod:: BasicNewsRecipe.print_version + +.. automethod:: BasicNewsRecipe.parse_feeds + + +Pre/post processing of downloaded HTML +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. automember:: BasicNewsRecipe.extra_css + +.. automember:: BasicNewsRecipe.match_regexps + +.. automember:: BasicNewsRecipe.filter_regexps + +.. automember:: BasicNewsRecipe.remove_tags + +.. automember:: BasicNewsRecipe.remove_tags_after + +.. automember:: BasicNewsRecipe.remove_tags_before + +.. automember:: BasicNewsRecipe.keep_only_tags + +.. automember:: BasicNewsRecipe.preprocess_regexps + +.. automethod:: BasicNewsRecipe.preprocess_html + +.. automethod:: BasicNewsRecipe.postprocess_html + + + +Convenience methods +~~~~~~~~~~~~~~~~~~~~~~~ + +.. automethod:: BasicNewsRecipe.cleanup + +.. automethod:: BasicNewsRecipe.index_to_soup + +.. automethod:: BasicNewsRecipe.sort_index_by + +.. automethod:: BasicNewsRecipe.tag_to_string + + +CustomIndexRecipe +--------------------- + +.. class:: CustomIndexRecipe + + This class is useful for getting content from websites that don't follow the "multiple articles in several feeds" content model. For example, it is used in the built-in recipe for fetching the `Daily Dilbert` comic strip. + + .. literalinclude:: ../web/feeds/recipes/dilbert.py + +.. automethod:: CustomIndexRecipe.custom_index + + diff --git a/src/libprs500/path.py b/src/libprs500/path.py new file mode 100644 index 0000000000..b4829662dd --- /dev/null +++ b/src/libprs500/path.py @@ -0,0 +1,970 @@ +""" path.py - An object representing a path to a file or directory. + +Example: + +from path import path +d = path('/home/guido/bin') +for f in d.files('*.py'): + f.chmod(0755) + +This module requires Python 2.2 or later. + + +URL: http://www.jorendorff.com/articles/python/path +Author: Jason Orendorff (and others - see the url!) +Date: 9 Mar 2007 +""" + + +# TODO +# - Tree-walking functions don't avoid symlink loops. Matt Harrison +# sent me a patch for this. +# - Bug in write_text(). It doesn't support Universal newline mode. +# - Better error message in listdir() when self isn't a +# directory. (On Windows, the error message really sucks.) +# - Make sure everything has a good docstring. +# - Add methods for regex find and replace. +# - guess_content_type() method? +# - Perhaps support arguments to touch(). + +from __future__ import generators + +import sys, warnings, os, fnmatch, glob, shutil, codecs, md5 + +__version__ = '2.2' +__all__ = ['path'] + +# Platform-specific support for path.owner +if os.name == 'nt': + try: + import win32security + except ImportError: + win32security = None +else: + try: + import pwd + except ImportError: + pwd = None + +# Pre-2.3 support. Are unicode filenames supported? +_base = str +_getcwd = os.getcwd +try: + if os.path.supports_unicode_filenames: + _base = unicode + _getcwd = os.getcwdu +except AttributeError: + pass + +# Pre-2.3 workaround for booleans +try: + True, False +except NameError: + True, False = 1, 0 + +# Pre-2.3 workaround for basestring. +try: + basestring +except NameError: + basestring = (str, unicode) + +# Universal newline support +_textmode = 'r' +if hasattr(file, 'newlines'): + _textmode = 'U' + + +class TreeWalkWarning(Warning): + pass + +class path(_base): + """ Represents a filesystem path. + + For documentation on individual methods, consult their + counterparts in os.path. + """ + + # --- Special Python methods. + + def __repr__(self): + return 'path(%s)' % _base.__repr__(self) + + # Adding a path and a string yields a path. + def __add__(self, more): + try: + resultStr = _base.__add__(self, more) + except TypeError: #Python bug + resultStr = NotImplemented + if resultStr is NotImplemented: + return resultStr + return self.__class__(resultStr) + + def __radd__(self, other): + if isinstance(other, basestring): + return self.__class__(other.__add__(self)) + else: + return NotImplemented + + # The / operator joins paths. + def __div__(self, rel): + """ fp.__div__(rel) == fp / rel == fp.joinpath(rel) + + Join two path components, adding a separator character if + needed. + """ + return self.__class__(os.path.join(self, rel)) + + # Make the / operator work even when true division is enabled. + __truediv__ = __div__ + + def getcwd(cls): + """ Return the current working directory as a path object. """ + return cls(_getcwd()) + getcwd = classmethod(getcwd) + + + # --- Operations on path strings. + + isabs = os.path.isabs + def abspath(self): return self.__class__(os.path.abspath(self)) + def normcase(self): return self.__class__(os.path.normcase(self)) + def normpath(self): return self.__class__(os.path.normpath(self)) + def realpath(self): return self.__class__(os.path.realpath(self)) + def expanduser(self): return self.__class__(os.path.expanduser(self)) + def expandvars(self): return self.__class__(os.path.expandvars(self)) + def dirname(self): return self.__class__(os.path.dirname(self)) + basename = os.path.basename + + def expand(self): + """ Clean up a filename by calling expandvars(), + expanduser(), and normpath() on it. + + This is commonly everything needed to clean up a filename + read from a configuration file, for example. + """ + return self.expandvars().expanduser().normpath() + + def _get_namebase(self): + base, ext = os.path.splitext(self.name) + return base + + def _get_ext(self): + f, ext = os.path.splitext(_base(self)) + return ext + + def _get_drive(self): + drive, r = os.path.splitdrive(self) + return self.__class__(drive) + + parent = property( + dirname, None, None, + """ This path's parent directory, as a new path object. + + For example, path('/usr/local/lib/libpython.so').parent == path('/usr/local/lib') + """) + + name = property( + basename, None, None, + """ The name of this file or directory without the full path. + + For example, path('/usr/local/lib/libpython.so').name == 'libpython.so' + """) + + namebase = property( + _get_namebase, None, None, + """ The same as path.name, but with one file extension stripped off. + + For example, path('/home/guido/python.tar.gz').name == 'python.tar.gz', + but path('/home/guido/python.tar.gz').namebase == 'python.tar' + """) + + ext = property( + _get_ext, None, None, + """ The file extension, for example '.py'. """) + + drive = property( + _get_drive, None, None, + """ The drive specifier, for example 'C:'. + This is always empty on systems that don't use drive specifiers. + """) + + def splitpath(self): + """ p.splitpath() -> Return (p.parent, p.name). """ + parent, child = os.path.split(self) + return self.__class__(parent), child + + def splitdrive(self): + """ p.splitdrive() -> Return (p.drive, ). + + Split the drive specifier from this path. If there is + no drive specifier, p.drive is empty, so the return value + is simply (path(''), p). This is always the case on Unix. + """ + drive, rel = os.path.splitdrive(self) + return self.__class__(drive), rel + + def splitext(self): + """ p.splitext() -> Return (p.stripext(), p.ext). + + Split the filename extension from this path and return + the two parts. Either part may be empty. + + The extension is everything from '.' to the end of the + last path segment. This has the property that if + (a, b) == p.splitext(), then a + b == p. + """ + filename, ext = os.path.splitext(self) + return self.__class__(filename), ext + + def stripext(self): + """ p.stripext() -> Remove one file extension from the path. + + For example, path('/home/guido/python.tar.gz').stripext() + returns path('/home/guido/python.tar'). + """ + return self.splitext()[0] + + if hasattr(os.path, 'splitunc'): + def splitunc(self): + unc, rest = os.path.splitunc(self) + return self.__class__(unc), rest + + def _get_uncshare(self): + unc, r = os.path.splitunc(self) + return self.__class__(unc) + + uncshare = property( + _get_uncshare, None, None, + """ The UNC mount point for this path. + This is empty for paths on local drives. """) + + def joinpath(self, *args): + """ Join two or more path components, adding a separator + character (os.sep) if needed. Returns a new path + object. + """ + return self.__class__(os.path.join(self, *args)) + + def splitall(self): + r""" Return a list of the path components in this path. + + The first item in the list will be a path. Its value will be + either os.curdir, os.pardir, empty, or the root directory of + this path (for example, '/' or 'C:\\'). The other items in + the list will be strings. + + path.path.joinpath(*result) will yield the original path. + """ + parts = [] + loc = self + while loc != os.curdir and loc != os.pardir: + prev = loc + loc, child = prev.splitpath() + if loc == prev: + break + parts.append(child) + parts.append(loc) + parts.reverse() + return parts + + def relpath(self): + """ Return this path as a relative path, + based from the current working directory. + """ + cwd = self.__class__(os.getcwd()) + return cwd.relpathto(self) + + def relpathto(self, dest): + """ Return a relative path from self to dest. + + If there is no relative path from self to dest, for example if + they reside on different drives in Windows, then this returns + dest.abspath(). + """ + origin = self.abspath() + dest = self.__class__(dest).abspath() + + orig_list = origin.normcase().splitall() + # Don't normcase dest! We want to preserve the case. + dest_list = dest.splitall() + + if orig_list[0] != os.path.normcase(dest_list[0]): + # Can't get here from there. + return dest + + # Find the location where the two paths start to differ. + i = 0 + for start_seg, dest_seg in zip(orig_list, dest_list): + if start_seg != os.path.normcase(dest_seg): + break + i += 1 + + # Now i is the point where the two paths diverge. + # Need a certain number of "os.pardir"s to work up + # from the origin to the point of divergence. + segments = [os.pardir] * (len(orig_list) - i) + # Need to add the diverging part of dest_list. + segments += dest_list[i:] + if len(segments) == 0: + # If they happen to be identical, use os.curdir. + relpath = os.curdir + else: + relpath = os.path.join(*segments) + return self.__class__(relpath) + + # --- Listing, searching, walking, and matching + + def listdir(self, pattern=None): + """ D.listdir() -> List of items in this directory. + + Use D.files() or D.dirs() instead if you want a listing + of just files or just subdirectories. + + The elements of the list are path objects. + + With the optional 'pattern' argument, this only lists + items whose names match the given pattern. + """ + names = os.listdir(self) + if pattern is not None: + names = fnmatch.filter(names, pattern) + return [self / child for child in names] + + def dirs(self, pattern=None): + """ D.dirs() -> List of this directory's subdirectories. + + The elements of the list are path objects. + This does not walk recursively into subdirectories + (but see path.walkdirs). + + With the optional 'pattern' argument, this only lists + directories whose names match the given pattern. For + example, d.dirs('build-*'). + """ + return [p for p in self.listdir(pattern) if p.isdir()] + + def files(self, pattern=None): + """ D.files() -> List of the files in this directory. + + The elements of the list are path objects. + This does not walk into subdirectories (see path.walkfiles). + + With the optional 'pattern' argument, this only lists files + whose names match the given pattern. For example, + d.files('*.pyc'). + """ + + return [p for p in self.listdir(pattern) if p.isfile()] + + def walk(self, pattern=None, errors='strict'): + """ D.walk() -> iterator over files and subdirs, recursively. + + The iterator yields path objects naming each child item of + this directory and its descendants. This requires that + D.isdir(). + + This performs a depth-first traversal of the directory tree. + Each directory is returned just before all its children. + + The errors= keyword argument controls behavior when an + error occurs. The default is 'strict', which causes an + exception. The other allowed values are 'warn', which + reports the error via warnings.warn(), and 'ignore'. + """ + if errors not in ('strict', 'warn', 'ignore'): + raise ValueError("invalid errors parameter") + + try: + childList = self.listdir() + except Exception: + if errors == 'ignore': + return + elif errors == 'warn': + warnings.warn( + "Unable to list directory '%s': %s" + % (self, sys.exc_info()[1]), + TreeWalkWarning) + return + else: + raise + + for child in childList: + if pattern is None or child.fnmatch(pattern): + yield child + try: + isdir = child.isdir() + except Exception: + if errors == 'ignore': + isdir = False + elif errors == 'warn': + warnings.warn( + "Unable to access '%s': %s" + % (child, sys.exc_info()[1]), + TreeWalkWarning) + isdir = False + else: + raise + + if isdir: + for item in child.walk(pattern, errors): + yield item + + def walkdirs(self, pattern=None, errors='strict'): + """ D.walkdirs() -> iterator over subdirs, recursively. + + With the optional 'pattern' argument, this yields only + directories whose names match the given pattern. For + example, mydir.walkdirs('*test') yields only directories + with names ending in 'test'. + + The errors= keyword argument controls behavior when an + error occurs. The default is 'strict', which causes an + exception. The other allowed values are 'warn', which + reports the error via warnings.warn(), and 'ignore'. + """ + if errors not in ('strict', 'warn', 'ignore'): + raise ValueError("invalid errors parameter") + + try: + dirs = self.dirs() + except Exception: + if errors == 'ignore': + return + elif errors == 'warn': + warnings.warn( + "Unable to list directory '%s': %s" + % (self, sys.exc_info()[1]), + TreeWalkWarning) + return + else: + raise + + for child in dirs: + if pattern is None or child.fnmatch(pattern): + yield child + for subsubdir in child.walkdirs(pattern, errors): + yield subsubdir + + def walkfiles(self, pattern=None, errors='strict'): + """ D.walkfiles() -> iterator over files in D, recursively. + + The optional argument, pattern, limits the results to files + with names that match the pattern. For example, + mydir.walkfiles('*.tmp') yields only files with the .tmp + extension. + """ + if errors not in ('strict', 'warn', 'ignore'): + raise ValueError("invalid errors parameter") + + try: + childList = self.listdir() + except Exception: + if errors == 'ignore': + return + elif errors == 'warn': + warnings.warn( + "Unable to list directory '%s': %s" + % (self, sys.exc_info()[1]), + TreeWalkWarning) + return + else: + raise + + for child in childList: + try: + isfile = child.isfile() + isdir = not isfile and child.isdir() + except: + if errors == 'ignore': + continue + elif errors == 'warn': + warnings.warn( + "Unable to access '%s': %s" + % (self, sys.exc_info()[1]), + TreeWalkWarning) + continue + else: + raise + + if isfile: + if pattern is None or child.fnmatch(pattern): + yield child + elif isdir: + for f in child.walkfiles(pattern, errors): + yield f + + def fnmatch(self, pattern): + """ Return True if self.name matches the given pattern. + + pattern - A filename pattern with wildcards, + for example '*.py'. + """ + return fnmatch.fnmatch(self.name, pattern) + + def glob(self, pattern): + """ Return a list of path objects that match the pattern. + + pattern - a path relative to this directory, with wildcards. + + For example, path('/users').glob('*/bin/*') returns a list + of all the files users have in their bin directories. + """ + cls = self.__class__ + return [cls(s) for s in glob.glob(_base(self / pattern))] + + + # --- Reading or writing an entire file at once. + + def open(self, mode='r'): + """ Open this file. Return a file object. """ + return file(self, mode) + + def bytes(self): + """ Open this file, read all bytes, return them as a string. """ + f = self.open('rb') + try: + return f.read() + finally: + f.close() + + def write_bytes(self, bytes, append=False): + """ Open this file and write the given bytes to it. + + Default behavior is to overwrite any existing file. + Call p.write_bytes(bytes, append=True) to append instead. + """ + if append: + mode = 'ab' + else: + mode = 'wb' + f = self.open(mode) + try: + f.write(bytes) + finally: + f.close() + + def text(self, encoding=None, errors='strict'): + r""" Open this file, read it in, return the content as a string. + + This uses 'U' mode in Python 2.3 and later, so '\r\n' and '\r' + are automatically translated to '\n'. + + Optional arguments: + + encoding - The Unicode encoding (or character set) of + the file. If present, the content of the file is + decoded and returned as a unicode object; otherwise + it is returned as an 8-bit str. + errors - How to handle Unicode errors; see help(str.decode) + for the options. Default is 'strict'. + """ + if encoding is None: + # 8-bit + f = self.open(_textmode) + try: + return f.read() + finally: + f.close() + else: + # Unicode + f = codecs.open(self, 'r', encoding, errors) + # (Note - Can't use 'U' mode here, since codecs.open + # doesn't support 'U' mode, even in Python 2.3.) + try: + t = f.read() + finally: + f.close() + return (t.replace(u'\r\n', u'\n') + .replace(u'\r\x85', u'\n') + .replace(u'\r', u'\n') + .replace(u'\x85', u'\n') + .replace(u'\u2028', u'\n')) + + def write_text(self, text, encoding=None, errors='strict', linesep=os.linesep, append=False): + r""" Write the given text to this file. + + The default behavior is to overwrite any existing file; + to append instead, use the 'append=True' keyword argument. + + There are two differences between path.write_text() and + path.write_bytes(): newline handling and Unicode handling. + See below. + + Parameters: + + - text - str/unicode - The text to be written. + + - encoding - str - The Unicode encoding that will be used. + This is ignored if 'text' isn't a Unicode string. + + - errors - str - How to handle Unicode encoding errors. + Default is 'strict'. See help(unicode.encode) for the + options. This is ignored if 'text' isn't a Unicode + string. + + - linesep - keyword argument - str/unicode - The sequence of + characters to be used to mark end-of-line. The default is + os.linesep. You can also specify None; this means to + leave all newlines as they are in 'text'. + + - append - keyword argument - bool - Specifies what to do if + the file already exists (True: append to the end of it; + False: overwrite it.) The default is False. + + + --- Newline handling. + + write_text() converts all standard end-of-line sequences + ('\n', '\r', and '\r\n') to your platform's default end-of-line + sequence (see os.linesep; on Windows, for example, the + end-of-line marker is '\r\n'). + + If you don't like your platform's default, you can override it + using the 'linesep=' keyword argument. If you specifically want + write_text() to preserve the newlines as-is, use 'linesep=None'. + + This applies to Unicode text the same as to 8-bit text, except + there are three additional standard Unicode end-of-line sequences: + u'\x85', u'\r\x85', and u'\u2028'. + + (This is slightly different from when you open a file for + writing with fopen(filename, "w") in C or file(filename, 'w') + in Python.) + + + --- Unicode + + If 'text' isn't Unicode, then apart from newline handling, the + bytes are written verbatim to the file. The 'encoding' and + 'errors' arguments are not used and must be omitted. + + If 'text' is Unicode, it is first converted to bytes using the + specified 'encoding' (or the default encoding if 'encoding' + isn't specified). The 'errors' argument applies only to this + conversion. + + """ + if isinstance(text, unicode): + if linesep is not None: + # Convert all standard end-of-line sequences to + # ordinary newline characters. + text = (text.replace(u'\r\n', u'\n') + .replace(u'\r\x85', u'\n') + .replace(u'\r', u'\n') + .replace(u'\x85', u'\n') + .replace(u'\u2028', u'\n')) + text = text.replace(u'\n', linesep) + if encoding is None: + encoding = sys.getdefaultencoding() + bytes = text.encode(encoding, errors) + else: + # It is an error to specify an encoding if 'text' is + # an 8-bit string. + assert encoding is None + + if linesep is not None: + text = (text.replace('\r\n', '\n') + .replace('\r', '\n')) + bytes = text.replace('\n', linesep) + + self.write_bytes(bytes, append) + + def lines(self, encoding=None, errors='strict', retain=True): + r""" Open this file, read all lines, return them in a list. + + Optional arguments: + encoding - The Unicode encoding (or character set) of + the file. The default is None, meaning the content + of the file is read as 8-bit characters and returned + as a list of (non-Unicode) str objects. + errors - How to handle Unicode errors; see help(str.decode) + for the options. Default is 'strict' + retain - If true, retain newline characters; but all newline + character combinations ('\r', '\n', '\r\n') are + translated to '\n'. If false, newline characters are + stripped off. Default is True. + + This uses 'U' mode in Python 2.3 and later. + """ + if encoding is None and retain: + f = self.open(_textmode) + try: + return f.readlines() + finally: + f.close() + else: + return self.text(encoding, errors).splitlines(retain) + + def write_lines(self, lines, encoding=None, errors='strict', + linesep=os.linesep, append=False): + r""" Write the given lines of text to this file. + + By default this overwrites any existing file at this path. + + This puts a platform-specific newline sequence on every line. + See 'linesep' below. + + lines - A list of strings. + + encoding - A Unicode encoding to use. This applies only if + 'lines' contains any Unicode strings. + + errors - How to handle errors in Unicode encoding. This + also applies only to Unicode strings. + + linesep - The desired line-ending. This line-ending is + applied to every line. If a line already has any + standard line ending ('\r', '\n', '\r\n', u'\x85', + u'\r\x85', u'\u2028'), that will be stripped off and + this will be used instead. The default is os.linesep, + which is platform-dependent ('\r\n' on Windows, '\n' on + Unix, etc.) Specify None to write the lines as-is, + like file.writelines(). + + Use the keyword argument append=True to append lines to the + file. The default is to overwrite the file. Warning: + When you use this with Unicode data, if the encoding of the + existing data in the file is different from the encoding + you specify with the encoding= parameter, the result is + mixed-encoding data, which can really confuse someone trying + to read the file later. + """ + if append: + mode = 'ab' + else: + mode = 'wb' + f = self.open(mode) + try: + for line in lines: + isUnicode = isinstance(line, unicode) + if linesep is not None: + # Strip off any existing line-end and add the + # specified linesep string. + if isUnicode: + if line[-2:] in (u'\r\n', u'\x0d\x85'): + line = line[:-2] + elif line[-1:] in (u'\r', u'\n', + u'\x85', u'\u2028'): + line = line[:-1] + else: + if line[-2:] == '\r\n': + line = line[:-2] + elif line[-1:] in ('\r', '\n'): + line = line[:-1] + line += linesep + if isUnicode: + if encoding is None: + encoding = sys.getdefaultencoding() + line = line.encode(encoding, errors) + f.write(line) + finally: + f.close() + + def read_md5(self): + """ Calculate the md5 hash for this file. + + This reads through the entire file. + """ + f = self.open('rb') + try: + m = md5.new() + while True: + d = f.read(8192) + if not d: + break + m.update(d) + finally: + f.close() + return m.digest() + + # --- Methods for querying the filesystem. + + exists = os.path.exists + isdir = os.path.isdir + isfile = os.path.isfile + islink = os.path.islink + ismount = os.path.ismount + + if hasattr(os.path, 'samefile'): + samefile = os.path.samefile + + getatime = os.path.getatime + atime = property( + getatime, None, None, + """ Last access time of the file. """) + + getmtime = os.path.getmtime + mtime = property( + getmtime, None, None, + """ Last-modified time of the file. """) + + if hasattr(os.path, 'getctime'): + getctime = os.path.getctime + ctime = property( + getctime, None, None, + """ Creation time of the file. """) + + getsize = os.path.getsize + size = property( + getsize, None, None, + """ Size of the file, in bytes. """) + + if hasattr(os, 'access'): + def access(self, mode): + """ Return true if current user has access to this path. + + mode - One of the constants os.F_OK, os.R_OK, os.W_OK, os.X_OK + """ + return os.access(self, mode) + + def stat(self): + """ Perform a stat() system call on this path. """ + return os.stat(self) + + def lstat(self): + """ Like path.stat(), but do not follow symbolic links. """ + return os.lstat(self) + + def get_owner(self): + r""" Return the name of the owner of this file or directory. + + This follows symbolic links. + + On Windows, this returns a name of the form ur'DOMAIN\User Name'. + On Windows, a group can own a file or directory. + """ + if os.name == 'nt': + if win32security is None: + raise Exception("path.owner requires win32all to be installed") + desc = win32security.GetFileSecurity( + self, win32security.OWNER_SECURITY_INFORMATION) + sid = desc.GetSecurityDescriptorOwner() + account, domain, typecode = win32security.LookupAccountSid(None, sid) + return domain + u'\\' + account + else: + if pwd is None: + raise NotImplementedError("path.owner is not implemented on this platform.") + st = self.stat() + return pwd.getpwuid(st.st_uid).pw_name + + owner = property( + get_owner, None, None, + """ Name of the owner of this file or directory. """) + + if hasattr(os, 'statvfs'): + def statvfs(self): + """ Perform a statvfs() system call on this path. """ + return os.statvfs(self) + + if hasattr(os, 'pathconf'): + def pathconf(self, name): + return os.pathconf(self, name) + + + # --- Modifying operations on files and directories + + def utime(self, times): + """ Set the access and modified times of this file. """ + os.utime(self, times) + + def chmod(self, mode): + os.chmod(self, mode) + + if hasattr(os, 'chown'): + def chown(self, uid, gid): + os.chown(self, uid, gid) + + def rename(self, new): + os.rename(self, new) + + def renames(self, new): + os.renames(self, new) + + + # --- Create/delete operations on directories + + def mkdir(self, mode=0777): + os.mkdir(self, mode) + + def makedirs(self, mode=0777): + os.makedirs(self, mode) + + def rmdir(self): + os.rmdir(self) + + def removedirs(self): + os.removedirs(self) + + + # --- Modifying operations on files + + def touch(self): + """ Set the access/modified times of this file to the current time. + Create the file if it does not exist. + """ + fd = os.open(self, os.O_WRONLY | os.O_CREAT, 0666) + os.close(fd) + os.utime(self, None) + + def remove(self): + os.remove(self) + + def unlink(self): + os.unlink(self) + + + # --- Links + + if hasattr(os, 'link'): + def link(self, newpath): + """ Create a hard link at 'newpath', pointing to this file. """ + os.link(self, newpath) + + if hasattr(os, 'symlink'): + def symlink(self, newlink): + """ Create a symbolic link at 'newlink', pointing here. """ + os.symlink(self, newlink) + + if hasattr(os, 'readlink'): + def readlink(self): + """ Return the path to which this symbolic link points. + + The result may be an absolute or a relative path. + """ + return self.__class__(os.readlink(self)) + + def readlinkabs(self): + """ Return the path to which this symbolic link points. + + The result is always an absolute path. + """ + p = self.readlink() + if p.isabs(): + return p + else: + return (self.parent / p).abspath() + + + # --- High-level functions from shutil + + copyfile = shutil.copyfile + copymode = shutil.copymode + copystat = shutil.copystat + copy = shutil.copy + copy2 = shutil.copy2 + copytree = shutil.copytree + if hasattr(shutil, 'move'): + move = shutil.move + rmtree = shutil.rmtree + + + # --- Special stuff from os + + if hasattr(os, 'chroot'): + def chroot(self): + os.chroot(self) + + if hasattr(os, 'startfile'): + def startfile(self): + os.startfile(self) + diff --git a/src/libprs500/translations/ca.po b/src/libprs500/translations/ca.po index 8c2507ee4a..8c830b50de 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-23 16:44+PDT\n" +"POT-Creation-Date: 2008-03-24 15:10+PDT\n" "PO-Revision-Date: 2007-11-16 09:07+0100\n" "Last-Translator: libprs500\n" "Language-Team: \n" @@ -452,7 +452,7 @@ msgstr "Cerca la nova ubicació de la base de dades" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:146 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:149 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:153 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:256 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:185 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:186 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:187 @@ -1214,27 +1214,76 @@ msgstr "" msgid "Add tag to available tags and apply it to current book" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 -msgid "Add custom news source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -msgid "Available user profiles" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 -msgid "Add/Update &profile" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 -msgid "&Remove profile" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:60 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:70 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 msgid "Switch to Advanced mode" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:65 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:73 +msgid "Switch to Basic mode" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +msgid "Feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:84 +msgid "The feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:88 +msgid "Feed must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:89 +msgid "The feed %s must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:94 +msgid "Already exists" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:95 +msgid "This feed has already been added to the recipe" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:136 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:145 +msgid "Invalid input" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:137 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:146 +msgid "

Could not create recipe. Error:
%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:152 +msgid "Replace recipe?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:153 +msgid "A custom recipe named %s already exists. Do you want to replace it?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +msgid "Add custom news source" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +msgid "Available user profiles" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +msgid "Add/Update &profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +msgid "&Remove profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:224 msgid "" "\n

Create a basic news profile, by adding RSS feeds to it.
For most feeds, you will have to use the "Advanced" setting to further customize the fetch process.
The Basic tab is useful mainly for feeds that have the full article content embedded within them.

\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

        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 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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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 profiles, please visit UserProfiles\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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Try to download &full articles\x00Try to follow links in the RSS feed to full articles on the web. If you enable this option, you\'re probably going to end up having to use the advanced mode.\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-23 16:44+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 Zeichen\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 :\x00Profil 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\x00L\xc3\xa4nge der Zu&sammenfassung:\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 Nachrichten-Grundprofil, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />F\xc3\xbcr die meisten Feeds m\xc3\xbcssen Sie die "Erweitert" Einstellung verwenden, um den Abruf weiter anzupassen.<br />Die Einstellung "Einfach" ist f\xc3\xbcr Feeds ausreichend, die den vollst\xc3\xa4ndigen Nachrichten-Inhalt im Feed schon eingebettet haben.</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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\x00Ben\xc3\xb6tigen Sie Hilfe beim Erstellen von weiteren Nachrichten-Profilen? Schauen Sie hier vorbei: <a href="https://libprs500.kovidgoyal.net/wiki/UserProfiles">UserProfiles</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\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\x00Profil&titel:\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 : \x00Profil-Quellcode (Python)\x00Progression\x00Editeur\x00Note\x00Note de ce livre. de 0 \xc3\xa0 5 \xc3\xa9toiles\x00Lecteur \n%s disponible\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\x00Feeds aus dem Profil 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.\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\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.\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.\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 &vollst\xc3\xa4ndige Artikel zu laden\x00Verkn\xc3\xbcpfungen im RSS Feed bis zu den vollst\xc3\xa4ndigen Artikeln im Netz verfolgen. Falls Sie diese Option w\xc3\xa4hlen, m\xc3\xbcssen Sie in den meisten F\xc3\xa4llen den erweiterten Modus zur Konfiguration benutzen.\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\x9a\x01\x00\x00\x1c\x00\x00\x00\xec\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x19\x00\x00\x0e\x00\x00\x00\xbd\x19\x00\x00!\x00\x00\x00\xcc\x19\x00\x00\x0b\x00\x00\x00\xee\x19\x00\x00\x05\x00\x00\x00\xfa\x19\x00\x00\x06\x00\x00\x00\x00\x1a\x00\x00\x17\x00\x00\x00\x07\x1a\x00\x00\x0b\x00\x00\x00\x1f\x1a\x00\x00\x04\x00\x00\x00+\x1a\x00\x00\x03\x00\x00\x000\x1a\x00\x00\x08\x00\x00\x004\x1a\x00\x00\x06\x00\x00\x00=\x1a\x00\x00\x1c\x00\x00\x00D\x1a\x00\x00\x0e\x00\x00\x00a\x1a\x00\x00\x0c\x00\x00\x00p\x1a\x00\x00\t\x00\x00\x00}\x1a\x00\x00\t\x00\x00\x00\x87\x1a\x00\x00\x0c\x00\x00\x00\x91\x1a\x00\x00\x0f\x00\x00\x00\x9e\x1a\x00\x00\x11\x00\x00\x00\xae\x1a\x00\x00\x1a\x00\x00\x00\xc0\x1a\x00\x00\x0c\x00\x00\x00\xdb\x1a\x00\x00\x1d\x00\x00\x00\xe8\x1a\x00\x00\x0f\x00\x00\x00\x06\x1b\x00\x00\r\x00\x00\x00\x16\x1b\x00\x00)\x00\x00\x00$\x1b\x00\x00"\x00\x00\x00N\x1b\x00\x00\x18\x00\x00\x00q\x1b\x00\x00\x0b\x00\x00\x00\x8a\x1b\x00\x00\x10\x00\x00\x00\x96\x1b\x00\x00\x17\x00\x00\x00\xa7\x1b\x00\x00\n\x00\x00\x00\xbf\x1b\x00\x00\x0c\x00\x00\x00\xca\x1b\x00\x00\x1e\x00\x00\x00\xd7\x1b\x00\x00\t\x00\x00\x00\xf6\x1b\x00\x00\x0c\x00\x00\x00\x00\x1c\x00\x00\x08\x00\x00\x00\r\x1c\x00\x00\x14\x00\x00\x00\x16\x1c\x00\x00\x0f\x00\x00\x00+\x1c\x00\x00\r\x00\x00\x00;\x1c\x00\x00\x0e\x00\x00\x00I\x1c\x00\x00\x08\x00\x00\x00X\x1c\x00\x00\x08\x00\x00\x00a\x1c\x00\x00\x07\x00\x00\x00j\x1c\x00\x00\x0c\x00\x00\x00r\x1c\x00\x00\x0e\x00\x00\x00\x7f\x1c\x00\x00\x12\x00\x00\x00\x8e\x1c\x00\x00\x10\x00\x00\x00\xa1\x1c\x00\x00\x05\x00\x00\x00\xb2\x1c\x00\x00\x08\x00\x00\x00\xb8\x1c\x00\x00\x0c\x00\x00\x00\xc1\x1c\x00\x00\n\x00\x00\x00\xce\x1c\x00\x00\x0e\x00\x00\x00\xd9\x1c\x00\x00\x03\x00\x00\x00\xe8\x1c\x00\x001\x00\x00\x00\xec\x1c\x00\x00"\x00\x00\x00\x1e\x1d\x00\x00=\x00\x00\x00A\x1d\x00\x00\x18\x00\x00\x00\x7f\x1d\x00\x00+\x00\x00\x00\x98\x1d\x00\x00k\x02\x00\x00\xc4\x1d\x00\x00\xa3\x01\x00\x000 \x00\x00\x82\x02\x00\x00\xd4!\x00\x00>\x00\x00\x00W$\x00\x00S\x00\x00\x00\x96$\x00\x005\x00\x00\x00\xea$\x00\x00p\x00\x00\x00 %\x00\x00a\x00\x00\x00\x91%\x00\x00G\x00\x00\x00\xf3%\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\x00X\x00\x00\x00E)\x00\x00\r\x00\x00\x00\x9e)\x00\x00\x0f\x00\x00\x00\xac)\x00\x00\x0b\x00\x00\x00\xbc)\x00\x00\x0b\x00\x00\x00\xc8)\x00\x00\x18\x00\x00\x00\xd4)\x00\x007\x00\x00\x00\xed)\x00\x004\x00\x00\x00%*\x00\x00.\x00\x00\x00Z*\x00\x00\t\x00\x00\x00\x89*\x00\x00!\x00\x00\x00\x93*\x00\x00b\x00\x00\x00\xb5*\x00\x00o\x00\x00\x00\x18+\x00\x00\x16\x00\x00\x00\x88+\x00\x00\x13\x00\x00\x00\x9f+\x00\x006\x00\x00\x00\xb3+\x00\x00\x13\x00\x00\x00\xea+\x00\x00m\x00\x00\x00\xfe+\x00\x00\x08\x00\x00\x00l,\x00\x00\x0f\x00\x00\x00u,\x00\x00\x0f\x00\x00\x00\x85,\x00\x00\x05\x00\x00\x00\x95,\x00\x00\x03\x00\x00\x00\x9b,\x00\x00\x19\x00\x00\x00\x9f,\x00\x00\x1b\x00\x00\x00\xb9,\x00\x00\x16\x00\x00\x00\xd5,\x00\x00\x06\x00\x00\x00\xec,\x00\x00\x0e\x00\x00\x00\xf3,\x00\x00\r\x00\x00\x00\x02-\x00\x00\t\x00\x00\x00\x10-\x00\x00\x08\x00\x00\x00\x1a-\x00\x00\x11\x00\x00\x00#-\x00\x00\x17\x00\x00\x005-\x00\x00\x04\x00\x00\x00M-\x00\x00\x10\x00\x00\x00R-\x00\x00\x05\x00\x00\x00c-\x00\x00!\x00\x00\x00i-\x00\x00\x10\x00\x00\x00\x8b-\x00\x00\x05\x00\x00\x00\x9c-\x00\x00(\x00\x00\x00\xa2-\x00\x00\n\x00\x00\x00\xcb-\x00\x00.\x00\x00\x00\xd6-\x00\x005\x00\x00\x00\x05.\x00\x00$\x00\x00\x00;.\x00\x00\x0c\x00\x00\x00`.\x00\x00\x1a\x00\x00\x00m.\x00\x00\x10\x00\x00\x00\x88.\x00\x00.\x00\x00\x00\x99.\x00\x00\x0e\x00\x00\x00\xc8.\x00\x00\x0e\x00\x00\x00\xd7.\x00\x007\x00\x00\x00\xe6.\x00\x00\x14\x00\x00\x00\x1e/\x00\x00\x12\x00\x00\x003/\x00\x00#\x00\x00\x00F/\x00\x00\x0f\x00\x00\x00j/\x00\x00Z\x00\x00\x00z/\x00\x00\x19\x00\x00\x00\xd5/\x00\x00\x0b\x00\x00\x00\xef/\x00\x00\x13\x00\x00\x00\xfb/\x00\x00\x0b\x00\x00\x00\x0f0\x00\x00\x11\x00\x00\x00\x1b0\x00\x00\x08\x00\x00\x00-0\x00\x00\x14\x00\x00\x0060\x00\x00\x0f\x00\x00\x00K0\x00\x00R\x00\x00\x00[0\x00\x00!\x00\x00\x00\xae0\x00\x00\x1d\x00\x00\x00\xd00\x00\x00H\x00\x00\x00\xee0\x00\x00\x11\x00\x00\x0071\x00\x00\r\x00\x00\x00I1\x00\x00%\x00\x00\x00W1\x00\x00\x19\x00\x00\x00}1\x00\x00!\x00\x00\x00\x971\x00\x007\x00\x00\x00\xb91\x00\x00\x08\x00\x00\x00\xf11\x00\x00\r\x00\x00\x00\xfa1\x00\x00\t\x00\x00\x00\x082\x00\x00\x10\x00\x00\x00\x122\x00\x00\x11\x00\x00\x00#2\x00\x00\x0f\x00\x00\x0052\x00\x00\x14\x00\x00\x00E2\x00\x00\x0e\x00\x00\x00Z2\x00\x00\x1c\x00\x00\x00i2\x00\x00;\x00\x00\x00\x862\x00\x00\x15\x00\x00\x00\xc22\x00\x00R\x00\x00\x00\xd82\x00\x00\x17\x00\x00\x00+3\x00\x00\x18\x00\x00\x00C3\x00\x00\x0b\x00\x00\x00\\3\x00\x00\x13\x00\x00\x00h3\x00\x00\x04\x00\x00\x00|3\x00\x00\x19\x00\x00\x00\x813\x00\x00\x03\x00\x00\x00\x9b3\x00\x00h\x00\x00\x00\x9f3\x00\x00\x0e\x00\x00\x00\x084\x00\x00\x1b\x00\x00\x00\x174\x00\x00\x1a\x00\x00\x0034\x00\x00\x11\x00\x00\x00N4\x00\x00\x19\x00\x00\x00`4\x00\x00\x11\x00\x00\x00z4\x00\x00\x01\x00\x00\x00\x8c4\x00\x00\x05\x00\x00\x00\x8e4\x00\x00\x15\x00\x00\x00\x944\x00\x00\x15\x00\x00\x00\xaa4\x00\x00\x15\x00\x00\x00\xc04\x00\x00\x15\x00\x00\x00\xd64\x00\x00\x1a\x00\x00\x00\xec4\x00\x00\x0e\x00\x00\x00\x075\x00\x00\x1f\x00\x00\x00\x165\x00\x00C\x00\x00\x0065\x00\x00\x05\x00\x00\x00z5\x00\x00\x1f\x00\x00\x00\x805\x00\x00\x12\x00\x00\x00\xa05\x00\x00\x17\x00\x00\x00\xb35\x00\x00\x1f\x00\x00\x00\xcb5\x00\x00\'\x00\x00\x00\xeb5\x00\x003\x00\x00\x00\x136\x00\x00*\x00\x00\x00G6\x00\x00\n\x00\x00\x00r6\x00\x00\x16\x00\x00\x00}6\x00\x00\x10\x00\x00\x00\x946\x00\x00\x05\x00\x00\x00\xa56\x00\x00\x1d\x00\x00\x00\xab6\x00\x00\x0e\x00\x00\x00\xc96\x00\x00\x1a\x00\x00\x00\xd86\x00\x00\n\x00\x00\x00\xf36\x00\x00\x10\x00\x00\x00\xfe6\x00\x00\r\x00\x00\x00\x0f7\x00\x00\x11\x00\x00\x00\x1d7\x00\x00\x1f\x00\x00\x00/7\x00\x00\x13\x00\x00\x00O7\x00\x00\x1b\x00\x00\x00c7\x00\x00\x05\x00\x00\x00\x7f7\x00\x00\x0b\x00\x00\x00\x857\x00\x008\x00\x00\x00\x917\x00\x00\x08\x00\x00\x00\xca7\x00\x00\x88\x00\x00\x00\xd37\x00\x00\x1d\x01\x00\x00\\8\x00\x00J\x00\x00\x00z9\x00\x00#\x00\x00\x00\xc59\x00\x00\x04\x00\x00\x00\xe99\x00\x00\x06\x00\x00\x00\xee9\x00\x00\x07\x00\x00\x00\xf59\x00\x00\x07\x00\x00\x00\xfd9\x00\x00\'\x00\x00\x00\x05:\x00\x00\x1b\x00\x00\x00-:\x00\x00\x19\x00\x00\x00I:\x00\x00\x06\x00\x00\x00c:\x00\x00\x0c\x00\x00\x00j:\x00\x00\t\x00\x00\x00w:\x00\x00\x06\x00\x00\x00\x81:\x00\x00\xdc\x01\x00\x00\x88:\x00\x00n\x00\x00\x00e<\x00\x00a\x00\x00\x00\xd4<\x00\x00\x0e\x00\x00\x006=\x00\x00\x0e\x00\x00\x00E=\x00\x00\xa8\x00\x00\x00T=\x00\x00&\x00\x00\x00\xfd=\x00\x00\x10\x00\x00\x00$>\x00\x00\x19\x00\x00\x005>\x00\x00\x1a\x00\x00\x00O>\x00\x00.\x00\x00\x00j>\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\x07@\x00\x00\x10\x00\x00\x00\x81@\x00\x00\x04\x00\x00\x00\x92@\x00\x00\x06\x00\x00\x00\x97@\x00\x00"\x00\x00\x00\x9e@\x00\x00\t\x00\x00\x00\xc1@\x00\x00\n\x00\x00\x00\xcb@\x00\x00\x14\x00\x00\x00\xd6@\x00\x00\x10\x00\x00\x00\xeb@\x00\x00\x11\x00\x00\x00\xfc@\x00\x00\x08\x00\x00\x00\x0eA\x00\x00\x10\x00\x00\x00\x17A\x00\x00\x12\x00\x00\x00(A\x00\x00\x04\x00\x00\x00;A\x00\x00^\x00\x00\x00@A\x00\x00\x0f\x00\x00\x00\x9fA\x00\x00\n\x00\x00\x00\xafA\x00\x00\x07\x00\x00\x00\xbaA\x00\x00-\x00\x00\x00\xc2A\x00\x00+\x00\x00\x00\xf0A\x00\x00F\x00\x00\x00\x1cB\x00\x008\x00\x00\x00cB\x00\x00s\x00\x00\x00\x9cB\x00\x00\x0f\x00\x00\x00\x10C\x00\x00\n\x00\x00\x00 C\x00\x00\x10\x00\x00\x00+C\x00\x00:\x00\x00\x00<C\x00\x00\x0f\x00\x00\x00wC\x00\x00\x04\x00\x00\x00\x87C\x00\x00;\x00\x00\x00\x8cC\x00\x00G\x00\x00\x00\xc8C\x00\x001\x00\x00\x00\x10D\x00\x00Y\x00\x00\x00BD\x00\x004\x00\x00\x00\x9cD\x00\x00\x80\x00\x00\x00\xd1D\x00\x00H\x00\x00\x00RE\x00\x00\r\x00\x00\x00\x9bE\x00\x00\x0f\x00\x00\x00\xa9E\x00\x00\xbc\x00\x00\x00\xb9E\x00\x00\x1c\x00\x00\x00vF\x00\x00\x08\x00\x00\x00\x93F\x00\x00\t\x00\x00\x00\x9cF\x00\x00\x06\x00\x00\x00\xa6F\x00\x00\x1e\x00\x00\x00\xadF\x00\x00\x13\x00\x00\x00\xccF\x00\x00\x13\x00\x00\x00\xe0F\x00\x00+\x00\x00\x00\xf4F\x00\x00*\x00\x00\x00 G\x00\x000\x00\x00\x00KG\x00\x00)\x00\x00\x00|G\x00\x00<\x00\x00\x00\xa6G\x00\x00\x0c\x00\x00\x00\xe3G\x00\x00\x18\x00\x00\x00\xf0G\x00\x00<\x00\x00\x00\tH\x00\x000\x00\x00\x00FH\x00\x00\x84\x00\x00\x00wH\x00\x00X\x00\x00\x00\xfcH\x00\x00\x12\x00\x00\x00UI\x00\x00-\x00\x00\x00hI\x00\x00\x0c\x00\x00\x00\x96I\x00\x00\x0c\x00\x00\x00\xa3I\x00\x00\x0c\x00\x00\x00\xb0I\x00\x00"\x00\x00\x00\xbdI\x00\x009\x00\x00\x00\xe0I\x00\x00\x0f\x00\x00\x00\x1aJ\x00\x00V\x00\x00\x00*J\x00\x00r\x00\x00\x00\x81J\x00\x00G\x00\x00\x00\xf4J\x00\x00\'\x00\x00\x00<K\x00\x00\x0e\x00\x00\x00dK\x00\x00\x13\x00\x00\x00sK\x00\x00\x14\x00\x00\x00\x87K\x00\x00#\x00\x00\x00\x9cK\x00\x00\x06\x00\x00\x00\xc0K\x00\x00\r\x00\x00\x00\xc7K\x00\x00\r\x00\x00\x00\xd5K\x00\x00\x07\x00\x00\x00\xe3K\x00\x00\x1e\x00\x00\x00\xebK\x00\x00\x0b\x00\x00\x00\nL\x00\x00\x17\x00\x00\x00\x16L\x00\x00\x1b\x00\x00\x00.L\x00\x00\x1a\x00\x00\x00JL\x00\x00\x0e\x00\x00\x00eL\x00\x00^\x00\x00\x00tL\x00\x00\x12\x00\x00\x00\xd3L\x00\x00\x10\x00\x00\x00\xe6L\x00\x00\x10\x00\x00\x00\xf7L\x00\x00g\x00\x00\x00\x08M\x00\x00c\x00\x00\x00pM\x00\x007\x00\x00\x00\xd4M\x00\x00!\x00\x00\x00\x0cN\x00\x00d\x00\x00\x00.N\x00\x00\t\x00\x00\x00\x93N\x00\x00\x17\x00\x00\x00\x9dN\x00\x00\x16\x00\x00\x00\xb5N\x00\x00\x11\x00\x00\x00\xccN\x00\x00\x04\x01\x00\x00\xdeN\x00\x00z\x00\x00\x00\xe3O\x00\x00\x85\x00\x00\x00^P\x00\x00\xb6\x00\x00\x00\xe4P\x00\x00P\x00\x00\x00\x9bQ\x00\x00+\x01\x00\x00\xecQ\x00\x00#\x00\x00\x00\x18S\x00\x00\x06\x00\x00\x00<S\x00\x00\x17\x00\x00\x00CS\x00\x00\x07\x00\x00\x00[S\x00\x00\x03\x00\x00\x00cS\x00\x00\n\x00\x00\x00gS\x00\x00\x13\x00\x00\x00rS\x00\x00\x04\x00\x00\x00\x86S\x00\x00\x85\x00\x00\x00\x8bS\x00\x00\x04\x00\x00\x00\x11T\x00\x00\t\x00\x00\x00\x16T\x00\x000\x00\x00\x00 T\x00\x00X\x00\x00\x00QT\x00\x00\x9d\x00\x00\x00\xaaT\x00\x00&\x00\x00\x00HU\x00\x00\x1e\x00\x00\x00oU\x00\x00v\x00\x00\x00\x8eU\x00\x00\'\x00\x00\x00\x05V\x00\x00"\x00\x00\x00-V\x00\x00B\x00\x00\x00PV\x00\x00^\x00\x00\x00\x93V\x00\x00h\x00\x00\x00\xf2V\x00\x00\t\x00\x00\x00[W\x00\x00\x05\x00\x00\x00eW\x00\x00\x15\x00\x00\x00kW\x00\x00\x06\x00\x00\x00\x81W\x00\x00+\x00\x00\x00\x88W\x00\x00\x1e\x00\x00\x00\xb4W\x00\x00\x9c\x00\x00\x00\xd3W\x00\x00\x1b\x00\x00\x00pX\x00\x00&\x00\x00\x00\x8cX\x00\x00\x0b\x00\x00\x00\xb3X\x00\x00\x07\x00\x00\x00\xbfX\x00\x00\x13\x00\x00\x00\xc7X\x00\x00\x0c\x00\x00\x00\xdbX\x00\x00\x10\x00\x00\x00\xe8X\x00\x00\x10\x00\x00\x00\xf9X\x00\x00%\x00\x00\x00\nY\x00\x00\x1b\x00\x00\x000Y\x00\x00\xb4\x00\x00\x00LY\x00\x002\x00\x00\x00\x01Z\x00\x00\x14\x00\x00\x004Z\x00\x00_\x00\x00\x00IZ\x00\x00:\x00\x00\x00\xa9Z\x00\x00*\x00\x00\x00\xe4Z\x00\x00\x04\x00\x00\x00\x0f[\x00\x00\x14\x00\x00\x00\x14[\x00\x00\x07\x00\x00\x00)[\x00\x00\x07\x00\x00\x001[\x00\x00-\x00\x00\x009[\x00\x00d\x00\x00\x00g[\x00\x00#\x00\x00\x00\xcc[\x00\x002\x00\x00\x00\xf0[\x00\x003\x00\x00\x00#\\\x00\x00\x08\x00\x00\x00W\\\x00\x00\t\x00\x00\x00`\\\x00\x00\x1e\x01\x00\x00j\\\x00\x00 \x00\x00\x00\x89]\x00\x00\x1d\x00\x00\x00\xaa]\x00\x00\x08\x00\x00\x00\xc8]\x00\x00\x05\x00\x00\x00\xd1]\x00\x00\x04\x00\x00\x00\xd7]\x00\x00\x1a\x00\x00\x00\xdc]\x00\x00\x10\x00\x00\x00\xf7]\x00\x00\x06\x00\x00\x00\x08^\x00\x00\n\x00\x00\x00\x0f^\x00\x00\t\x00\x00\x00\x1a^\x00\x00\t\x00\x00\x00$^\x00\x00"\x00\x00\x00.^\x00\x00\x12\x00\x00\x00Q^\x00\x00\x0f\x00\x00\x00d^\x00\x00\x0e\x00\x00\x00t^\x00\x00\x12\x00\x00\x00\x83^\x00\x00\n\x00\x00\x00\x96^\x00\x00\x10\x00\x00\x00\xa1^\x00\x00\x15\x00\x00\x00\xb2^\x00\x00$\x00\x00\x00\xc8^\x00\x00\x0c\x00\x00\x00\xed^\x00\x00-\x00\x00\x00\xfa^\x00\x00\x19\x00\x00\x00(_\x00\x00\x10\x00\x00\x00B_\x00\x00,\x00\x00\x00S_\x00\x00&\x00\x00\x00\x80_\x00\x00\x1e\x00\x00\x00\xa7_\x00\x00\x0e\x00\x00\x00\xc6_\x00\x00\x13\x00\x00\x00\xd5_\x00\x00.\x00\x00\x00\xe9_\x00\x00\r\x00\x00\x00\x18`\x00\x00\x11\x00\x00\x00&`\x00\x00(\x00\x00\x008`\x00\x00\x08\x00\x00\x00a`\x00\x00\x0b\x00\x00\x00j`\x00\x00\x0c\x00\x00\x00v`\x00\x00\x14\x00\x00\x00\x83`\x00\x00\x11\x00\x00\x00\x98`\x00\x00\x15\x00\x00\x00\xaa`\x00\x00\x0c\x00\x00\x00\xc0`\x00\x00\t\x00\x00\x00\xcd`\x00\x00\t\x00\x00\x00\xd7`\x00\x00\x07\x00\x00\x00\xe1`\x00\x00\x13\x00\x00\x00\xe9`\x00\x00\x12\x00\x00\x00\xfd`\x00\x00\x1e\x00\x00\x00\x10a\x00\x00\x1c\x00\x00\x00/a\x00\x00\x05\x00\x00\x00La\x00\x00\n\x00\x00\x00Ra\x00\x00\x10\x00\x00\x00]a\x00\x00\x0e\x00\x00\x00na\x00\x00\x19\x00\x00\x00}a\x00\x00\x03\x00\x00\x00\x97a\x00\x00/\x00\x00\x00\x9ba\x00\x00)\x00\x00\x00\xcba\x00\x00>\x00\x00\x00\xf5a\x00\x00\x1e\x00\x00\x004b\x00\x00-\x00\x00\x00Sb\x00\x00\xa4\x02\x00\x00\x81b\x00\x00\xa3\x01\x00\x00&e\x00\x00\x8c\x02\x00\x00\xcaf\x00\x00>\x00\x00\x00Wi\x00\x00L\x00\x00\x00\x96i\x00\x004\x00\x00\x00\xe3i\x00\x00\x90\x00\x00\x00\x18j\x00\x00\x86\x00\x00\x00\xa9j\x00\x00D\x00\x00\x000k\x00\x00\xcd\x00\x00\x00uk\x00\x00\x7f\x00\x00\x00Cl\x00\x00\xcd\x00\x00\x00\xc3l\x00\x00\xa4\x01\x00\x00\x91m\x00\x00&\x00\x00\x006o\x00\x00\x01\x00\x00\x00]o\x00\x00_\x00\x00\x00_o\x00\x00\x16\x00\x00\x00\xbfo\x00\x00\x16\x00\x00\x00\xd6o\x00\x00\x0f\x00\x00\x00\xedo\x00\x00\x18\x00\x00\x00\xfdo\x00\x00/\x00\x00\x00\x16p\x00\x007\x00\x00\x00Fp\x00\x00I\x00\x00\x00~p\x00\x00;\x00\x00\x00\xc8p\x00\x00\x0f\x00\x00\x00\x04q\x00\x003\x00\x00\x00\x14q\x00\x00}\x00\x00\x00Hq\x00\x00\x98\x00\x00\x00\xc6q\x00\x00$\x00\x00\x00_r\x00\x00!\x00\x00\x00\x84r\x00\x00Q\x00\x00\x00\xa6r\x00\x00!\x00\x00\x00\xf8r\x00\x00m\x00\x00\x00\x1as\x00\x00\t\x00\x00\x00\x88s\x00\x00\x10\x00\x00\x00\x92s\x00\x00\x10\x00\x00\x00\xa3s\x00\x00\x05\x00\x00\x00\xb4s\x00\x00\t\x00\x00\x00\xbas\x00\x00#\x00\x00\x00\xc4s\x00\x00!\x00\x00\x00\xe8s\x00\x00\x13\x00\x00\x00\nt\x00\x00\x05\x00\x00\x00\x1et\x00\x00\x0f\x00\x00\x00$t\x00\x00\x11\x00\x00\x004t\x00\x00\x08\x00\x00\x00Ft\x00\x00\x08\x00\x00\x00Ot\x00\x00\x13\x00\x00\x00Xt\x00\x00\x1b\x00\x00\x00lt\x00\x00\t\x00\x00\x00\x88t\x00\x00\x1a\x00\x00\x00\x92t\x00\x00\x07\x00\x00\x00\xadt\x00\x003\x00\x00\x00\xb5t\x00\x00\x16\x00\x00\x00\xe9t\x00\x00\x07\x00\x00\x00\x00u\x00\x00*\x00\x00\x00\x08u\x00\x00\x07\x00\x00\x003u\x00\x007\x00\x00\x00;u\x00\x00?\x00\x00\x00su\x00\x00+\x00\x00\x00\xb3u\x00\x00\x0f\x00\x00\x00\xdfu\x00\x00%\x00\x00\x00\xefu\x00\x00\x14\x00\x00\x00\x15v\x00\x00/\x00\x00\x00*v\x00\x00\x10\x00\x00\x00Zv\x00\x00\x13\x00\x00\x00kv\x00\x009\x00\x00\x00\x7fv\x00\x00\x1c\x00\x00\x00\xb9v\x00\x00\x1c\x00\x00\x00\xd6v\x00\x005\x00\x00\x00\xf3v\x00\x00\x1d\x00\x00\x00)w\x00\x00g\x00\x00\x00Gw\x00\x00-\x00\x00\x00\xafw\x00\x00\x10\x00\x00\x00\xddw\x00\x00\x14\x00\x00\x00\xeew\x00\x00\x11\x00\x00\x00\x03x\x00\x00\x1e\x00\x00\x00\x15x\x00\x00\t\x00\x00\x004x\x00\x00 \x00\x00\x00>x\x00\x00\x10\x00\x00\x00_x\x00\x00F\x00\x00\x00px\x00\x00\x1d\x00\x00\x00\xb7x\x00\x00\x1d\x00\x00\x00\xd5x\x00\x00H\x00\x00\x00\xf3x\x00\x00\x18\x00\x00\x00<y\x00\x00\x0c\x00\x00\x00Uy\x00\x00#\x00\x00\x00by\x00\x00\x1b\x00\x00\x00\x86y\x00\x00&\x00\x00\x00\xa2y\x00\x00J\x00\x00\x00\xc9y\x00\x00\n\x00\x00\x00\x14z\x00\x00\r\x00\x00\x00\x1fz\x00\x00\t\x00\x00\x00-z\x00\x00\x12\x00\x00\x007z\x00\x00\x13\x00\x00\x00Jz\x00\x00\x11\x00\x00\x00^z\x00\x00\x19\x00\x00\x00pz\x00\x00\x0f\x00\x00\x00\x8az\x00\x00#\x00\x00\x00\x9az\x00\x00W\x00\x00\x00\xbez\x00\x00\x1c\x00\x00\x00\x16{\x00\x00e\x00\x00\x003{\x00\x00\x1d\x00\x00\x00\x99{\x00\x00"\x00\x00\x00\xb7{\x00\x00\n\x00\x00\x00\xda{\x00\x00\x1f\x00\x00\x00\xe5{\x00\x00\x04\x00\x00\x00\x05|\x00\x00B\x00\x00\x00\n|\x00\x00\x07\x00\x00\x00M|\x00\x00r\x00\x00\x00U|\x00\x00\x14\x00\x00\x00\xc8|\x00\x00\x1b\x00\x00\x00\xdd|\x00\x00!\x00\x00\x00\xf9|\x00\x00\x10\x00\x00\x00\x1b}\x00\x00\x18\x00\x00\x00,}\x00\x00\x12\x00\x00\x00E}\x00\x00\x01\x00\x00\x00X}\x00\x00\x05\x00\x00\x00Z}\x00\x00\x19\x00\x00\x00`}\x00\x00\x17\x00\x00\x00z}\x00\x00\x19\x00\x00\x00\x92}\x00\x00\x18\x00\x00\x00\xac}\x00\x00\x1e\x00\x00\x00\xc5}\x00\x00\x11\x00\x00\x00\xe4}\x00\x00)\x00\x00\x00\xf6}\x00\x00V\x00\x00\x00 ~\x00\x00\x06\x00\x00\x00w~\x00\x00*\x00\x00\x00~~\x00\x00\x15\x00\x00\x00\xa9~\x00\x00"\x00\x00\x00\xbf~\x00\x00"\x00\x00\x00\xe2~\x00\x00,\x00\x00\x00\x05\x7f\x00\x00:\x00\x00\x002\x7f\x00\x00/\x00\x00\x00m\x7f\x00\x00\n\x00\x00\x00\x9d\x7f\x00\x00$\x00\x00\x00\xa8\x7f\x00\x00\x0f\x00\x00\x00\xcd\x7f\x00\x00\x06\x00\x00\x00\xdd\x7f\x00\x00$\x00\x00\x00\xe4\x7f\x00\x00\x10\x00\x00\x00\t\x80\x00\x00!\x00\x00\x00\x1a\x80\x00\x00\x18\x00\x00\x00<\x80\x00\x00\x17\x00\x00\x00U\x80\x00\x00\x0c\x00\x00\x00m\x80\x00\x00\x10\x00\x00\x00z\x80\x00\x00#\x00\x00\x00\x8b\x80\x00\x00\x17\x00\x00\x00\xaf\x80\x00\x00\x1d\x00\x00\x00\xc7\x80\x00\x00\x07\x00\x00\x00\xe5\x80\x00\x00\x0b\x00\x00\x00\xed\x80\x00\x000\x00\x00\x00\xf9\x80\x00\x00\x06\x00\x00\x00*\x81\x00\x00\xad\x00\x00\x001\x81\x00\x00%\x01\x00\x00\xdf\x81\x00\x00]\x00\x00\x00\x05\x83\x00\x00.\x00\x00\x00c\x83\x00\x00\x03\x00\x00\x00\x92\x83\x00\x00\x06\x00\x00\x00\x96\x83\x00\x00\x07\x00\x00\x00\x9d\x83\x00\x00\x08\x00\x00\x00\xa5\x83\x00\x004\x00\x00\x00\xae\x83\x00\x00#\x00\x00\x00\xe3\x83\x00\x00\x1e\x00\x00\x00\x07\x84\x00\x00\n\x00\x00\x00&\x84\x00\x00\x13\x00\x00\x001\x84\x00\x00\x11\x00\x00\x00E\x84\x00\x00\x06\x00\x00\x00W\x84\x00\x00\xf1\x01\x00\x00^\x84\x00\x00\x8f\x00\x00\x00P\x86\x00\x00o\x00\x00\x00\xe0\x86\x00\x00\x16\x00\x00\x00P\x87\x00\x00\x12\x00\x00\x00g\x87\x00\x00\xc7\x00\x00\x00z\x87\x00\x00*\x00\x00\x00B\x88\x00\x00\x14\x00\x00\x00m\x88\x00\x00)\x00\x00\x00\x82\x88\x00\x00)\x00\x00\x00\xac\x88\x00\x00@\x00\x00\x00\xd6\x88\x00\x00\x1f\x00\x00\x00\x17\x89\x00\x00#\x00\x00\x007\x89\x00\x00\x07\x00\x00\x00[\x89\x00\x00"\x00\x00\x00c\x89\x00\x00\t\x00\x00\x00\x86\x89\x00\x00\t\x00\x00\x00\x90\x89\x00\x007\x00\x00\x00\x9a\x89\x00\x00\n\x00\x00\x00\xd2\x89\x00\x007\x00\x00\x00\xdd\x89\x00\x00\t\x00\x00\x00\x15\x8a\x00\x003\x00\x00\x00\x1f\x8a\x00\x009\x00\x00\x00S\x8a\x00\x00\x0e\x00\x00\x00\x8d\x8a\x00\x001\x00\x00\x00\x9c\x8a\x00\x00\x10\x00\x00\x00\xce\x8a\x00\x00\t\x00\x00\x00\xdf\x8a\x00\x00\x84\x00\x00\x00\xe9\x8a\x00\x00\x17\x00\x00\x00n\x8b\x00\x00\x04\x00\x00\x00\x86\x8b\x00\x00\n\x00\x00\x00\x8b\x8b\x00\x006\x00\x00\x00\x96\x8b\x00\x00\x10\x00\x00\x00\xcd\x8b\x00\x00\x16\x00\x00\x00\xde\x8b\x00\x00\x16\x00\x00\x00\xf5\x8b\x00\x00\x16\x00\x00\x00\x0c\x8c\x00\x00\x16\x00\x00\x00#\x8c\x00\x00\x0c\x00\x00\x00:\x8c\x00\x00\x1e\x00\x00\x00G\x8c\x00\x00\x19\x00\x00\x00f\x8c\x00\x00\x03\x00\x00\x00\x80\x8c\x00\x00_\x00\x00\x00\x84\x8c\x00\x00\x18\x00\x00\x00\xe4\x8c\x00\x00\x0c\x00\x00\x00\xfd\x8c\x00\x00\x07\x00\x00\x00\n\x8d\x00\x00\x1d\x00\x00\x00\x12\x8d\x00\x00\x1b\x00\x00\x000\x8d\x00\x00H\x00\x00\x00L\x8d\x00\x00D\x00\x00\x00\x95\x8d\x00\x00\x96\x00\x00\x00\xda\x8d\x00\x00\x12\x00\x00\x00q\x8e\x00\x00\x1b\x00\x00\x00\x84\x8e\x00\x00\x1e\x00\x00\x00\xa0\x8e\x00\x00J\x00\x00\x00\xbf\x8e\x00\x00\x1d\x00\x00\x00\n\x8f\x00\x00\x05\x00\x00\x00(\x8f\x00\x00<\x00\x00\x00.\x8f\x00\x00F\x00\x00\x00k\x8f\x00\x008\x00\x00\x00\xb2\x8f\x00\x00r\x00\x00\x00\xeb\x8f\x00\x00H\x00\x00\x00^\x90\x00\x00o\x00\x00\x00\xa7\x90\x00\x00T\x00\x00\x00\x17\x91\x00\x00\x10\x00\x00\x00l\x91\x00\x00\r\x00\x00\x00}\x91\x00\x00\xc0\x00\x00\x00\x8b\x91\x00\x00\x19\x00\x00\x00L\x92\x00\x00\x0b\x00\x00\x00f\x92\x00\x00\t\x00\x00\x00r\x92\x00\x00\n\x00\x00\x00|\x92\x00\x00"\x00\x00\x00\x87\x92\x00\x00"\x00\x00\x00\xaa\x92\x00\x00\x14\x00\x00\x00\xcd\x92\x00\x00-\x00\x00\x00\xe2\x92\x00\x00-\x00\x00\x00\x10\x93\x00\x002\x00\x00\x00>\x93\x00\x00+\x00\x00\x00q\x93\x00\x008\x00\x00\x00\x9d\x93\x00\x00\x11\x00\x00\x00\xd6\x93\x00\x00\x1e\x00\x00\x00\xe8\x93\x00\x00I\x00\x00\x00\x07\x94\x00\x001\x00\x00\x00Q\x94\x00\x00\x94\x00\x00\x00\x83\x94\x00\x00N\x00\x00\x00\x18\x95\x00\x00 \x00\x00\x00g\x95\x00\x003\x00\x00\x00\x88\x95\x00\x00\x08\x00\x00\x00\xbc\x95\x00\x00\x0c\x00\x00\x00\xc5\x95\x00\x00\x0c\x00\x00\x00\xd2\x95\x00\x004\x00\x00\x00\xdf\x95\x00\x00=\x00\x00\x00\x14\x96\x00\x00\r\x00\x00\x00R\x96\x00\x00c\x00\x00\x00`\x96\x00\x00\x8d\x00\x00\x00\xc4\x96\x00\x00D\x00\x00\x00R\x97\x00\x000\x00\x00\x00\x97\x97\x00\x00\x13\x00\x00\x00\xc8\x97\x00\x00\x1b\x00\x00\x00\xdc\x97\x00\x00\x1e\x00\x00\x00\xf8\x97\x00\x00+\x00\x00\x00\x17\x98\x00\x00\x07\x00\x00\x00C\x98\x00\x00\x11\x00\x00\x00K\x98\x00\x00\r\x00\x00\x00]\x98\x00\x00\x07\x00\x00\x00k\x98\x00\x005\x00\x00\x00s\x98\x00\x00(\x00\x00\x00\xa9\x98\x00\x00(\x00\x00\x00\xd2\x98\x00\x00\'\x00\x00\x00\xfb\x98\x00\x00*\x00\x00\x00#\x99\x00\x00\x10\x00\x00\x00N\x99\x00\x00d\x00\x00\x00_\x99\x00\x00\x1a\x00\x00\x00\xc4\x99\x00\x00\x16\x00\x00\x00\xdf\x99\x00\x00\x18\x00\x00\x00\xf6\x99\x00\x00\x95\x00\x00\x00\x0f\x9a\x00\x00k\x00\x00\x00\xa5\x9a\x00\x00;\x00\x00\x00\x11\x9b\x00\x00/\x00\x00\x00M\x9b\x00\x00m\x00\x00\x00}\x9b\x00\x00\x0f\x00\x00\x00\xeb\x9b\x00\x00\x1a\x00\x00\x00\xfb\x9b\x00\x00\x1d\x00\x00\x00\x16\x9c\x00\x00\x1c\x00\x00\x004\x9c\x00\x00\x1c\x01\x00\x00Q\x9c\x00\x00}\x00\x00\x00n\x9d\x00\x00\x8e\x00\x00\x00\xec\x9d\x00\x00\xc5\x00\x00\x00{\x9e\x00\x00m\x00\x00\x00A\x9f\x00\x00e\x01\x00\x00\xaf\x9f\x00\x00%\x00\x00\x00\x15\xa1\x00\x00\x05\x00\x00\x00;\xa1\x00\x00\x1f\x00\x00\x00A\xa1\x00\x00\x0b\x00\x00\x00a\xa1\x00\x00\x07\x00\x00\x00m\xa1\x00\x00\x10\x00\x00\x00u\xa1\x00\x00\x1b\x00\x00\x00\x86\xa1\x00\x00\t\x00\x00\x00\xa2\xa1\x00\x00\x91\x00\x00\x00\xac\xa1\x00\x00\x04\x00\x00\x00>\xa2\x00\x00\t\x00\x00\x00C\xa2\x00\x00<\x00\x00\x00M\xa2\x00\x00l\x00\x00\x00\x8a\xa2\x00\x00\x9e\x00\x00\x00\xf7\xa2\x00\x004\x00\x00\x00\x96\xa3\x00\x00#\x00\x00\x00\xcb\xa3\x00\x00\x91\x00\x00\x00\xef\xa3\x00\x001\x00\x00\x00\x81\xa4\x00\x00,\x00\x00\x00\xb3\xa4\x00\x00^\x00\x00\x00\xe0\xa4\x00\x00s\x00\x00\x00?\xa5\x00\x00|\x00\x00\x00\xb3\xa5\x00\x00\x0e\x00\x00\x000\xa6\x00\x00\x08\x00\x00\x00?\xa6\x00\x00\x1f\x00\x00\x00H\xa6\x00\x00\x06\x00\x00\x00h\xa6\x00\x007\x00\x00\x00o\xa6\x00\x00(\x00\x00\x00\xa7\xa6\x00\x00\xc5\x00\x00\x00\xd0\xa6\x00\x00!\x00\x00\x00\x96\xa7\x00\x00$\x00\x00\x00\xb8\xa7\x00\x00\r\x00\x00\x00\xdd\xa7\x00\x00\n\x00\x00\x00\xeb\xa7\x00\x00\x1b\x00\x00\x00\xf6\xa7\x00\x00\x0e\x00\x00\x00\x12\xa8\x00\x00\x12\x00\x00\x00!\xa8\x00\x00\x12\x00\x00\x004\xa8\x00\x005\x00\x00\x00G\xa8\x00\x00&\x00\x00\x00}\xa8\x00\x00\xb6\x00\x00\x00\xa4\xa8\x00\x00>\x00\x00\x00[\xa9\x00\x00\x13\x00\x00\x00\x9a\xa9\x00\x00i\x00\x00\x00\xae\xa9\x00\x00N\x00\x00\x00\x18\xaa\x00\x007\x00\x00\x00g\xaa\x00\x00\x06\x00\x00\x00\x9f\xaa\x00\x00\x19\x00\x00\x00\xa6\xaa\x00\x00\x0c\x00\x00\x00\xc0\xaa\x00\x00\x13\x00\x00\x00\xcd\xaa\x00\x00(\x00\x00\x00\xe1\xaa\x00\x00h\x00\x00\x00\n\xab\x00\x001\x00\x00\x00s\xab\x00\x00:\x00\x00\x00\xa5\xab\x00\x00/\x00\x00\x00\xe0\xab\x00\x00\n\x00\x00\x00\x10\xac\x00\x00\t\x00\x00\x00\x1b\xac\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 characters\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 profile\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Summary length:\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 profile, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced" setting to further customize the fetch process.<br />The Basic tab is useful mainly for feeds that have the full article content embedded within them.</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>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 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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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 profiles, please visit <a href="https://libprs500.kovidgoyal.net/wiki/UserProfiles">UserProfiles</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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Try to download &full articles\x00Try to follow links in the RSS feed to full articles on the web. If you enable this option, you\'re probably going to end up having to use the advanced mode.\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-23 16:44+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 Zeichen\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:\x00Profil 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\x00L\xc3\xa4nge der Zu&sammenfassung:\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 Nachrichten-Grundprofil, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />F\xc3\xbcr die meisten Feeds m\xc3\xbcssen Sie die "Erweitert" Einstellung verwenden, um den Abruf weiter anzupassen.<br />Die Einstellung "Einfach" ist f\xc3\xbcr Feeds ausreichend, die den vollst\xc3\xa4ndigen Nachrichten-Inhalt im Feed schon eingebettet haben.</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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\x00Ben\xc3\xb6tigen Sie Hilfe beim Erstellen von weiteren Nachrichten-Profilen? Schauen Sie hier vorbei: <a href="https://libprs500.kovidgoyal.net/wiki/UserProfiles">UserProfiles</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\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\x00Profil&titel:\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:\x00Profil-Quellcode (Python)\x00Progressi\xc3\xb3\x00Editorial\x00Valoraci\xc3\xb3\x00Valora aquest llibre: 0-5 estreles\x00El Sony Reader\n%s est\xc3\xa0 disponible\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\x00Feeds aus dem Profil 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.\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\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.\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\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 &vollst\xc3\xa4ndige Artikel zu laden\x00Verkn\xc3\xbcpfungen im RSS Feed bis zu den vollst\xc3\xa4ndigen Artikeln im Netz verfolgen. Falls Sie diese Option w\xc3\xa4hlen, m\xc3\xbcssen Sie in den meisten F\xc3\xa4llen den erweiterten Modus zur Konfiguration benutzen.\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\x99\x01\x00\x00\x1c\x00\x00\x00\xe4\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xac\x19\x00\x00\x0e\x00\x00\x00\xad\x19\x00\x00!\x00\x00\x00\xbc\x19\x00\x00\x0b\x00\x00\x00\xde\x19\x00\x00\x05\x00\x00\x00\xea\x19\x00\x00\x06\x00\x00\x00\xf0\x19\x00\x00\x17\x00\x00\x00\xf7\x19\x00\x00\x0b\x00\x00\x00\x0f\x1a\x00\x00\x04\x00\x00\x00\x1b\x1a\x00\x00\x03\x00\x00\x00 \x1a\x00\x00\x08\x00\x00\x00$\x1a\x00\x00\x06\x00\x00\x00-\x1a\x00\x00\x1c\x00\x00\x004\x1a\x00\x00\x0e\x00\x00\x00Q\x1a\x00\x00\x0c\x00\x00\x00`\x1a\x00\x00\t\x00\x00\x00m\x1a\x00\x00\t\x00\x00\x00w\x1a\x00\x00\x0c\x00\x00\x00\x81\x1a\x00\x00\x0f\x00\x00\x00\x8e\x1a\x00\x00\x11\x00\x00\x00\x9e\x1a\x00\x00\x1a\x00\x00\x00\xb0\x1a\x00\x00\x0c\x00\x00\x00\xcb\x1a\x00\x00\x1d\x00\x00\x00\xd8\x1a\x00\x00\x0f\x00\x00\x00\xf6\x1a\x00\x00\r\x00\x00\x00\x06\x1b\x00\x00)\x00\x00\x00\x14\x1b\x00\x00"\x00\x00\x00>\x1b\x00\x00\x18\x00\x00\x00a\x1b\x00\x00\x0b\x00\x00\x00z\x1b\x00\x00\x10\x00\x00\x00\x86\x1b\x00\x00\x17\x00\x00\x00\x97\x1b\x00\x00\n\x00\x00\x00\xaf\x1b\x00\x00\x0c\x00\x00\x00\xba\x1b\x00\x00\x1e\x00\x00\x00\xc7\x1b\x00\x00\t\x00\x00\x00\xe6\x1b\x00\x00\x0c\x00\x00\x00\xf0\x1b\x00\x00\x08\x00\x00\x00\xfd\x1b\x00\x00\x14\x00\x00\x00\x06\x1c\x00\x00\x0f\x00\x00\x00\x1b\x1c\x00\x00\r\x00\x00\x00+\x1c\x00\x00\x0e\x00\x00\x009\x1c\x00\x00\x08\x00\x00\x00H\x1c\x00\x00\x08\x00\x00\x00Q\x1c\x00\x00\x07\x00\x00\x00Z\x1c\x00\x00\x0c\x00\x00\x00b\x1c\x00\x00\x0e\x00\x00\x00o\x1c\x00\x00\x12\x00\x00\x00~\x1c\x00\x00\x10\x00\x00\x00\x91\x1c\x00\x00\x05\x00\x00\x00\xa2\x1c\x00\x00\x08\x00\x00\x00\xa8\x1c\x00\x00\x0c\x00\x00\x00\xb1\x1c\x00\x00\n\x00\x00\x00\xbe\x1c\x00\x00\x0e\x00\x00\x00\xc9\x1c\x00\x00\x03\x00\x00\x00\xd8\x1c\x00\x001\x00\x00\x00\xdc\x1c\x00\x00"\x00\x00\x00\x0e\x1d\x00\x00=\x00\x00\x001\x1d\x00\x00\x18\x00\x00\x00o\x1d\x00\x00+\x00\x00\x00\x88\x1d\x00\x00k\x02\x00\x00\xb4\x1d\x00\x00\xa3\x01\x00\x00 \x00\x00\x82\x02\x00\x00\xc4!\x00\x00>\x00\x00\x00G$\x00\x00S\x00\x00\x00\x86$\x00\x005\x00\x00\x00\xda$\x00\x00p\x00\x00\x00\x10%\x00\x00a\x00\x00\x00\x81%\x00\x00G\x00\x00\x00\xe3%\x00\x00\xa7\x00\x00\x00+&\x00\x00W\x00\x00\x00\xd3&\x00\x00\x96\x00\x00\x00+\'\x00\x00=\x01\x00\x00\xc2\'\x00\x002\x00\x00\x00\x00)\x00\x00\x01\x00\x00\x003)\x00\x00\r\x00\x00\x005)\x00\x00\x0f\x00\x00\x00C)\x00\x00\x0b\x00\x00\x00S)\x00\x00\x0b\x00\x00\x00_)\x00\x00\x18\x00\x00\x00k)\x00\x007\x00\x00\x00\x84)\x00\x004\x00\x00\x00\xbc)\x00\x00.\x00\x00\x00\xf1)\x00\x00\t\x00\x00\x00 *\x00\x00!\x00\x00\x00**\x00\x00b\x00\x00\x00L*\x00\x00o\x00\x00\x00\xaf*\x00\x00\x16\x00\x00\x00\x1f+\x00\x00\x13\x00\x00\x006+\x00\x006\x00\x00\x00J+\x00\x00\x13\x00\x00\x00\x81+\x00\x00m\x00\x00\x00\x95+\x00\x00\x08\x00\x00\x00\x03,\x00\x00\x0f\x00\x00\x00\x0c,\x00\x00\x0f\x00\x00\x00\x1c,\x00\x00\x05\x00\x00\x00,,\x00\x00\x03\x00\x00\x002,\x00\x00\x19\x00\x00\x006,\x00\x00\x1b\x00\x00\x00P,\x00\x00\x16\x00\x00\x00l,\x00\x00\x06\x00\x00\x00\x83,\x00\x00\x0e\x00\x00\x00\x8a,\x00\x00\r\x00\x00\x00\x99,\x00\x00\t\x00\x00\x00\xa7,\x00\x00\x08\x00\x00\x00\xb1,\x00\x00\x11\x00\x00\x00\xba,\x00\x00\x17\x00\x00\x00\xcc,\x00\x00\x04\x00\x00\x00\xe4,\x00\x00\x10\x00\x00\x00\xe9,\x00\x00\x05\x00\x00\x00\xfa,\x00\x00!\x00\x00\x00\x00-\x00\x00\x10\x00\x00\x00"-\x00\x00\x05\x00\x00\x003-\x00\x00(\x00\x00\x009-\x00\x00\n\x00\x00\x00b-\x00\x00.\x00\x00\x00m-\x00\x005\x00\x00\x00\x9c-\x00\x00$\x00\x00\x00\xd2-\x00\x00\x0c\x00\x00\x00\xf7-\x00\x00\x1a\x00\x00\x00\x04.\x00\x00\x10\x00\x00\x00\x1f.\x00\x00.\x00\x00\x000.\x00\x00\x0e\x00\x00\x00_.\x00\x00\x0e\x00\x00\x00n.\x00\x007\x00\x00\x00}.\x00\x00\x14\x00\x00\x00\xb5.\x00\x00\x12\x00\x00\x00\xca.\x00\x00#\x00\x00\x00\xdd.\x00\x00\x0f\x00\x00\x00\x01/\x00\x00Z\x00\x00\x00\x11/\x00\x00\x19\x00\x00\x00l/\x00\x00\x0b\x00\x00\x00\x86/\x00\x00\x13\x00\x00\x00\x92/\x00\x00\x0b\x00\x00\x00\xa6/\x00\x00\x11\x00\x00\x00\xb2/\x00\x00\x08\x00\x00\x00\xc4/\x00\x00\x14\x00\x00\x00\xcd/\x00\x00\x0f\x00\x00\x00\xe2/\x00\x00R\x00\x00\x00\xf2/\x00\x00!\x00\x00\x00E0\x00\x00\x1d\x00\x00\x00g0\x00\x00H\x00\x00\x00\x850\x00\x00\x11\x00\x00\x00\xce0\x00\x00\r\x00\x00\x00\xe00\x00\x00%\x00\x00\x00\xee0\x00\x00\x19\x00\x00\x00\x141\x00\x00!\x00\x00\x00.1\x00\x007\x00\x00\x00P1\x00\x00\x08\x00\x00\x00\x881\x00\x00\r\x00\x00\x00\x911\x00\x00\t\x00\x00\x00\x9f1\x00\x00\x10\x00\x00\x00\xa91\x00\x00\x11\x00\x00\x00\xba1\x00\x00\x0f\x00\x00\x00\xcc1\x00\x00\x14\x00\x00\x00\xdc1\x00\x00\x0e\x00\x00\x00\xf11\x00\x00\x1c\x00\x00\x00\x002\x00\x00;\x00\x00\x00\x1d2\x00\x00\x15\x00\x00\x00Y2\x00\x00R\x00\x00\x00o2\x00\x00\x17\x00\x00\x00\xc22\x00\x00\x18\x00\x00\x00\xda2\x00\x00\x0b\x00\x00\x00\xf32\x00\x00\x13\x00\x00\x00\xff2\x00\x00\x04\x00\x00\x00\x133\x00\x00\x19\x00\x00\x00\x183\x00\x00\x03\x00\x00\x0023\x00\x00h\x00\x00\x0063\x00\x00\x0e\x00\x00\x00\x9f3\x00\x00\x1b\x00\x00\x00\xae3\x00\x00\x1a\x00\x00\x00\xca3\x00\x00\x11\x00\x00\x00\xe53\x00\x00\x19\x00\x00\x00\xf73\x00\x00\x11\x00\x00\x00\x114\x00\x00\x01\x00\x00\x00#4\x00\x00\x05\x00\x00\x00%4\x00\x00\x15\x00\x00\x00+4\x00\x00\x15\x00\x00\x00A4\x00\x00\x15\x00\x00\x00W4\x00\x00\x15\x00\x00\x00m4\x00\x00\x1a\x00\x00\x00\x834\x00\x00\x0e\x00\x00\x00\x9e4\x00\x00\x1f\x00\x00\x00\xad4\x00\x00C\x00\x00\x00\xcd4\x00\x00\x05\x00\x00\x00\x115\x00\x00\x1f\x00\x00\x00\x175\x00\x00\x12\x00\x00\x0075\x00\x00\x17\x00\x00\x00J5\x00\x00\x1f\x00\x00\x00b5\x00\x00\'\x00\x00\x00\x825\x00\x003\x00\x00\x00\xaa5\x00\x00*\x00\x00\x00\xde5\x00\x00\n\x00\x00\x00\t6\x00\x00\x16\x00\x00\x00\x146\x00\x00\x10\x00\x00\x00+6\x00\x00\x05\x00\x00\x00<6\x00\x00\x1d\x00\x00\x00B6\x00\x00\x0e\x00\x00\x00`6\x00\x00\x1a\x00\x00\x00o6\x00\x00\n\x00\x00\x00\x8a6\x00\x00\x10\x00\x00\x00\x956\x00\x00\r\x00\x00\x00\xa66\x00\x00\x11\x00\x00\x00\xb46\x00\x00\x1f\x00\x00\x00\xc66\x00\x00\x13\x00\x00\x00\xe66\x00\x00\x1b\x00\x00\x00\xfa6\x00\x00\x05\x00\x00\x00\x167\x00\x00\x0b\x00\x00\x00\x1c7\x00\x008\x00\x00\x00(7\x00\x00\x08\x00\x00\x00a7\x00\x00\x88\x00\x00\x00j7\x00\x00\x1d\x01\x00\x00\xf37\x00\x00J\x00\x00\x00\x119\x00\x00#\x00\x00\x00\\9\x00\x00\x04\x00\x00\x00\x809\x00\x00\x06\x00\x00\x00\x859\x00\x00\x07\x00\x00\x00\x8c9\x00\x00\x07\x00\x00\x00\x949\x00\x00\'\x00\x00\x00\x9c9\x00\x00\x1b\x00\x00\x00\xc49\x00\x00\x19\x00\x00\x00\xe09\x00\x00\x06\x00\x00\x00\xfa9\x00\x00\x0c\x00\x00\x00\x01:\x00\x00\t\x00\x00\x00\x0e:\x00\x00\x06\x00\x00\x00\x18:\x00\x00\xdc\x01\x00\x00\x1f:\x00\x00n\x00\x00\x00\xfc;\x00\x00a\x00\x00\x00k<\x00\x00\x0e\x00\x00\x00\xcd<\x00\x00\x0e\x00\x00\x00\xdc<\x00\x00\xa8\x00\x00\x00\xeb<\x00\x00&\x00\x00\x00\x94=\x00\x00\x10\x00\x00\x00\xbb=\x00\x00\x19\x00\x00\x00\xcc=\x00\x00\x1a\x00\x00\x00\xe6=\x00\x00.\x00\x00\x00\x01>\x00\x00\x1a\x00\x00\x000>\x00\x00\x1e\x00\x00\x00K>\x00\x00\x03\x00\x00\x00j>\x00\x00\x12\x00\x00\x00n>\x00\x00\x05\x00\x00\x00\x81>\x00\x00\n\x00\x00\x00\x87>\x00\x00,\x00\x00\x00\x92>\x00\x00\x07\x00\x00\x00\xbf>\x00\x00-\x00\x00\x00\xc7>\x00\x00\x0b\x00\x00\x00\xf5>\x00\x00$\x00\x00\x00\x01?\x00\x00$\x00\x00\x00&?\x00\x00\x07\x00\x00\x00K?\x00\x000\x00\x00\x00S?\x00\x00\x10\x00\x00\x00\x84?\x00\x00\x08\x00\x00\x00\x95?\x00\x00y\x00\x00\x00\x9e?\x00\x00\x10\x00\x00\x00\x18@\x00\x00\x04\x00\x00\x00)@\x00\x00\x06\x00\x00\x00.@\x00\x00"\x00\x00\x005@\x00\x00\t\x00\x00\x00X@\x00\x00\n\x00\x00\x00b@\x00\x00\x14\x00\x00\x00m@\x00\x00\x10\x00\x00\x00\x82@\x00\x00\x11\x00\x00\x00\x93@\x00\x00\x08\x00\x00\x00\xa5@\x00\x00\x10\x00\x00\x00\xae@\x00\x00\x12\x00\x00\x00\xbf@\x00\x00\x04\x00\x00\x00\xd2@\x00\x00^\x00\x00\x00\xd7@\x00\x00\x0f\x00\x00\x006A\x00\x00\n\x00\x00\x00FA\x00\x00\x07\x00\x00\x00QA\x00\x00-\x00\x00\x00YA\x00\x00+\x00\x00\x00\x87A\x00\x00F\x00\x00\x00\xb3A\x00\x008\x00\x00\x00\xfaA\x00\x00s\x00\x00\x003B\x00\x00\x0f\x00\x00\x00\xa7B\x00\x00\n\x00\x00\x00\xb7B\x00\x00\x10\x00\x00\x00\xc2B\x00\x00:\x00\x00\x00\xd3B\x00\x00\x0f\x00\x00\x00\x0eC\x00\x00\x04\x00\x00\x00\x1eC\x00\x00;\x00\x00\x00#C\x00\x00G\x00\x00\x00_C\x00\x001\x00\x00\x00\xa7C\x00\x00Y\x00\x00\x00\xd9C\x00\x004\x00\x00\x003D\x00\x00\x80\x00\x00\x00hD\x00\x00H\x00\x00\x00\xe9D\x00\x00\r\x00\x00\x002E\x00\x00\x0f\x00\x00\x00@E\x00\x00\xbc\x00\x00\x00PE\x00\x00\x1c\x00\x00\x00\rF\x00\x00\x08\x00\x00\x00*F\x00\x00\t\x00\x00\x003F\x00\x00\x06\x00\x00\x00=F\x00\x00\x1e\x00\x00\x00DF\x00\x00\x13\x00\x00\x00cF\x00\x00\x13\x00\x00\x00wF\x00\x00+\x00\x00\x00\x8bF\x00\x00*\x00\x00\x00\xb7F\x00\x000\x00\x00\x00\xe2F\x00\x00)\x00\x00\x00\x13G\x00\x00<\x00\x00\x00=G\x00\x00\x0c\x00\x00\x00zG\x00\x00\x18\x00\x00\x00\x87G\x00\x00<\x00\x00\x00\xa0G\x00\x000\x00\x00\x00\xddG\x00\x00\x84\x00\x00\x00\x0eH\x00\x00X\x00\x00\x00\x93H\x00\x00\x12\x00\x00\x00\xecH\x00\x00-\x00\x00\x00\xffH\x00\x00\x0c\x00\x00\x00-I\x00\x00\x0c\x00\x00\x00:I\x00\x00\x0c\x00\x00\x00GI\x00\x00"\x00\x00\x00TI\x00\x009\x00\x00\x00wI\x00\x00\x0f\x00\x00\x00\xb1I\x00\x00V\x00\x00\x00\xc1I\x00\x00r\x00\x00\x00\x18J\x00\x00G\x00\x00\x00\x8bJ\x00\x00\'\x00\x00\x00\xd3J\x00\x00\x0e\x00\x00\x00\xfbJ\x00\x00\x13\x00\x00\x00\nK\x00\x00\x14\x00\x00\x00\x1eK\x00\x00#\x00\x00\x003K\x00\x00\x06\x00\x00\x00WK\x00\x00\r\x00\x00\x00^K\x00\x00\r\x00\x00\x00lK\x00\x00\x07\x00\x00\x00zK\x00\x00\x1e\x00\x00\x00\x82K\x00\x00\x0b\x00\x00\x00\xa1K\x00\x00\x17\x00\x00\x00\xadK\x00\x00\x1b\x00\x00\x00\xc5K\x00\x00\x1a\x00\x00\x00\xe1K\x00\x00\x0e\x00\x00\x00\xfcK\x00\x00^\x00\x00\x00\x0bL\x00\x00\x12\x00\x00\x00jL\x00\x00\x10\x00\x00\x00}L\x00\x00\x10\x00\x00\x00\x8eL\x00\x00g\x00\x00\x00\x9fL\x00\x00c\x00\x00\x00\x07M\x00\x007\x00\x00\x00kM\x00\x00!\x00\x00\x00\xa3M\x00\x00d\x00\x00\x00\xc5M\x00\x00\t\x00\x00\x00*N\x00\x00\x17\x00\x00\x004N\x00\x00\x16\x00\x00\x00LN\x00\x00\x11\x00\x00\x00cN\x00\x00\x04\x01\x00\x00uN\x00\x00z\x00\x00\x00zO\x00\x00\x85\x00\x00\x00\xf5O\x00\x00\xb6\x00\x00\x00{P\x00\x00P\x00\x00\x002Q\x00\x00+\x01\x00\x00\x83Q\x00\x00#\x00\x00\x00\xafR\x00\x00\x06\x00\x00\x00\xd3R\x00\x00\x17\x00\x00\x00\xdaR\x00\x00\x07\x00\x00\x00\xf2R\x00\x00\x03\x00\x00\x00\xfaR\x00\x00\n\x00\x00\x00\xfeR\x00\x00\x13\x00\x00\x00\tS\x00\x00\x04\x00\x00\x00\x1dS\x00\x00\x85\x00\x00\x00"S\x00\x00\x04\x00\x00\x00\xa8S\x00\x00\t\x00\x00\x00\xadS\x00\x000\x00\x00\x00\xb7S\x00\x00X\x00\x00\x00\xe8S\x00\x00\x9d\x00\x00\x00AT\x00\x00&\x00\x00\x00\xdfT\x00\x00\x1e\x00\x00\x00\x06U\x00\x00v\x00\x00\x00%U\x00\x00\'\x00\x00\x00\x9cU\x00\x00"\x00\x00\x00\xc4U\x00\x00B\x00\x00\x00\xe7U\x00\x00^\x00\x00\x00*V\x00\x00h\x00\x00\x00\x89V\x00\x00\t\x00\x00\x00\xf2V\x00\x00\x05\x00\x00\x00\xfcV\x00\x00\x15\x00\x00\x00\x02W\x00\x00\x06\x00\x00\x00\x18W\x00\x00+\x00\x00\x00\x1fW\x00\x00\x1e\x00\x00\x00KW\x00\x00\x9c\x00\x00\x00jW\x00\x00\x1b\x00\x00\x00\x07X\x00\x00&\x00\x00\x00#X\x00\x00\x0b\x00\x00\x00JX\x00\x00\x07\x00\x00\x00VX\x00\x00\x13\x00\x00\x00^X\x00\x00\x0c\x00\x00\x00rX\x00\x00\x10\x00\x00\x00\x7fX\x00\x00\x10\x00\x00\x00\x90X\x00\x00%\x00\x00\x00\xa1X\x00\x00\x1b\x00\x00\x00\xc7X\x00\x00\xb4\x00\x00\x00\xe3X\x00\x002\x00\x00\x00\x98Y\x00\x00\x14\x00\x00\x00\xcbY\x00\x00_\x00\x00\x00\xe0Y\x00\x00:\x00\x00\x00@Z\x00\x00*\x00\x00\x00{Z\x00\x00\x04\x00\x00\x00\xa6Z\x00\x00\x14\x00\x00\x00\xabZ\x00\x00\x07\x00\x00\x00\xc0Z\x00\x00\x07\x00\x00\x00\xc8Z\x00\x00-\x00\x00\x00\xd0Z\x00\x00d\x00\x00\x00\xfeZ\x00\x00#\x00\x00\x00c[\x00\x002\x00\x00\x00\x87[\x00\x003\x00\x00\x00\xba[\x00\x00\x08\x00\x00\x00\xee[\x00\x00\t\x00\x00\x00\xf7[\x00\x008\x01\x00\x00\x01\\\x00\x00 \x00\x00\x00:]\x00\x00\x1d\x00\x00\x00[]\x00\x00\x08\x00\x00\x00y]\x00\x00\x05\x00\x00\x00\x82]\x00\x00\x04\x00\x00\x00\x88]\x00\x00\x18\x00\x00\x00\x8d]\x00\x00\x10\x00\x00\x00\xa6]\x00\x00\x06\x00\x00\x00\xb7]\x00\x00\x06\x00\x00\x00\xbe]\x00\x00\t\x00\x00\x00\xc5]\x00\x00\x07\x00\x00\x00\xcf]\x00\x00"\x00\x00\x00\xd7]\x00\x00\x12\x00\x00\x00\xfa]\x00\x00\x14\x00\x00\x00\r^\x00\x00\x0e\x00\x00\x00"^\x00\x00\x12\x00\x00\x001^\x00\x00\x07\x00\x00\x00D^\x00\x00\x0e\x00\x00\x00L^\x00\x00\x15\x00\x00\x00[^\x00\x00 \x00\x00\x00q^\x00\x00\x0c\x00\x00\x00\x92^\x00\x00%\x00\x00\x00\x9f^\x00\x00\x12\x00\x00\x00\xc5^\x00\x00\r\x00\x00\x00\xd8^\x00\x00/\x00\x00\x00\xe6^\x00\x00&\x00\x00\x00\x16_\x00\x00\x1e\x00\x00\x00=_\x00\x00\x0b\x00\x00\x00\\_\x00\x00\x13\x00\x00\x00h_\x00\x00\x1b\x00\x00\x00|_\x00\x00\n\x00\x00\x00\x98_\x00\x00\x0f\x00\x00\x00\xa3_\x00\x00(\x00\x00\x00\xb3_\x00\x00\x08\x00\x00\x00\xdc_\x00\x00\r\x00\x00\x00\xe5_\x00\x00\x0b\x00\x00\x00\xf3_\x00\x00\x15\x00\x00\x00\xff_\x00\x00\x11\x00\x00\x00\x15`\x00\x00\x15\x00\x00\x00\'`\x00\x00\x0e\x00\x00\x00=`\x00\x00\x07\x00\x00\x00L`\x00\x00\x08\x00\x00\x00T`\x00\x00\x07\x00\x00\x00]`\x00\x00\x13\x00\x00\x00e`\x00\x00\x12\x00\x00\x00y`\x00\x00\x1e\x00\x00\x00\x8c`\x00\x00\x1c\x00\x00\x00\xab`\x00\x00\x05\x00\x00\x00\xc8`\x00\x00\x07\x00\x00\x00\xce`\x00\x00\r\x00\x00\x00\xd6`\x00\x00\x0e\x00\x00\x00\xe4`\x00\x00\r\x00\x00\x00\xf3`\x00\x00\x03\x00\x00\x00\x01a\x00\x008\x00\x00\x00\x05a\x00\x00-\x00\x00\x00>a\x00\x00;\x00\x00\x00la\x00\x00\x1e\x00\x00\x00\xa8a\x00\x000\x00\x00\x00\xc7a\x00\x00\xa4\x02\x00\x00\xf8a\x00\x00\xa3\x01\x00\x00\x9dd\x00\x00\x8c\x02\x00\x00Af\x00\x00>\x00\x00\x00\xceh\x00\x00X\x00\x00\x00\ri\x00\x006\x00\x00\x00fi\x00\x00\x90\x00\x00\x00\x9di\x00\x00\x86\x00\x00\x00.j\x00\x00`\x00\x00\x00\xb5j\x00\x00\xcd\x00\x00\x00\x16k\x00\x00\x7f\x00\x00\x00\xe4k\x00\x00\xcd\x00\x00\x00dl\x00\x00\xa4\x01\x00\x002m\x00\x00<\x00\x00\x00\xd7n\x00\x00\x01\x00\x00\x00\x14o\x00\x00\x16\x00\x00\x00\x16o\x00\x00\x16\x00\x00\x00-o\x00\x00\x10\x00\x00\x00Do\x00\x00\x18\x00\x00\x00Uo\x00\x00/\x00\x00\x00no\x00\x00I\x00\x00\x00\x9eo\x00\x00?\x00\x00\x00\xe8o\x00\x00;\x00\x00\x00(p\x00\x00\x13\x00\x00\x00dp\x00\x003\x00\x00\x00xp\x00\x00}\x00\x00\x00\xacp\x00\x00\x98\x00\x00\x00*q\x00\x00$\x00\x00\x00\xc3q\x00\x00!\x00\x00\x00\xe8q\x00\x00Q\x00\x00\x00\nr\x00\x00!\x00\x00\x00\\r\x00\x00e\x00\x00\x00~r\x00\x00\t\x00\x00\x00\xe4r\x00\x00\x10\x00\x00\x00\xeer\x00\x00\x10\x00\x00\x00\xffr\x00\x00\x05\x00\x00\x00\x10s\x00\x00\t\x00\x00\x00\x16s\x00\x00#\x00\x00\x00 s\x00\x00!\x00\x00\x00Ds\x00\x00\x13\x00\x00\x00fs\x00\x00\x05\x00\x00\x00zs\x00\x00\x17\x00\x00\x00\x80s\x00\x00\x17\x00\x00\x00\x98s\x00\x00\t\x00\x00\x00\xb0s\x00\x00\x08\x00\x00\x00\xbas\x00\x00\x13\x00\x00\x00\xc3s\x00\x00\x1b\x00\x00\x00\xd7s\x00\x00\x07\x00\x00\x00\xf3s\x00\x00\x18\x00\x00\x00\xfbs\x00\x00\x07\x00\x00\x00\x14t\x00\x003\x00\x00\x00\x1ct\x00\x00\x16\x00\x00\x00Pt\x00\x00\x04\x00\x00\x00gt\x00\x00)\x00\x00\x00lt\x00\x00\x0c\x00\x00\x00\x96t\x00\x00>\x00\x00\x00\xa3t\x00\x00 \x00\x00\x00\xe2t\x00\x00)\x00\x00\x00\x03u\x00\x00\x17\x00\x00\x00-u\x00\x00%\x00\x00\x00Eu\x00\x00\x1c\x00\x00\x00ku\x00\x00D\x00\x00\x00\x88u\x00\x00\x19\x00\x00\x00\xcdu\x00\x00\x1c\x00\x00\x00\xe7u\x00\x00R\x00\x00\x00\x04v\x00\x00\x1f\x00\x00\x00Wv\x00\x00\x1e\x00\x00\x00wv\x00\x005\x00\x00\x00\x96v\x00\x00\x1d\x00\x00\x00\xccv\x00\x00g\x00\x00\x00\xeav\x00\x00-\x00\x00\x00Rw\x00\x00\x14\x00\x00\x00\x80w\x00\x00\'\x00\x00\x00\x95w\x00\x00\x16\x00\x00\x00\xbdw\x00\x00\x13\x00\x00\x00\xd4w\x00\x00\t\x00\x00\x00\xe8w\x00\x00\x16\x00\x00\x00\xf2w\x00\x00\x10\x00\x00\x00\tx\x00\x00R\x00\x00\x00\x1ax\x00\x00!\x00\x00\x00mx\x00\x00\x1b\x00\x00\x00\x8fx\x00\x00H\x00\x00\x00\xabx\x00\x00\x16\x00\x00\x00\xf4x\x00\x00\x0e\x00\x00\x00\x0by\x00\x00:\x00\x00\x00\x1ay\x00\x00\x1b\x00\x00\x00Uy\x00\x00&\x00\x00\x00qy\x00\x00J\x00\x00\x00\x98y\x00\x00\t\x00\x00\x00\xe3y\x00\x00\r\x00\x00\x00\xedy\x00\x00\r\x00\x00\x00\xfby\x00\x00\x15\x00\x00\x00\tz\x00\x00\x15\x00\x00\x00\x1fz\x00\x00\x13\x00\x00\x005z\x00\x00\x14\x00\x00\x00Iz\x00\x00\x13\x00\x00\x00^z\x00\x00#\x00\x00\x00rz\x00\x00W\x00\x00\x00\x96z\x00\x00 \x00\x00\x00\xeez\x00\x00e\x00\x00\x00\x0f{\x00\x00"\x00\x00\x00u{\x00\x00"\x00\x00\x00\x98{\x00\x00\r\x00\x00\x00\xbb{\x00\x00\x1f\x00\x00\x00\xc9{\x00\x00\x05\x00\x00\x00\xe9{\x00\x00B\x00\x00\x00\xef{\x00\x00\x08\x00\x00\x002|\x00\x00r\x00\x00\x00;|\x00\x00\x14\x00\x00\x00\xae|\x00\x00\x1f\x00\x00\x00\xc3|\x00\x00!\x00\x00\x00\xe3|\x00\x00\x10\x00\x00\x00\x05}\x00\x00\x18\x00\x00\x00\x16}\x00\x00\x12\x00\x00\x00/}\x00\x00\x01\x00\x00\x00B}\x00\x00\x06\x00\x00\x00D}\x00\x00\x1d\x00\x00\x00K}\x00\x00\x1d\x00\x00\x00i}\x00\x00\x1c\x00\x00\x00\x87}\x00\x00 \x00\x00\x00\xa4}\x00\x00\x1d\x00\x00\x00\xc5}\x00\x00\x16\x00\x00\x00\xe3}\x00\x00.\x00\x00\x00\xfa}\x00\x00M\x00\x00\x00)~\x00\x00\x06\x00\x00\x00w~\x00\x00+\x00\x00\x00~~\x00\x00\x1b\x00\x00\x00\xaa~\x00\x00&\x00\x00\x00\xc6~\x00\x00#\x00\x00\x00\xed~\x00\x00,\x00\x00\x00\x11\x7f\x00\x00:\x00\x00\x00>\x7f\x00\x00/\x00\x00\x00y\x7f\x00\x00\n\x00\x00\x00\xa9\x7f\x00\x00$\x00\x00\x00\xb4\x7f\x00\x00\x0f\x00\x00\x00\xd9\x7f\x00\x00\x07\x00\x00\x00\xe9\x7f\x00\x00\x1f\x00\x00\x00\xf1\x7f\x00\x00\x12\x00\x00\x00\x11\x80\x00\x00\x1d\x00\x00\x00$\x80\x00\x00\x13\x00\x00\x00B\x80\x00\x00\x17\x00\x00\x00V\x80\x00\x00\x0c\x00\x00\x00n\x80\x00\x00\x10\x00\x00\x00{\x80\x00\x00!\x00\x00\x00\x8c\x80\x00\x00\x17\x00\x00\x00\xae\x80\x00\x00\x1d\x00\x00\x00\xc6\x80\x00\x00\x07\x00\x00\x00\xe4\x80\x00\x00\x0b\x00\x00\x00\xec\x80\x00\x00D\x00\x00\x00\xf8\x80\x00\x00\x06\x00\x00\x00=\x81\x00\x00\xad\x00\x00\x00D\x81\x00\x004\x01\x00\x00\xf2\x81\x00\x00[\x00\x00\x00\'\x83\x00\x00&\x00\x00\x00\x83\x83\x00\x00\x03\x00\x00\x00\xaa\x83\x00\x00\x06\x00\x00\x00\xae\x83\x00\x00\x07\x00\x00\x00\xb5\x83\x00\x00\x06\x00\x00\x00\xbd\x83\x00\x004\x00\x00\x00\xc4\x83\x00\x00\x1e\x00\x00\x00\xf9\x83\x00\x00\x1e\x00\x00\x00\x18\x84\x00\x00\t\x00\x00\x007\x84\x00\x00\x1f\x00\x00\x00A\x84\x00\x00\x18\x00\x00\x00a\x84\x00\x00\x06\x00\x00\x00z\x84\x00\x00:\x02\x00\x00\x81\x84\x00\x00\x8f\x00\x00\x00\xbc\x86\x00\x00\x82\x00\x00\x00L\x87\x00\x00\x16\x00\x00\x00\xcf\x87\x00\x00\x14\x00\x00\x00\xe6\x87\x00\x00\xcc\x00\x00\x00\xfb\x87\x00\x00*\x00\x00\x00\xc8\x88\x00\x00\x14\x00\x00\x00\xf3\x88\x00\x00"\x00\x00\x00\x08\x89\x00\x00"\x00\x00\x00+\x89\x00\x00?\x00\x00\x00N\x89\x00\x00\x1f\x00\x00\x00\x8e\x89\x00\x00#\x00\x00\x00\xae\x89\x00\x00\x07\x00\x00\x00\xd2\x89\x00\x00"\x00\x00\x00\xda\x89\x00\x00\n\x00\x00\x00\xfd\x89\x00\x00\n\x00\x00\x00\x08\x8a\x00\x00=\x00\x00\x00\x13\x8a\x00\x00\n\x00\x00\x00Q\x8a\x00\x00@\x00\x00\x00\\\x8a\x00\x00\x0b\x00\x00\x00\x9d\x8a\x00\x003\x00\x00\x00\xa9\x8a\x00\x009\x00\x00\x00\xdd\x8a\x00\x00\x07\x00\x00\x00\x17\x8b\x00\x001\x00\x00\x00\x1f\x8b\x00\x00\x12\x00\x00\x00Q\x8b\x00\x00\n\x00\x00\x00d\x8b\x00\x00\xa4\x00\x00\x00o\x8b\x00\x00\x17\x00\x00\x00\x14\x8c\x00\x00\x04\x00\x00\x00,\x8c\x00\x00\n\x00\x00\x001\x8c\x00\x006\x00\x00\x00<\x8c\x00\x00\x0e\x00\x00\x00s\x8c\x00\x00\x11\x00\x00\x00\x82\x8c\x00\x00\x1a\x00\x00\x00\x94\x8c\x00\x00\x15\x00\x00\x00\xaf\x8c\x00\x00\x19\x00\x00\x00\xc5\x8c\x00\x00\x0c\x00\x00\x00\xdf\x8c\x00\x00\x16\x00\x00\x00\xec\x8c\x00\x00\x14\x00\x00\x00\x03\x8d\x00\x00\x05\x00\x00\x00\x18\x8d\x00\x00_\x00\x00\x00\x1e\x8d\x00\x00\x18\x00\x00\x00~\x8d\x00\x00\r\x00\x00\x00\x97\x8d\x00\x00\x15\x00\x00\x00\xa5\x8d\x00\x00\x1d\x00\x00\x00\xbb\x8d\x00\x00\x1b\x00\x00\x00\xd9\x8d\x00\x00H\x00\x00\x00\xf5\x8d\x00\x00S\x00\x00\x00>\x8e\x00\x00\x92\x00\x00\x00\x92\x8e\x00\x00\x15\x00\x00\x00%\x8f\x00\x00\x11\x00\x00\x00;\x8f\x00\x00\x14\x00\x00\x00M\x8f\x00\x00J\x00\x00\x00b\x8f\x00\x00\x15\x00\x00\x00\xad\x8f\x00\x00\x04\x00\x00\x00\xc3\x8f\x00\x00O\x00\x00\x00\xc8\x8f\x00\x00V\x00\x00\x00\x18\x90\x00\x00"\x00\x00\x00o\x90\x00\x00r\x00\x00\x00\x92\x90\x00\x00J\x00\x00\x00\x05\x91\x00\x00\x97\x00\x00\x00P\x91\x00\x00Q\x00\x00\x00\xe8\x91\x00\x00\x0f\x00\x00\x00:\x92\x00\x00\r\x00\x00\x00J\x92\x00\x00\xc6\x00\x00\x00X\x92\x00\x00\x19\x00\x00\x00\x1f\x93\x00\x00\x0b\x00\x00\x009\x93\x00\x00\x0b\x00\x00\x00E\x93\x00\x00\t\x00\x00\x00Q\x93\x00\x00#\x00\x00\x00[\x93\x00\x00\x14\x00\x00\x00\x7f\x93\x00\x00\x14\x00\x00\x00\x94\x93\x00\x00-\x00\x00\x00\xa9\x93\x00\x00-\x00\x00\x00\xd7\x93\x00\x002\x00\x00\x00\x05\x94\x00\x00+\x00\x00\x008\x94\x00\x00K\x00\x00\x00d\x94\x00\x00\x11\x00\x00\x00\xb0\x94\x00\x00\x1e\x00\x00\x00\xc2\x94\x00\x00:\x00\x00\x00\xe1\x94\x00\x001\x00\x00\x00\x1c\x95\x00\x00\x92\x00\x00\x00N\x95\x00\x00N\x00\x00\x00\xe1\x95\x00\x00\x15\x00\x00\x000\x96\x00\x00>\x00\x00\x00F\x96\x00\x00\x08\x00\x00\x00\x85\x96\x00\x00\x0c\x00\x00\x00\x8e\x96\x00\x00\x0e\x00\x00\x00\x9b\x96\x00\x004\x00\x00\x00\xaa\x96\x00\x00=\x00\x00\x00\xdf\x96\x00\x00\r\x00\x00\x00\x1d\x97\x00\x00z\x00\x00\x00+\x97\x00\x00\x9e\x00\x00\x00\xa6\x97\x00\x00P\x00\x00\x00E\x98\x00\x000\x00\x00\x00\x96\x98\x00\x00\x15\x00\x00\x00\xc7\x98\x00\x00\x17\x00\x00\x00\xdd\x98\x00\x00\x17\x00\x00\x00\xf5\x98\x00\x00%\x00\x00\x00\r\x99\x00\x00\x05\x00\x00\x003\x99\x00\x00\x11\x00\x00\x009\x99\x00\x00\r\x00\x00\x00K\x99\x00\x00\x07\x00\x00\x00Y\x99\x00\x005\x00\x00\x00a\x99\x00\x00\x18\x00\x00\x00\x97\x99\x00\x00*\x00\x00\x00\xb0\x99\x00\x00\x15\x00\x00\x00\xdb\x99\x00\x00\x15\x00\x00\x00\xf1\x99\x00\x00\x16\x00\x00\x00\x07\x9a\x00\x00q\x00\x00\x00\x1e\x9a\x00\x00\x1a\x00\x00\x00\x90\x9a\x00\x00\x1c\x00\x00\x00\xab\x9a\x00\x00\x1c\x00\x00\x00\xc8\x9a\x00\x00\x95\x00\x00\x00\xe5\x9a\x00\x00}\x00\x00\x00{\x9b\x00\x00]\x00\x00\x00\xf9\x9b\x00\x002\x00\x00\x00W\x9c\x00\x00v\x00\x00\x00\x8a\x9c\x00\x00\x0c\x00\x00\x00\x01\x9d\x00\x00\x15\x00\x00\x00\x0e\x9d\x00\x00\x15\x00\x00\x00$\x9d\x00\x00\x1c\x00\x00\x00:\x9d\x00\x00\x1c\x01\x00\x00W\x9d\x00\x00v\x00\x00\x00t\x9e\x00\x00\x9f\x00\x00\x00\xeb\x9e\x00\x00\n\x01\x00\x00\x8b\x9f\x00\x00R\x00\x00\x00\x96\xa0\x00\x00\x8f\x01\x00\x00\xe9\xa0\x00\x00%\x00\x00\x00y\xa2\x00\x00\x06\x00\x00\x00\x9f\xa2\x00\x00\x1f\x00\x00\x00\xa6\xa2\x00\x00\x0b\x00\x00\x00\xc6\xa2\x00\x00\x07\x00\x00\x00\xd2\xa2\x00\x00\x10\x00\x00\x00\xda\xa2\x00\x00#\x00\x00\x00\xeb\xa2\x00\x00\t\x00\x00\x00\x0f\xa3\x00\x00\xab\x00\x00\x00\x19\xa3\x00\x00\x04\x00\x00\x00\xc5\xa3\x00\x00\t\x00\x00\x00\xca\xa3\x00\x003\x00\x00\x00\xd4\xa3\x00\x00l\x00\x00\x00\x08\xa4\x00\x00\xb9\x00\x00\x00u\xa4\x00\x00.\x00\x00\x00/\xa5\x00\x00#\x00\x00\x00^\xa5\x00\x00\x99\x00\x00\x00\x82\xa5\x00\x00\'\x00\x00\x00\x1c\xa6\x00\x00"\x00\x00\x00D\xa6\x00\x00^\x00\x00\x00g\xa6\x00\x00s\x00\x00\x00\xc6\xa6\x00\x00\x8f\x00\x00\x00:\xa7\x00\x00\x0b\x00\x00\x00\xca\xa7\x00\x00\x05\x00\x00\x00\xd6\xa7\x00\x00\x1f\x00\x00\x00\xdc\xa7\x00\x00\x06\x00\x00\x00\xfc\xa7\x00\x00=\x00\x00\x00\x03\xa8\x00\x00(\x00\x00\x00A\xa8\x00\x00\xc5\x00\x00\x00j\xa8\x00\x00!\x00\x00\x000\xa9\x00\x00$\x00\x00\x00R\xa9\x00\x00\x10\x00\x00\x00w\xa9\x00\x00\t\x00\x00\x00\x88\xa9\x00\x00\x1b\x00\x00\x00\x92\xa9\x00\x00\x0e\x00\x00\x00\xae\xa9\x00\x00\x12\x00\x00\x00\xbd\xa9\x00\x00\x12\x00\x00\x00\xd0\xa9\x00\x005\x00\x00\x00\xe3\xa9\x00\x00&\x00\x00\x00\x19\xaa\x00\x00\xe2\x00\x00\x00@\xaa\x00\x00B\x00\x00\x00#\xab\x00\x00\x1d\x00\x00\x00f\xab\x00\x00i\x00\x00\x00\x84\xab\x00\x00N\x00\x00\x00\xee\xab\x00\x007\x00\x00\x00=\xac\x00\x00\x08\x00\x00\x00u\xac\x00\x00\x19\x00\x00\x00~\xac\x00\x00\x1b\x00\x00\x00\x98\xac\x00\x00\x11\x00\x00\x00\xb4\xac\x00\x00=\x00\x00\x00\xc6\xac\x00\x00\x92\x00\x00\x00\x04\xad\x00\x001\x00\x00\x00\x97\xad\x00\x00R\x00\x00\x00\xc9\xad\x00\x00.\x00\x00\x00\x1c\xae\x00\x00\n\x00\x00\x00K\xae\x00\x00\t\x00\x00\x00V\xae\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 characters\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 profile\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Summary length:\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 profile, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced" setting to further customize the fetch process.<br />The Basic tab is useful mainly for feeds that have the full article content embedded within them.</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>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&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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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 profiles, please visit <a href="https://libprs500.kovidgoyal.net/wiki/UserProfiles">UserProfiles</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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Try to download &full articles\x00Try to follow links in the RSS feed to full articles on the web. If you enable this option, you\'re probably going to end up having to use the advanced mode.\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-23 16:46+PDT\nPO-Revision-Date: 2008-03-21 11:00+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 Zeichen\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:\x00Profil 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\x00L\xc3\xa4nge der Zu&sammenfassung:\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 Nachrichten-Grundprofil, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />F\xc3\xbcr die meisten Feeds m\xc3\xbcssen Sie die "Erweitert" Einstellung verwenden, um den Abruf weiter anzupassen.<br />Die Einstellung "Einfach" ist f\xc3\xbcr Feeds ausreichend, die den vollst\xc3\xa4ndigen Nachrichten-Inhalt im Feed schon eingebettet haben.</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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\x00Ben\xc3\xb6tigen Sie Hilfe beim Erstellen von weiteren Nachrichten-Profilen? Schauen Sie hier vorbei: <a href="https://libprs500.kovidgoyal.net/wiki/UserProfiles">UserProfiles</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\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&titel:\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:\x00Profil-Quellcode (Python)\x00Fortschritt\x00Herausgeber\x00Bewertung\x00Bewertung dieses Buches: 0-5 Sterne\x00Reader\n%s verf\xc3\xbcgbar\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\x00Feeds aus dem Profil 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.\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\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.\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.\x00Zeitstempel\x00Titel\x00Auf Titel basierende Ermittlung\x00Titel:\x00Oberer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Versuche &vollst\xc3\xa4ndige Artikel zu laden\x00Verkn\xc3\xbcpfungen im RSS Feed bis zu den vollst\xc3\xa4ndigen Artikeln im Netz verfolgen. Falls Sie diese Option w\xc3\xa4hlen, m\xc3\xbcssen Sie in den meisten F\xc3\xa4llen den erweiterten Modus zur Konfiguration benutzen.\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\x9a\x01\x00\x00\x1c\x00\x00\x00\xec\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x19\x00\x00\x0e\x00\x00\x00\xbd\x19\x00\x00!\x00\x00\x00\xcc\x19\x00\x00\x0b\x00\x00\x00\xee\x19\x00\x00\x05\x00\x00\x00\xfa\x19\x00\x00\x06\x00\x00\x00\x00\x1a\x00\x00\x17\x00\x00\x00\x07\x1a\x00\x00\x0b\x00\x00\x00\x1f\x1a\x00\x00\x04\x00\x00\x00+\x1a\x00\x00\x03\x00\x00\x000\x1a\x00\x00\x08\x00\x00\x004\x1a\x00\x00\x06\x00\x00\x00=\x1a\x00\x00\x1c\x00\x00\x00D\x1a\x00\x00\x0e\x00\x00\x00a\x1a\x00\x00\x0c\x00\x00\x00p\x1a\x00\x00\t\x00\x00\x00}\x1a\x00\x00\t\x00\x00\x00\x87\x1a\x00\x00\x0c\x00\x00\x00\x91\x1a\x00\x00\x0f\x00\x00\x00\x9e\x1a\x00\x00\x11\x00\x00\x00\xae\x1a\x00\x00\x1a\x00\x00\x00\xc0\x1a\x00\x00\x0c\x00\x00\x00\xdb\x1a\x00\x00\x1d\x00\x00\x00\xe8\x1a\x00\x00\x0f\x00\x00\x00\x06\x1b\x00\x00\r\x00\x00\x00\x16\x1b\x00\x00)\x00\x00\x00$\x1b\x00\x00"\x00\x00\x00N\x1b\x00\x00\x18\x00\x00\x00q\x1b\x00\x00\x0b\x00\x00\x00\x8a\x1b\x00\x00\x10\x00\x00\x00\x96\x1b\x00\x00\x17\x00\x00\x00\xa7\x1b\x00\x00\n\x00\x00\x00\xbf\x1b\x00\x00\x0c\x00\x00\x00\xca\x1b\x00\x00\x1e\x00\x00\x00\xd7\x1b\x00\x00\t\x00\x00\x00\xf6\x1b\x00\x00\x0c\x00\x00\x00\x00\x1c\x00\x00\x08\x00\x00\x00\r\x1c\x00\x00\x14\x00\x00\x00\x16\x1c\x00\x00\x0f\x00\x00\x00+\x1c\x00\x00\r\x00\x00\x00;\x1c\x00\x00\x0e\x00\x00\x00I\x1c\x00\x00\x08\x00\x00\x00X\x1c\x00\x00\x08\x00\x00\x00a\x1c\x00\x00\x07\x00\x00\x00j\x1c\x00\x00\x0c\x00\x00\x00r\x1c\x00\x00\x0e\x00\x00\x00\x7f\x1c\x00\x00\x12\x00\x00\x00\x8e\x1c\x00\x00\x10\x00\x00\x00\xa1\x1c\x00\x00\x05\x00\x00\x00\xb2\x1c\x00\x00\x08\x00\x00\x00\xb8\x1c\x00\x00\x0c\x00\x00\x00\xc1\x1c\x00\x00\n\x00\x00\x00\xce\x1c\x00\x00\x0e\x00\x00\x00\xd9\x1c\x00\x00\x03\x00\x00\x00\xe8\x1c\x00\x001\x00\x00\x00\xec\x1c\x00\x00"\x00\x00\x00\x1e\x1d\x00\x00=\x00\x00\x00A\x1d\x00\x00\x18\x00\x00\x00\x7f\x1d\x00\x00+\x00\x00\x00\x98\x1d\x00\x00k\x02\x00\x00\xc4\x1d\x00\x00\xa3\x01\x00\x000 \x00\x00\x82\x02\x00\x00\xd4!\x00\x00>\x00\x00\x00W$\x00\x00S\x00\x00\x00\x96$\x00\x005\x00\x00\x00\xea$\x00\x00p\x00\x00\x00 %\x00\x00a\x00\x00\x00\x91%\x00\x00G\x00\x00\x00\xf3%\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\x00X\x00\x00\x00E)\x00\x00\r\x00\x00\x00\x9e)\x00\x00\x0f\x00\x00\x00\xac)\x00\x00\x0b\x00\x00\x00\xbc)\x00\x00\x0b\x00\x00\x00\xc8)\x00\x00\x18\x00\x00\x00\xd4)\x00\x007\x00\x00\x00\xed)\x00\x004\x00\x00\x00%*\x00\x00.\x00\x00\x00Z*\x00\x00\t\x00\x00\x00\x89*\x00\x00!\x00\x00\x00\x93*\x00\x00b\x00\x00\x00\xb5*\x00\x00o\x00\x00\x00\x18+\x00\x00\x16\x00\x00\x00\x88+\x00\x00\x13\x00\x00\x00\x9f+\x00\x006\x00\x00\x00\xb3+\x00\x00\x13\x00\x00\x00\xea+\x00\x00m\x00\x00\x00\xfe+\x00\x00\x08\x00\x00\x00l,\x00\x00\x0f\x00\x00\x00u,\x00\x00\x0f\x00\x00\x00\x85,\x00\x00\x05\x00\x00\x00\x95,\x00\x00\x03\x00\x00\x00\x9b,\x00\x00\x19\x00\x00\x00\x9f,\x00\x00\x1b\x00\x00\x00\xb9,\x00\x00\x16\x00\x00\x00\xd5,\x00\x00\x06\x00\x00\x00\xec,\x00\x00\x0e\x00\x00\x00\xf3,\x00\x00\r\x00\x00\x00\x02-\x00\x00\t\x00\x00\x00\x10-\x00\x00\x08\x00\x00\x00\x1a-\x00\x00\x11\x00\x00\x00#-\x00\x00\x17\x00\x00\x005-\x00\x00\x04\x00\x00\x00M-\x00\x00\x10\x00\x00\x00R-\x00\x00\x05\x00\x00\x00c-\x00\x00!\x00\x00\x00i-\x00\x00\x10\x00\x00\x00\x8b-\x00\x00\x05\x00\x00\x00\x9c-\x00\x00(\x00\x00\x00\xa2-\x00\x00\n\x00\x00\x00\xcb-\x00\x00.\x00\x00\x00\xd6-\x00\x005\x00\x00\x00\x05.\x00\x00$\x00\x00\x00;.\x00\x00\x0c\x00\x00\x00`.\x00\x00\x1a\x00\x00\x00m.\x00\x00\x10\x00\x00\x00\x88.\x00\x00.\x00\x00\x00\x99.\x00\x00\x0e\x00\x00\x00\xc8.\x00\x00\x0e\x00\x00\x00\xd7.\x00\x007\x00\x00\x00\xe6.\x00\x00\x14\x00\x00\x00\x1e/\x00\x00\x12\x00\x00\x003/\x00\x00#\x00\x00\x00F/\x00\x00\x0f\x00\x00\x00j/\x00\x00Z\x00\x00\x00z/\x00\x00\x19\x00\x00\x00\xd5/\x00\x00\x0b\x00\x00\x00\xef/\x00\x00\x13\x00\x00\x00\xfb/\x00\x00\x0b\x00\x00\x00\x0f0\x00\x00\x11\x00\x00\x00\x1b0\x00\x00\x08\x00\x00\x00-0\x00\x00\x14\x00\x00\x0060\x00\x00\x0f\x00\x00\x00K0\x00\x00R\x00\x00\x00[0\x00\x00!\x00\x00\x00\xae0\x00\x00\x1d\x00\x00\x00\xd00\x00\x00H\x00\x00\x00\xee0\x00\x00\x11\x00\x00\x0071\x00\x00\r\x00\x00\x00I1\x00\x00%\x00\x00\x00W1\x00\x00\x19\x00\x00\x00}1\x00\x00!\x00\x00\x00\x971\x00\x007\x00\x00\x00\xb91\x00\x00\x08\x00\x00\x00\xf11\x00\x00\r\x00\x00\x00\xfa1\x00\x00\t\x00\x00\x00\x082\x00\x00\x10\x00\x00\x00\x122\x00\x00\x11\x00\x00\x00#2\x00\x00\x0f\x00\x00\x0052\x00\x00\x14\x00\x00\x00E2\x00\x00\x0e\x00\x00\x00Z2\x00\x00\x1c\x00\x00\x00i2\x00\x00;\x00\x00\x00\x862\x00\x00\x15\x00\x00\x00\xc22\x00\x00R\x00\x00\x00\xd82\x00\x00\x17\x00\x00\x00+3\x00\x00\x18\x00\x00\x00C3\x00\x00\x0b\x00\x00\x00\\3\x00\x00\x13\x00\x00\x00h3\x00\x00\x04\x00\x00\x00|3\x00\x00\x19\x00\x00\x00\x813\x00\x00\x03\x00\x00\x00\x9b3\x00\x00h\x00\x00\x00\x9f3\x00\x00\x0e\x00\x00\x00\x084\x00\x00\x1b\x00\x00\x00\x174\x00\x00\x1a\x00\x00\x0034\x00\x00\x11\x00\x00\x00N4\x00\x00\x19\x00\x00\x00`4\x00\x00\x11\x00\x00\x00z4\x00\x00\x01\x00\x00\x00\x8c4\x00\x00\x05\x00\x00\x00\x8e4\x00\x00\x15\x00\x00\x00\x944\x00\x00\x15\x00\x00\x00\xaa4\x00\x00\x15\x00\x00\x00\xc04\x00\x00\x15\x00\x00\x00\xd64\x00\x00\x1a\x00\x00\x00\xec4\x00\x00\x0e\x00\x00\x00\x075\x00\x00\x1f\x00\x00\x00\x165\x00\x00C\x00\x00\x0065\x00\x00\x05\x00\x00\x00z5\x00\x00\x1f\x00\x00\x00\x805\x00\x00\x12\x00\x00\x00\xa05\x00\x00\x17\x00\x00\x00\xb35\x00\x00\x1f\x00\x00\x00\xcb5\x00\x00\'\x00\x00\x00\xeb5\x00\x003\x00\x00\x00\x136\x00\x00*\x00\x00\x00G6\x00\x00\n\x00\x00\x00r6\x00\x00\x16\x00\x00\x00}6\x00\x00\x10\x00\x00\x00\x946\x00\x00\x05\x00\x00\x00\xa56\x00\x00\x1d\x00\x00\x00\xab6\x00\x00\x0e\x00\x00\x00\xc96\x00\x00\x1a\x00\x00\x00\xd86\x00\x00\n\x00\x00\x00\xf36\x00\x00\x10\x00\x00\x00\xfe6\x00\x00\r\x00\x00\x00\x0f7\x00\x00\x11\x00\x00\x00\x1d7\x00\x00\x1f\x00\x00\x00/7\x00\x00\x13\x00\x00\x00O7\x00\x00\x1b\x00\x00\x00c7\x00\x00\x05\x00\x00\x00\x7f7\x00\x00\x0b\x00\x00\x00\x857\x00\x008\x00\x00\x00\x917\x00\x00\x08\x00\x00\x00\xca7\x00\x00\x88\x00\x00\x00\xd37\x00\x00\x1d\x01\x00\x00\\8\x00\x00J\x00\x00\x00z9\x00\x00#\x00\x00\x00\xc59\x00\x00\x04\x00\x00\x00\xe99\x00\x00\x06\x00\x00\x00\xee9\x00\x00\x07\x00\x00\x00\xf59\x00\x00\x07\x00\x00\x00\xfd9\x00\x00\'\x00\x00\x00\x05:\x00\x00\x1b\x00\x00\x00-:\x00\x00\x19\x00\x00\x00I:\x00\x00\x06\x00\x00\x00c:\x00\x00\x0c\x00\x00\x00j:\x00\x00\t\x00\x00\x00w:\x00\x00\x06\x00\x00\x00\x81:\x00\x00\xdc\x01\x00\x00\x88:\x00\x00n\x00\x00\x00e<\x00\x00a\x00\x00\x00\xd4<\x00\x00\x0e\x00\x00\x006=\x00\x00\x0e\x00\x00\x00E=\x00\x00\xa8\x00\x00\x00T=\x00\x00&\x00\x00\x00\xfd=\x00\x00\x10\x00\x00\x00$>\x00\x00\x19\x00\x00\x005>\x00\x00\x1a\x00\x00\x00O>\x00\x00.\x00\x00\x00j>\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\x07@\x00\x00\x10\x00\x00\x00\x81@\x00\x00\x04\x00\x00\x00\x92@\x00\x00\x06\x00\x00\x00\x97@\x00\x00"\x00\x00\x00\x9e@\x00\x00\t\x00\x00\x00\xc1@\x00\x00\n\x00\x00\x00\xcb@\x00\x00\x14\x00\x00\x00\xd6@\x00\x00\x10\x00\x00\x00\xeb@\x00\x00\x11\x00\x00\x00\xfc@\x00\x00\x08\x00\x00\x00\x0eA\x00\x00\x10\x00\x00\x00\x17A\x00\x00\x12\x00\x00\x00(A\x00\x00\x04\x00\x00\x00;A\x00\x00^\x00\x00\x00@A\x00\x00\x0f\x00\x00\x00\x9fA\x00\x00\n\x00\x00\x00\xafA\x00\x00\x07\x00\x00\x00\xbaA\x00\x00-\x00\x00\x00\xc2A\x00\x00+\x00\x00\x00\xf0A\x00\x00F\x00\x00\x00\x1cB\x00\x008\x00\x00\x00cB\x00\x00s\x00\x00\x00\x9cB\x00\x00\x0f\x00\x00\x00\x10C\x00\x00\n\x00\x00\x00 C\x00\x00\x10\x00\x00\x00+C\x00\x00:\x00\x00\x00<C\x00\x00\x0f\x00\x00\x00wC\x00\x00\x04\x00\x00\x00\x87C\x00\x00;\x00\x00\x00\x8cC\x00\x00G\x00\x00\x00\xc8C\x00\x001\x00\x00\x00\x10D\x00\x00Y\x00\x00\x00BD\x00\x004\x00\x00\x00\x9cD\x00\x00\x80\x00\x00\x00\xd1D\x00\x00H\x00\x00\x00RE\x00\x00\r\x00\x00\x00\x9bE\x00\x00\x0f\x00\x00\x00\xa9E\x00\x00\xbc\x00\x00\x00\xb9E\x00\x00\x1c\x00\x00\x00vF\x00\x00\x08\x00\x00\x00\x93F\x00\x00\t\x00\x00\x00\x9cF\x00\x00\x06\x00\x00\x00\xa6F\x00\x00\x1e\x00\x00\x00\xadF\x00\x00\x13\x00\x00\x00\xccF\x00\x00\x13\x00\x00\x00\xe0F\x00\x00+\x00\x00\x00\xf4F\x00\x00*\x00\x00\x00 G\x00\x000\x00\x00\x00KG\x00\x00)\x00\x00\x00|G\x00\x00<\x00\x00\x00\xa6G\x00\x00\x0c\x00\x00\x00\xe3G\x00\x00\x18\x00\x00\x00\xf0G\x00\x00<\x00\x00\x00\tH\x00\x000\x00\x00\x00FH\x00\x00\x84\x00\x00\x00wH\x00\x00X\x00\x00\x00\xfcH\x00\x00\x12\x00\x00\x00UI\x00\x00-\x00\x00\x00hI\x00\x00\x0c\x00\x00\x00\x96I\x00\x00\x0c\x00\x00\x00\xa3I\x00\x00\x0c\x00\x00\x00\xb0I\x00\x00"\x00\x00\x00\xbdI\x00\x009\x00\x00\x00\xe0I\x00\x00\x0f\x00\x00\x00\x1aJ\x00\x00V\x00\x00\x00*J\x00\x00r\x00\x00\x00\x81J\x00\x00G\x00\x00\x00\xf4J\x00\x00\'\x00\x00\x00<K\x00\x00\x0e\x00\x00\x00dK\x00\x00\x13\x00\x00\x00sK\x00\x00\x14\x00\x00\x00\x87K\x00\x00#\x00\x00\x00\x9cK\x00\x00\x06\x00\x00\x00\xc0K\x00\x00\r\x00\x00\x00\xc7K\x00\x00\r\x00\x00\x00\xd5K\x00\x00\x07\x00\x00\x00\xe3K\x00\x00\x1e\x00\x00\x00\xebK\x00\x00\x0b\x00\x00\x00\nL\x00\x00\x17\x00\x00\x00\x16L\x00\x00\x1b\x00\x00\x00.L\x00\x00\x1a\x00\x00\x00JL\x00\x00\x0e\x00\x00\x00eL\x00\x00^\x00\x00\x00tL\x00\x00\x12\x00\x00\x00\xd3L\x00\x00\x10\x00\x00\x00\xe6L\x00\x00\x10\x00\x00\x00\xf7L\x00\x00g\x00\x00\x00\x08M\x00\x00c\x00\x00\x00pM\x00\x007\x00\x00\x00\xd4M\x00\x00!\x00\x00\x00\x0cN\x00\x00d\x00\x00\x00.N\x00\x00\t\x00\x00\x00\x93N\x00\x00\x17\x00\x00\x00\x9dN\x00\x00\x16\x00\x00\x00\xb5N\x00\x00\x11\x00\x00\x00\xccN\x00\x00\x04\x01\x00\x00\xdeN\x00\x00z\x00\x00\x00\xe3O\x00\x00\x85\x00\x00\x00^P\x00\x00\xb6\x00\x00\x00\xe4P\x00\x00P\x00\x00\x00\x9bQ\x00\x00+\x01\x00\x00\xecQ\x00\x00#\x00\x00\x00\x18S\x00\x00\x06\x00\x00\x00<S\x00\x00\x17\x00\x00\x00CS\x00\x00\x07\x00\x00\x00[S\x00\x00\x03\x00\x00\x00cS\x00\x00\n\x00\x00\x00gS\x00\x00\x13\x00\x00\x00rS\x00\x00\x04\x00\x00\x00\x86S\x00\x00\x85\x00\x00\x00\x8bS\x00\x00\x04\x00\x00\x00\x11T\x00\x00\t\x00\x00\x00\x16T\x00\x000\x00\x00\x00 T\x00\x00X\x00\x00\x00QT\x00\x00\x9d\x00\x00\x00\xaaT\x00\x00&\x00\x00\x00HU\x00\x00\x1e\x00\x00\x00oU\x00\x00v\x00\x00\x00\x8eU\x00\x00\'\x00\x00\x00\x05V\x00\x00"\x00\x00\x00-V\x00\x00B\x00\x00\x00PV\x00\x00^\x00\x00\x00\x93V\x00\x00h\x00\x00\x00\xf2V\x00\x00\t\x00\x00\x00[W\x00\x00\x05\x00\x00\x00eW\x00\x00\x15\x00\x00\x00kW\x00\x00\x06\x00\x00\x00\x81W\x00\x00+\x00\x00\x00\x88W\x00\x00\x1e\x00\x00\x00\xb4W\x00\x00\x9c\x00\x00\x00\xd3W\x00\x00\x1b\x00\x00\x00pX\x00\x00&\x00\x00\x00\x8cX\x00\x00\x0b\x00\x00\x00\xb3X\x00\x00\x07\x00\x00\x00\xbfX\x00\x00\x13\x00\x00\x00\xc7X\x00\x00\x0c\x00\x00\x00\xdbX\x00\x00\x10\x00\x00\x00\xe8X\x00\x00\x10\x00\x00\x00\xf9X\x00\x00%\x00\x00\x00\nY\x00\x00\x1b\x00\x00\x000Y\x00\x00\xb4\x00\x00\x00LY\x00\x002\x00\x00\x00\x01Z\x00\x00\x14\x00\x00\x004Z\x00\x00_\x00\x00\x00IZ\x00\x00:\x00\x00\x00\xa9Z\x00\x00*\x00\x00\x00\xe4Z\x00\x00\x04\x00\x00\x00\x0f[\x00\x00\x14\x00\x00\x00\x14[\x00\x00\x07\x00\x00\x00)[\x00\x00\x07\x00\x00\x001[\x00\x00-\x00\x00\x009[\x00\x00d\x00\x00\x00g[\x00\x00#\x00\x00\x00\xcc[\x00\x002\x00\x00\x00\xf0[\x00\x003\x00\x00\x00#\\\x00\x00\x08\x00\x00\x00W\\\x00\x00\t\x00\x00\x00`\\\x00\x00(\x01\x00\x00j\\\x00\x00 \x00\x00\x00\x93]\x00\x00\x1d\x00\x00\x00\xb4]\x00\x00\x08\x00\x00\x00\xd2]\x00\x00\x05\x00\x00\x00\xdb]\x00\x00\x04\x00\x00\x00\xe1]\x00\x00\x19\x00\x00\x00\xe6]\x00\x00\r\x00\x00\x00\x00^\x00\x00\x07\x00\x00\x00\x0e^\x00\x00\t\x00\x00\x00\x16^\x00\x00\t\x00\x00\x00 ^\x00\x00\n\x00\x00\x00*^\x00\x00"\x00\x00\x005^\x00\x00\x12\x00\x00\x00X^\x00\x00\x11\x00\x00\x00k^\x00\x00\x0e\x00\x00\x00}^\x00\x00\x0f\x00\x00\x00\x8c^\x00\x00\x0b\x00\x00\x00\x9c^\x00\x00\x11\x00\x00\x00\xa8^\x00\x00\x15\x00\x00\x00\xba^\x00\x00$\x00\x00\x00\xd0^\x00\x00\x0c\x00\x00\x00\xf5^\x00\x000\x00\x00\x00\x02_\x00\x00\x18\x00\x00\x003_\x00\x00\x12\x00\x00\x00L_\x00\x00-\x00\x00\x00__\x00\x00&\x00\x00\x00\x8d_\x00\x00\x1e\x00\x00\x00\xb4_\x00\x00\x0b\x00\x00\x00\xd3_\x00\x00\x13\x00\x00\x00\xdf_\x00\x001\x00\x00\x00\xf3_\x00\x00\r\x00\x00\x00%`\x00\x00\x12\x00\x00\x003`\x00\x00+\x00\x00\x00F`\x00\x00\x08\x00\x00\x00r`\x00\x00\x0b\x00\x00\x00{`\x00\x00\r\x00\x00\x00\x87`\x00\x00\x14\x00\x00\x00\x95`\x00\x00\x11\x00\x00\x00\xaa`\x00\x00\x1a\x00\x00\x00\xbc`\x00\x00\x10\x00\x00\x00\xd7`\x00\x00\x08\x00\x00\x00\xe8`\x00\x00\x08\x00\x00\x00\xf1`\x00\x00\x07\x00\x00\x00\xfa`\x00\x00\x13\x00\x00\x00\x02a\x00\x00\x18\x00\x00\x00\x16a\x00\x00\x1e\x00\x00\x00/a\x00\x00\x1c\x00\x00\x00Na\x00\x00\x05\x00\x00\x00ka\x00\x00\t\x00\x00\x00qa\x00\x00\x11\x00\x00\x00{a\x00\x00\t\x00\x00\x00\x8da\x00\x00\x17\x00\x00\x00\x97a\x00\x00\x03\x00\x00\x00\xafa\x00\x00/\x00\x00\x00\xb3a\x00\x00-\x00\x00\x00\xe3a\x00\x00;\x00\x00\x00\x11b\x00\x00\x1b\x00\x00\x00Mb\x00\x00-\x00\x00\x00ib\x00\x00\xa4\x02\x00\x00\x97b\x00\x00\xa3\x01\x00\x00<e\x00\x00\x8c\x02\x00\x00\xe0f\x00\x00?\x00\x00\x00mi\x00\x00K\x00\x00\x00\xadi\x00\x004\x00\x00\x00\xf9i\x00\x00\x8f\x00\x00\x00.j\x00\x00j\x00\x00\x00\xbej\x00\x00K\x00\x00\x00)k\x00\x00\xd5\x00\x00\x00uk\x00\x00\x7f\x00\x00\x00Kl\x00\x00\xcd\x00\x00\x00\xcbl\x00\x00\xa4\x01\x00\x00\x99m\x00\x00.\x00\x00\x00>o\x00\x00\x01\x00\x00\x00mo\x00\x00e\x00\x00\x00oo\x00\x00\n\x00\x00\x00\xd5o\x00\x00\x16\x00\x00\x00\xe0o\x00\x00\x10\x00\x00\x00\xf7o\x00\x00\x18\x00\x00\x00\x08p\x00\x00/\x00\x00\x00!p\x00\x007\x00\x00\x00Qp\x00\x00H\x00\x00\x00\x89p\x00\x00<\x00\x00\x00\xd2p\x00\x00\x0e\x00\x00\x00\x0fq\x00\x003\x00\x00\x00\x1eq\x00\x00}\x00\x00\x00Rq\x00\x00\x98\x00\x00\x00\xd0q\x00\x00$\x00\x00\x00ir\x00\x00!\x00\x00\x00\x8er\x00\x00M\x00\x00\x00\xb0r\x00\x00!\x00\x00\x00\xfer\x00\x00r\x00\x00\x00 s\x00\x00\t\x00\x00\x00\x93s\x00\x00\x10\x00\x00\x00\x9ds\x00\x00\x10\x00\x00\x00\xaes\x00\x00\x05\x00\x00\x00\xbfs\x00\x00\t\x00\x00\x00\xc5s\x00\x00\'\x00\x00\x00\xcfs\x00\x00!\x00\x00\x00\xf7s\x00\x00\x13\x00\x00\x00\x19t\x00\x00\x05\x00\x00\x00-t\x00\x00\x11\x00\x00\x003t\x00\x00\x12\x00\x00\x00Et\x00\x00\t\x00\x00\x00Xt\x00\x00\x08\x00\x00\x00bt\x00\x00\x14\x00\x00\x00kt\x00\x00\x1b\x00\x00\x00\x80t\x00\x00\x06\x00\x00\x00\x9ct\x00\x00\x1b\x00\x00\x00\xa3t\x00\x00\x07\x00\x00\x00\xbft\x00\x003\x00\x00\x00\xc7t\x00\x00\x16\x00\x00\x00\xfbt\x00\x00\x06\x00\x00\x00\x12u\x00\x00)\x00\x00\x00\x19u\x00\x00\x07\x00\x00\x00Cu\x00\x008\x00\x00\x00Ku\x00\x00;\x00\x00\x00\x84u\x00\x001\x00\x00\x00\xc0u\x00\x00\x13\x00\x00\x00\xf2u\x00\x00%\x00\x00\x00\x06v\x00\x00\x16\x00\x00\x00,v\x00\x00/\x00\x00\x00Cv\x00\x00\x14\x00\x00\x00sv\x00\x00\x15\x00\x00\x00\x88v\x00\x00=\x00\x00\x00\x9ev\x00\x00!\x00\x00\x00\xdcv\x00\x00 \x00\x00\x00\xfev\x00\x005\x00\x00\x00\x1fw\x00\x00\x1d\x00\x00\x00Uw\x00\x00g\x00\x00\x00sw\x00\x00-\x00\x00\x00\xdbw\x00\x00\x10\x00\x00\x00\tx\x00\x00\x1c\x00\x00\x00\x1ax\x00\x00\x16\x00\x00\x007x\x00\x00\x15\x00\x00\x00Nx\x00\x00\n\x00\x00\x00dx\x00\x00\x1d\x00\x00\x00ox\x00\x00\x17\x00\x00\x00\x8dx\x00\x00S\x00\x00\x00\xa5x\x00\x00\x1d\x00\x00\x00\xf9x\x00\x00\x1c\x00\x00\x00\x17y\x00\x00V\x00\x00\x004y\x00\x00\x18\x00\x00\x00\x8by\x00\x00\x0e\x00\x00\x00\xa4y\x00\x00#\x00\x00\x00\xb3y\x00\x00\x1b\x00\x00\x00\xd7y\x00\x00&\x00\x00\x00\xf3y\x00\x00E\x00\x00\x00\x1az\x00\x00\x0b\x00\x00\x00`z\x00\x00\x0e\x00\x00\x00lz\x00\x00\n\x00\x00\x00{z\x00\x00\x13\x00\x00\x00\x86z\x00\x00\x12\x00\x00\x00\x9az\x00\x00\x10\x00\x00\x00\xadz\x00\x00\x19\x00\x00\x00\xbez\x00\x00\x0f\x00\x00\x00\xd8z\x00\x00#\x00\x00\x00\xe8z\x00\x00W\x00\x00\x00\x0c{\x00\x00!\x00\x00\x00d{\x00\x00}\x00\x00\x00\x86{\x00\x00"\x00\x00\x00\x04|\x00\x00"\x00\x00\x00\'|\x00\x00\x0b\x00\x00\x00J|\x00\x00\x1f\x00\x00\x00V|\x00\x00\x05\x00\x00\x00v|\x00\x002\x00\x00\x00||\x00\x00\x06\x00\x00\x00\xaf|\x00\x00\x8f\x00\x00\x00\xb6|\x00\x00\x14\x00\x00\x00F}\x00\x00\x1b\x00\x00\x00[}\x00\x00!\x00\x00\x00w}\x00\x00\x10\x00\x00\x00\x99}\x00\x00\x18\x00\x00\x00\xaa}\x00\x00#\x00\x00\x00\xc3}\x00\x00\x01\x00\x00\x00\xe7}\x00\x00\x05\x00\x00\x00\xe9}\x00\x00\x18\x00\x00\x00\xef}\x00\x00\x18\x00\x00\x00\x08~\x00\x00\x1b\x00\x00\x00!~\x00\x00\x19\x00\x00\x00=~\x00\x00 \x00\x00\x00W~\x00\x00\x13\x00\x00\x00x~\x00\x00-\x00\x00\x00\x8c~\x00\x00V\x00\x00\x00\xba~\x00\x00\x06\x00\x00\x00\x11\x7f\x00\x00,\x00\x00\x00\x18\x7f\x00\x00\x15\x00\x00\x00E\x7f\x00\x00)\x00\x00\x00[\x7f\x00\x00$\x00\x00\x00\x85\x7f\x00\x00,\x00\x00\x00\xaa\x7f\x00\x00:\x00\x00\x00\xd7\x7f\x00\x00/\x00\x00\x00\x12\x80\x00\x00\n\x00\x00\x00B\x80\x00\x00$\x00\x00\x00M\x80\x00\x00\x0f\x00\x00\x00r\x80\x00\x00\x06\x00\x00\x00\x82\x80\x00\x00\x1d\x00\x00\x00\x89\x80\x00\x00\x10\x00\x00\x00\xa7\x80\x00\x00\x1f\x00\x00\x00\xb8\x80\x00\x00\x18\x00\x00\x00\xd8\x80\x00\x00\x17\x00\x00\x00\xf1\x80\x00\x00\x0c\x00\x00\x00\t\x81\x00\x00\x10\x00\x00\x00\x16\x81\x00\x00!\x00\x00\x00\'\x81\x00\x00\x17\x00\x00\x00I\x81\x00\x00\x1d\x00\x00\x00a\x81\x00\x00\x07\x00\x00\x00\x7f\x81\x00\x00\x0b\x00\x00\x00\x87\x81\x00\x00/\x00\x00\x00\x93\x81\x00\x00\x06\x00\x00\x00\xc3\x81\x00\x00\xad\x00\x00\x00\xca\x81\x00\x00"\x01\x00\x00x\x82\x00\x00^\x00\x00\x00\x9b\x83\x00\x001\x00\x00\x00\xfa\x83\x00\x00\x03\x00\x00\x00,\x84\x00\x00\x07\x00\x00\x000\x84\x00\x00\x08\x00\x00\x008\x84\x00\x00\t\x00\x00\x00A\x84\x00\x004\x00\x00\x00K\x84\x00\x00!\x00\x00\x00\x80\x84\x00\x00\x1e\x00\x00\x00\xa2\x84\x00\x00\n\x00\x00\x00\xc1\x84\x00\x00\x12\x00\x00\x00\xcc\x84\x00\x00\x16\x00\x00\x00\xdf\x84\x00\x00\x06\x00\x00\x00\xf6\x84\x00\x00\xe2\x01\x00\x00\xfd\x84\x00\x00\x8f\x00\x00\x00\xe0\x86\x00\x00r\x00\x00\x00p\x87\x00\x00\x16\x00\x00\x00\xe3\x87\x00\x00\x12\x00\x00\x00\xfa\x87\x00\x00\xc7\x00\x00\x00\r\x88\x00\x00*\x00\x00\x00\xd5\x88\x00\x00\x19\x00\x00\x00\x00\x89\x00\x00\x15\x00\x00\x00\x1a\x89\x00\x00\x15\x00\x00\x000\x89\x00\x000\x00\x00\x00F\x89\x00\x00\x1f\x00\x00\x00w\x89\x00\x00#\x00\x00\x00\x97\x89\x00\x00\x07\x00\x00\x00\xbb\x89\x00\x00"\x00\x00\x00\xc3\x89\x00\x00\t\x00\x00\x00\xe6\x89\x00\x00\t\x00\x00\x00\xf0\x89\x00\x009\x00\x00\x00\xfa\x89\x00\x00\n\x00\x00\x004\x8a\x00\x00<\x00\x00\x00?\x8a\x00\x00\n\x00\x00\x00|\x8a\x00\x003\x00\x00\x00\x87\x8a\x00\x009\x00\x00\x00\xbb\x8a\x00\x00\r\x00\x00\x00\xf5\x8a\x00\x001\x00\x00\x00\x03\x8b\x00\x00\x11\x00\x00\x005\x8b\x00\x00\t\x00\x00\x00G\x8b\x00\x00|\x00\x00\x00Q\x8b\x00\x00\x17\x00\x00\x00\xce\x8b\x00\x00\x04\x00\x00\x00\xe6\x8b\x00\x00\n\x00\x00\x00\xeb\x8b\x00\x006\x00\x00\x00\xf6\x8b\x00\x00\x11\x00\x00\x00-\x8c\x00\x00\x16\x00\x00\x00?\x8c\x00\x00\x17\x00\x00\x00V\x8c\x00\x00\x13\x00\x00\x00n\x8c\x00\x00\x1b\x00\x00\x00\x82\x8c\x00\x00\x0c\x00\x00\x00\x9e\x8c\x00\x00"\x00\x00\x00\xab\x8c\x00\x00 \x00\x00\x00\xce\x8c\x00\x00\x07\x00\x00\x00\xef\x8c\x00\x00_\x00\x00\x00\xf7\x8c\x00\x00\x1e\x00\x00\x00W\x8d\x00\x00\x0b\x00\x00\x00v\x8d\x00\x00\x08\x00\x00\x00\x82\x8d\x00\x00\x1d\x00\x00\x00\x8b\x8d\x00\x00\x1b\x00\x00\x00\xa9\x8d\x00\x00H\x00\x00\x00\xc5\x8d\x00\x00K\x00\x00\x00\x0e\x8e\x00\x00\x93\x00\x00\x00Z\x8e\x00\x00\x11\x00\x00\x00\xee\x8e\x00\x00\x19\x00\x00\x00\x00\x8f\x00\x00\x19\x00\x00\x00\x1a\x8f\x00\x00J\x00\x00\x004\x8f\x00\x00\x18\x00\x00\x00\x7f\x8f\x00\x00\x04\x00\x00\x00\x98\x8f\x00\x00:\x00\x00\x00\x9d\x8f\x00\x00J\x00\x00\x00\xd8\x8f\x00\x001\x00\x00\x00#\x90\x00\x00r\x00\x00\x00U\x90\x00\x00G\x00\x00\x00\xc8\x90\x00\x00w\x00\x00\x00\x10\x91\x00\x00Z\x00\x00\x00\x88\x91\x00\x00\x10\x00\x00\x00\xe3\x91\x00\x00\r\x00\x00\x00\xf4\x91\x00\x00\xc8\x00\x00\x00\x02\x92\x00\x00\x19\x00\x00\x00\xcb\x92\x00\x00\x08\x00\x00\x00\xe5\x92\x00\x00\t\x00\x00\x00\xee\x92\x00\x00\x0b\x00\x00\x00\xf8\x92\x00\x00 \x00\x00\x00\x04\x93\x00\x00\x19\x00\x00\x00%\x93\x00\x00\x14\x00\x00\x00?\x93\x00\x00-\x00\x00\x00T\x93\x00\x00-\x00\x00\x00\x82\x93\x00\x002\x00\x00\x00\xb0\x93\x00\x00+\x00\x00\x00\xe3\x93\x00\x008\x00\x00\x00\x0f\x94\x00\x00\x0f\x00\x00\x00H\x94\x00\x00\x1e\x00\x00\x00X\x94\x00\x00G\x00\x00\x00w\x94\x00\x001\x00\x00\x00\xbf\x94\x00\x00\x95\x00\x00\x00\xf1\x94\x00\x00N\x00\x00\x00\x87\x95\x00\x00\x1f\x00\x00\x00\xd6\x95\x00\x007\x00\x00\x00\xf6\x95\x00\x00\x08\x00\x00\x00.\x96\x00\x00\x0c\x00\x00\x007\x96\x00\x00\x13\x00\x00\x00D\x96\x00\x004\x00\x00\x00X\x96\x00\x00=\x00\x00\x00\x8d\x96\x00\x00\r\x00\x00\x00\xcb\x96\x00\x00\\\x00\x00\x00\xd9\x96\x00\x00~\x00\x00\x006\x97\x00\x00C\x00\x00\x00\xb5\x97\x00\x000\x00\x00\x00\xf9\x97\x00\x00\x15\x00\x00\x00*\x98\x00\x00\x1b\x00\x00\x00@\x98\x00\x00\x1d\x00\x00\x00\\\x98\x00\x000\x00\x00\x00z\x98\x00\x00\x06\x00\x00\x00\xab\x98\x00\x00\x11\x00\x00\x00\xb2\x98\x00\x00\r\x00\x00\x00\xc4\x98\x00\x00\x07\x00\x00\x00\xd2\x98\x00\x001\x00\x00\x00\xda\x98\x00\x00\x18\x00\x00\x00\x0c\x99\x00\x00(\x00\x00\x00%\x99\x00\x00$\x00\x00\x00N\x99\x00\x00&\x00\x00\x00s\x99\x00\x00\x11\x00\x00\x00\x9a\x99\x00\x00`\x00\x00\x00\xac\x99\x00\x00\x1c\x00\x00\x00\r\x9a\x00\x00\x16\x00\x00\x00*\x9a\x00\x00\x15\x00\x00\x00A\x9a\x00\x00\x95\x00\x00\x00W\x9a\x00\x00n\x00\x00\x00\xed\x9a\x00\x00?\x00\x00\x00\\\x9b\x00\x002\x00\x00\x00\x9c\x9b\x00\x00m\x00\x00\x00\xcf\x9b\x00\x00\x0c\x00\x00\x00=\x9c\x00\x00\x18\x00\x00\x00J\x9c\x00\x00\x1d\x00\x00\x00c\x9c\x00\x00\x1c\x00\x00\x00\x81\x9c\x00\x00\x1c\x01\x00\x00\x9e\x9c\x00\x00y\x00\x00\x00\xbb\x9d\x00\x00\x88\x00\x00\x005\x9e\x00\x00\xc5\x00\x00\x00\xbe\x9e\x00\x00M\x00\x00\x00\x84\x9f\x00\x00V\x01\x00\x00\xd2\x9f\x00\x00%\x00\x00\x00)\xa1\x00\x00\x06\x00\x00\x00O\xa1\x00\x00\x1f\x00\x00\x00V\xa1\x00\x00\x0b\x00\x00\x00v\xa1\x00\x00\x07\x00\x00\x00\x82\xa1\x00\x00\x15\x00\x00\x00\x8a\xa1\x00\x00\x1e\x00\x00\x00\xa0\xa1\x00\x00\t\x00\x00\x00\xbf\xa1\x00\x00\x89\x00\x00\x00\xc9\xa1\x00\x00\x04\x00\x00\x00S\xa2\x00\x00\t\x00\x00\x00X\xa2\x00\x00<\x00\x00\x00b\xa2\x00\x00l\x00\x00\x00\x9f\xa2\x00\x00\x98\x00\x00\x00\x0c\xa3\x00\x00-\x00\x00\x00\xa5\xa3\x00\x00#\x00\x00\x00\xd3\xa3\x00\x00\x89\x00\x00\x00\xf7\xa3\x00\x00*\x00\x00\x00\x81\xa4\x00\x00)\x00\x00\x00\xac\xa4\x00\x00^\x00\x00\x00\xd6\xa4\x00\x00s\x00\x00\x005\xa5\x00\x00z\x00\x00\x00\xa9\xa5\x00\x00\x0f\x00\x00\x00$\xa6\x00\x00\x07\x00\x00\x004\xa6\x00\x00\x1f\x00\x00\x00<\xa6\x00\x00\x06\x00\x00\x00\\\xa6\x00\x008\x00\x00\x00c\xa6\x00\x00(\x00\x00\x00\x9c\xa6\x00\x00\xc5\x00\x00\x00\xc5\xa6\x00\x00!\x00\x00\x00\x8b\xa7\x00\x00%\x00\x00\x00\xad\xa7\x00\x00\r\x00\x00\x00\xd3\xa7\x00\x00\x0b\x00\x00\x00\xe1\xa7\x00\x00\x1b\x00\x00\x00\xed\xa7\x00\x00\x0e\x00\x00\x00\t\xa8\x00\x00\x12\x00\x00\x00\x18\xa8\x00\x00\x12\x00\x00\x00+\xa8\x00\x00;\x00\x00\x00>\xa8\x00\x000\x00\x00\x00z\xa8\x00\x00\xbc\x00\x00\x00\xab\xa8\x00\x00:\x00\x00\x00h\xa9\x00\x00\x15\x00\x00\x00\xa3\xa9\x00\x00i\x00\x00\x00\xb9\xa9\x00\x00N\x00\x00\x00#\xaa\x00\x007\x00\x00\x00r\xaa\x00\x00\x07\x00\x00\x00\xaa\xaa\x00\x00\x19\x00\x00\x00\xb2\xaa\x00\x00\x0c\x00\x00\x00\xcc\xaa\x00\x00\r\x00\x00\x00\xd9\xaa\x00\x00,\x00\x00\x00\xe7\xaa\x00\x00n\x00\x00\x00\x14\xab\x00\x001\x00\x00\x00\x83\xab\x00\x006\x00\x00\x00\xb5\xab\x00\x002\x00\x00\x00\xec\xab\x00\x00\n\x00\x00\x00\x1f\xac\x00\x00\t\x00\x00\x00*\xac\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 characters\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 profile\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Summary length:\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 profile, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced" setting to further customize the fetch process.<br />The Basic tab is useful mainly for feeds that have the full article content embedded within them.</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>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 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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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 profiles, please visit <a href="https://libprs500.kovidgoyal.net/wiki/UserProfiles">UserProfiles</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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Try to download &full articles\x00Try to follow links in the RSS feed to full articles on the web. If you enable this option, you\'re probably going to end up having to use the advanced mode.\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.43\nPOT-Creation-Date: 2008-03-23 16:44+PDT\nPO-Revision-Date: 2008-03-23 16:44+PDT\nLast-Translator: Automatically generated\nLanguage-Team: it\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 Zeichen\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:\x00Profil 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\x00L\xc3\xa4nge der Zu&sammenfassung:\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 Nachrichten-Grundprofil, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />F\xc3\xbcr die meisten Feeds m\xc3\xbcssen Sie die "Erweitert" Einstellung verwenden, um den Abruf weiter anzupassen.<br />Die Einstellung "Einfach" ist f\xc3\xbcr Feeds ausreichend, die den vollst\xc3\xa4ndigen Nachrichten-Inhalt im Feed schon eingebettet haben.</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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\x00Ben\xc3\xb6tigen Sie Hilfe beim Erstellen von weiteren Nachrichten-Profilen? Schauen Sie hier vorbei: <a href="https://libprs500.kovidgoyal.net/wiki/UserProfiles">UserProfiles</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\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\x00Profil&titel:\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:\x00Profil-Quellcode (Python)\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Sony Reader\n%s disponible\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\x00Feeds aus dem Profil 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.\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\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.\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.\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 &vollst\xc3\xa4ndige Artikel zu laden\x00Verkn\xc3\xbcpfungen im RSS Feed bis zu den vollst\xc3\xa4ndigen Artikeln im Netz verfolgen. Falls Sie diese Option w\xc3\xa4hlen, m\xc3\xbcssen Sie in den meisten F\xc3\xa4llen den erweiterten Modus zur Konfiguration benutzen.\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', '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-23 16:44+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\x9a\x01\x00\x00\x1c\x00\x00\x00\xec\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xbc\x19\x00\x00\x0e\x00\x00\x00\xbd\x19\x00\x00!\x00\x00\x00\xcc\x19\x00\x00\x0b\x00\x00\x00\xee\x19\x00\x00\x05\x00\x00\x00\xfa\x19\x00\x00\x06\x00\x00\x00\x00\x1a\x00\x00\x17\x00\x00\x00\x07\x1a\x00\x00\x0b\x00\x00\x00\x1f\x1a\x00\x00\x04\x00\x00\x00+\x1a\x00\x00\x03\x00\x00\x000\x1a\x00\x00\x08\x00\x00\x004\x1a\x00\x00\x06\x00\x00\x00=\x1a\x00\x00\x1c\x00\x00\x00D\x1a\x00\x00\x0e\x00\x00\x00a\x1a\x00\x00\x0c\x00\x00\x00p\x1a\x00\x00\t\x00\x00\x00}\x1a\x00\x00\t\x00\x00\x00\x87\x1a\x00\x00\x0c\x00\x00\x00\x91\x1a\x00\x00\x0f\x00\x00\x00\x9e\x1a\x00\x00\x11\x00\x00\x00\xae\x1a\x00\x00\x1a\x00\x00\x00\xc0\x1a\x00\x00\x0c\x00\x00\x00\xdb\x1a\x00\x00\x1d\x00\x00\x00\xe8\x1a\x00\x00\x0f\x00\x00\x00\x06\x1b\x00\x00\r\x00\x00\x00\x16\x1b\x00\x00)\x00\x00\x00$\x1b\x00\x00"\x00\x00\x00N\x1b\x00\x00\x18\x00\x00\x00q\x1b\x00\x00\x0b\x00\x00\x00\x8a\x1b\x00\x00\x10\x00\x00\x00\x96\x1b\x00\x00\x17\x00\x00\x00\xa7\x1b\x00\x00\n\x00\x00\x00\xbf\x1b\x00\x00\x0c\x00\x00\x00\xca\x1b\x00\x00\x1e\x00\x00\x00\xd7\x1b\x00\x00\t\x00\x00\x00\xf6\x1b\x00\x00\x0c\x00\x00\x00\x00\x1c\x00\x00\x08\x00\x00\x00\r\x1c\x00\x00\x14\x00\x00\x00\x16\x1c\x00\x00\x0f\x00\x00\x00+\x1c\x00\x00\r\x00\x00\x00;\x1c\x00\x00\x0e\x00\x00\x00I\x1c\x00\x00\x08\x00\x00\x00X\x1c\x00\x00\x08\x00\x00\x00a\x1c\x00\x00\x07\x00\x00\x00j\x1c\x00\x00\x0c\x00\x00\x00r\x1c\x00\x00\x0e\x00\x00\x00\x7f\x1c\x00\x00\x12\x00\x00\x00\x8e\x1c\x00\x00\x10\x00\x00\x00\xa1\x1c\x00\x00\x05\x00\x00\x00\xb2\x1c\x00\x00\x08\x00\x00\x00\xb8\x1c\x00\x00\x0c\x00\x00\x00\xc1\x1c\x00\x00\n\x00\x00\x00\xce\x1c\x00\x00\x0e\x00\x00\x00\xd9\x1c\x00\x00\x03\x00\x00\x00\xe8\x1c\x00\x001\x00\x00\x00\xec\x1c\x00\x00"\x00\x00\x00\x1e\x1d\x00\x00=\x00\x00\x00A\x1d\x00\x00\x18\x00\x00\x00\x7f\x1d\x00\x00+\x00\x00\x00\x98\x1d\x00\x00k\x02\x00\x00\xc4\x1d\x00\x00\xa3\x01\x00\x000 \x00\x00\x82\x02\x00\x00\xd4!\x00\x00>\x00\x00\x00W$\x00\x00S\x00\x00\x00\x96$\x00\x005\x00\x00\x00\xea$\x00\x00p\x00\x00\x00 %\x00\x00a\x00\x00\x00\x91%\x00\x00G\x00\x00\x00\xf3%\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\x00X\x00\x00\x00E)\x00\x00\r\x00\x00\x00\x9e)\x00\x00\x0f\x00\x00\x00\xac)\x00\x00\x0b\x00\x00\x00\xbc)\x00\x00\x0b\x00\x00\x00\xc8)\x00\x00\x18\x00\x00\x00\xd4)\x00\x007\x00\x00\x00\xed)\x00\x004\x00\x00\x00%*\x00\x00.\x00\x00\x00Z*\x00\x00\t\x00\x00\x00\x89*\x00\x00!\x00\x00\x00\x93*\x00\x00b\x00\x00\x00\xb5*\x00\x00o\x00\x00\x00\x18+\x00\x00\x16\x00\x00\x00\x88+\x00\x00\x13\x00\x00\x00\x9f+\x00\x006\x00\x00\x00\xb3+\x00\x00\x13\x00\x00\x00\xea+\x00\x00m\x00\x00\x00\xfe+\x00\x00\x08\x00\x00\x00l,\x00\x00\x0f\x00\x00\x00u,\x00\x00\x0f\x00\x00\x00\x85,\x00\x00\x05\x00\x00\x00\x95,\x00\x00\x03\x00\x00\x00\x9b,\x00\x00\x19\x00\x00\x00\x9f,\x00\x00\x1b\x00\x00\x00\xb9,\x00\x00\x16\x00\x00\x00\xd5,\x00\x00\x06\x00\x00\x00\xec,\x00\x00\x0e\x00\x00\x00\xf3,\x00\x00\r\x00\x00\x00\x02-\x00\x00\t\x00\x00\x00\x10-\x00\x00\x08\x00\x00\x00\x1a-\x00\x00\x11\x00\x00\x00#-\x00\x00\x17\x00\x00\x005-\x00\x00\x04\x00\x00\x00M-\x00\x00\x10\x00\x00\x00R-\x00\x00\x05\x00\x00\x00c-\x00\x00!\x00\x00\x00i-\x00\x00\x10\x00\x00\x00\x8b-\x00\x00\x05\x00\x00\x00\x9c-\x00\x00(\x00\x00\x00\xa2-\x00\x00\n\x00\x00\x00\xcb-\x00\x00.\x00\x00\x00\xd6-\x00\x005\x00\x00\x00\x05.\x00\x00$\x00\x00\x00;.\x00\x00\x0c\x00\x00\x00`.\x00\x00\x1a\x00\x00\x00m.\x00\x00\x10\x00\x00\x00\x88.\x00\x00.\x00\x00\x00\x99.\x00\x00\x0e\x00\x00\x00\xc8.\x00\x00\x0e\x00\x00\x00\xd7.\x00\x007\x00\x00\x00\xe6.\x00\x00\x14\x00\x00\x00\x1e/\x00\x00\x12\x00\x00\x003/\x00\x00#\x00\x00\x00F/\x00\x00\x0f\x00\x00\x00j/\x00\x00Z\x00\x00\x00z/\x00\x00\x19\x00\x00\x00\xd5/\x00\x00\x0b\x00\x00\x00\xef/\x00\x00\x13\x00\x00\x00\xfb/\x00\x00\x0b\x00\x00\x00\x0f0\x00\x00\x11\x00\x00\x00\x1b0\x00\x00\x08\x00\x00\x00-0\x00\x00\x14\x00\x00\x0060\x00\x00\x0f\x00\x00\x00K0\x00\x00R\x00\x00\x00[0\x00\x00!\x00\x00\x00\xae0\x00\x00\x1d\x00\x00\x00\xd00\x00\x00H\x00\x00\x00\xee0\x00\x00\x11\x00\x00\x0071\x00\x00\r\x00\x00\x00I1\x00\x00%\x00\x00\x00W1\x00\x00\x19\x00\x00\x00}1\x00\x00!\x00\x00\x00\x971\x00\x007\x00\x00\x00\xb91\x00\x00\x08\x00\x00\x00\xf11\x00\x00\r\x00\x00\x00\xfa1\x00\x00\t\x00\x00\x00\x082\x00\x00\x10\x00\x00\x00\x122\x00\x00\x11\x00\x00\x00#2\x00\x00\x0f\x00\x00\x0052\x00\x00\x14\x00\x00\x00E2\x00\x00\x0e\x00\x00\x00Z2\x00\x00\x1c\x00\x00\x00i2\x00\x00;\x00\x00\x00\x862\x00\x00\x15\x00\x00\x00\xc22\x00\x00R\x00\x00\x00\xd82\x00\x00\x17\x00\x00\x00+3\x00\x00\x18\x00\x00\x00C3\x00\x00\x0b\x00\x00\x00\\3\x00\x00\x13\x00\x00\x00h3\x00\x00\x04\x00\x00\x00|3\x00\x00\x19\x00\x00\x00\x813\x00\x00\x03\x00\x00\x00\x9b3\x00\x00h\x00\x00\x00\x9f3\x00\x00\x0e\x00\x00\x00\x084\x00\x00\x1b\x00\x00\x00\x174\x00\x00\x1a\x00\x00\x0034\x00\x00\x11\x00\x00\x00N4\x00\x00\x19\x00\x00\x00`4\x00\x00\x11\x00\x00\x00z4\x00\x00\x01\x00\x00\x00\x8c4\x00\x00\x05\x00\x00\x00\x8e4\x00\x00\x15\x00\x00\x00\x944\x00\x00\x15\x00\x00\x00\xaa4\x00\x00\x15\x00\x00\x00\xc04\x00\x00\x15\x00\x00\x00\xd64\x00\x00\x1a\x00\x00\x00\xec4\x00\x00\x0e\x00\x00\x00\x075\x00\x00\x1f\x00\x00\x00\x165\x00\x00C\x00\x00\x0065\x00\x00\x05\x00\x00\x00z5\x00\x00\x1f\x00\x00\x00\x805\x00\x00\x12\x00\x00\x00\xa05\x00\x00\x17\x00\x00\x00\xb35\x00\x00\x1f\x00\x00\x00\xcb5\x00\x00\'\x00\x00\x00\xeb5\x00\x003\x00\x00\x00\x136\x00\x00*\x00\x00\x00G6\x00\x00\n\x00\x00\x00r6\x00\x00\x16\x00\x00\x00}6\x00\x00\x10\x00\x00\x00\x946\x00\x00\x05\x00\x00\x00\xa56\x00\x00\x1d\x00\x00\x00\xab6\x00\x00\x0e\x00\x00\x00\xc96\x00\x00\x1a\x00\x00\x00\xd86\x00\x00\n\x00\x00\x00\xf36\x00\x00\x10\x00\x00\x00\xfe6\x00\x00\r\x00\x00\x00\x0f7\x00\x00\x11\x00\x00\x00\x1d7\x00\x00\x1f\x00\x00\x00/7\x00\x00\x13\x00\x00\x00O7\x00\x00\x1b\x00\x00\x00c7\x00\x00\x05\x00\x00\x00\x7f7\x00\x00\x0b\x00\x00\x00\x857\x00\x008\x00\x00\x00\x917\x00\x00\x08\x00\x00\x00\xca7\x00\x00\x88\x00\x00\x00\xd37\x00\x00\x1d\x01\x00\x00\\8\x00\x00J\x00\x00\x00z9\x00\x00#\x00\x00\x00\xc59\x00\x00\x04\x00\x00\x00\xe99\x00\x00\x06\x00\x00\x00\xee9\x00\x00\x07\x00\x00\x00\xf59\x00\x00\x07\x00\x00\x00\xfd9\x00\x00\'\x00\x00\x00\x05:\x00\x00\x1b\x00\x00\x00-:\x00\x00\x19\x00\x00\x00I:\x00\x00\x06\x00\x00\x00c:\x00\x00\x0c\x00\x00\x00j:\x00\x00\t\x00\x00\x00w:\x00\x00\x06\x00\x00\x00\x81:\x00\x00\xdc\x01\x00\x00\x88:\x00\x00n\x00\x00\x00e<\x00\x00a\x00\x00\x00\xd4<\x00\x00\x0e\x00\x00\x006=\x00\x00\x0e\x00\x00\x00E=\x00\x00\xa8\x00\x00\x00T=\x00\x00&\x00\x00\x00\xfd=\x00\x00\x10\x00\x00\x00$>\x00\x00\x19\x00\x00\x005>\x00\x00\x1a\x00\x00\x00O>\x00\x00.\x00\x00\x00j>\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\x07@\x00\x00\x10\x00\x00\x00\x81@\x00\x00\x04\x00\x00\x00\x92@\x00\x00\x06\x00\x00\x00\x97@\x00\x00"\x00\x00\x00\x9e@\x00\x00\t\x00\x00\x00\xc1@\x00\x00\n\x00\x00\x00\xcb@\x00\x00\x14\x00\x00\x00\xd6@\x00\x00\x10\x00\x00\x00\xeb@\x00\x00\x11\x00\x00\x00\xfc@\x00\x00\x08\x00\x00\x00\x0eA\x00\x00\x10\x00\x00\x00\x17A\x00\x00\x12\x00\x00\x00(A\x00\x00\x04\x00\x00\x00;A\x00\x00^\x00\x00\x00@A\x00\x00\x0f\x00\x00\x00\x9fA\x00\x00\n\x00\x00\x00\xafA\x00\x00\x07\x00\x00\x00\xbaA\x00\x00-\x00\x00\x00\xc2A\x00\x00+\x00\x00\x00\xf0A\x00\x00F\x00\x00\x00\x1cB\x00\x008\x00\x00\x00cB\x00\x00s\x00\x00\x00\x9cB\x00\x00\x0f\x00\x00\x00\x10C\x00\x00\n\x00\x00\x00 C\x00\x00\x10\x00\x00\x00+C\x00\x00:\x00\x00\x00<C\x00\x00\x0f\x00\x00\x00wC\x00\x00\x04\x00\x00\x00\x87C\x00\x00;\x00\x00\x00\x8cC\x00\x00G\x00\x00\x00\xc8C\x00\x001\x00\x00\x00\x10D\x00\x00Y\x00\x00\x00BD\x00\x004\x00\x00\x00\x9cD\x00\x00\x80\x00\x00\x00\xd1D\x00\x00H\x00\x00\x00RE\x00\x00\r\x00\x00\x00\x9bE\x00\x00\x0f\x00\x00\x00\xa9E\x00\x00\xbc\x00\x00\x00\xb9E\x00\x00\x1c\x00\x00\x00vF\x00\x00\x08\x00\x00\x00\x93F\x00\x00\t\x00\x00\x00\x9cF\x00\x00\x06\x00\x00\x00\xa6F\x00\x00\x1e\x00\x00\x00\xadF\x00\x00\x13\x00\x00\x00\xccF\x00\x00\x13\x00\x00\x00\xe0F\x00\x00+\x00\x00\x00\xf4F\x00\x00*\x00\x00\x00 G\x00\x000\x00\x00\x00KG\x00\x00)\x00\x00\x00|G\x00\x00<\x00\x00\x00\xa6G\x00\x00\x0c\x00\x00\x00\xe3G\x00\x00\x18\x00\x00\x00\xf0G\x00\x00<\x00\x00\x00\tH\x00\x000\x00\x00\x00FH\x00\x00\x84\x00\x00\x00wH\x00\x00X\x00\x00\x00\xfcH\x00\x00\x12\x00\x00\x00UI\x00\x00-\x00\x00\x00hI\x00\x00\x0c\x00\x00\x00\x96I\x00\x00\x0c\x00\x00\x00\xa3I\x00\x00\x0c\x00\x00\x00\xb0I\x00\x00"\x00\x00\x00\xbdI\x00\x009\x00\x00\x00\xe0I\x00\x00\x0f\x00\x00\x00\x1aJ\x00\x00V\x00\x00\x00*J\x00\x00r\x00\x00\x00\x81J\x00\x00G\x00\x00\x00\xf4J\x00\x00\'\x00\x00\x00<K\x00\x00\x0e\x00\x00\x00dK\x00\x00\x13\x00\x00\x00sK\x00\x00\x14\x00\x00\x00\x87K\x00\x00#\x00\x00\x00\x9cK\x00\x00\x06\x00\x00\x00\xc0K\x00\x00\r\x00\x00\x00\xc7K\x00\x00\r\x00\x00\x00\xd5K\x00\x00\x07\x00\x00\x00\xe3K\x00\x00\x1e\x00\x00\x00\xebK\x00\x00\x0b\x00\x00\x00\nL\x00\x00\x17\x00\x00\x00\x16L\x00\x00\x1b\x00\x00\x00.L\x00\x00\x1a\x00\x00\x00JL\x00\x00\x0e\x00\x00\x00eL\x00\x00^\x00\x00\x00tL\x00\x00\x12\x00\x00\x00\xd3L\x00\x00\x10\x00\x00\x00\xe6L\x00\x00\x10\x00\x00\x00\xf7L\x00\x00g\x00\x00\x00\x08M\x00\x00c\x00\x00\x00pM\x00\x007\x00\x00\x00\xd4M\x00\x00!\x00\x00\x00\x0cN\x00\x00d\x00\x00\x00.N\x00\x00\t\x00\x00\x00\x93N\x00\x00\x17\x00\x00\x00\x9dN\x00\x00\x16\x00\x00\x00\xb5N\x00\x00\x11\x00\x00\x00\xccN\x00\x00\x04\x01\x00\x00\xdeN\x00\x00z\x00\x00\x00\xe3O\x00\x00\x85\x00\x00\x00^P\x00\x00\xb6\x00\x00\x00\xe4P\x00\x00P\x00\x00\x00\x9bQ\x00\x00+\x01\x00\x00\xecQ\x00\x00#\x00\x00\x00\x18S\x00\x00\x06\x00\x00\x00<S\x00\x00\x17\x00\x00\x00CS\x00\x00\x07\x00\x00\x00[S\x00\x00\x03\x00\x00\x00cS\x00\x00\n\x00\x00\x00gS\x00\x00\x13\x00\x00\x00rS\x00\x00\x04\x00\x00\x00\x86S\x00\x00\x85\x00\x00\x00\x8bS\x00\x00\x04\x00\x00\x00\x11T\x00\x00\t\x00\x00\x00\x16T\x00\x000\x00\x00\x00 T\x00\x00X\x00\x00\x00QT\x00\x00\x9d\x00\x00\x00\xaaT\x00\x00&\x00\x00\x00HU\x00\x00\x1e\x00\x00\x00oU\x00\x00v\x00\x00\x00\x8eU\x00\x00\'\x00\x00\x00\x05V\x00\x00"\x00\x00\x00-V\x00\x00B\x00\x00\x00PV\x00\x00^\x00\x00\x00\x93V\x00\x00h\x00\x00\x00\xf2V\x00\x00\t\x00\x00\x00[W\x00\x00\x05\x00\x00\x00eW\x00\x00\x15\x00\x00\x00kW\x00\x00\x06\x00\x00\x00\x81W\x00\x00+\x00\x00\x00\x88W\x00\x00\x1e\x00\x00\x00\xb4W\x00\x00\x9c\x00\x00\x00\xd3W\x00\x00\x1b\x00\x00\x00pX\x00\x00&\x00\x00\x00\x8cX\x00\x00\x0b\x00\x00\x00\xb3X\x00\x00\x07\x00\x00\x00\xbfX\x00\x00\x13\x00\x00\x00\xc7X\x00\x00\x0c\x00\x00\x00\xdbX\x00\x00\x10\x00\x00\x00\xe8X\x00\x00\x10\x00\x00\x00\xf9X\x00\x00%\x00\x00\x00\nY\x00\x00\x1b\x00\x00\x000Y\x00\x00\xb4\x00\x00\x00LY\x00\x002\x00\x00\x00\x01Z\x00\x00\x14\x00\x00\x004Z\x00\x00_\x00\x00\x00IZ\x00\x00:\x00\x00\x00\xa9Z\x00\x00*\x00\x00\x00\xe4Z\x00\x00\x04\x00\x00\x00\x0f[\x00\x00\x14\x00\x00\x00\x14[\x00\x00\x07\x00\x00\x00)[\x00\x00\x07\x00\x00\x001[\x00\x00-\x00\x00\x009[\x00\x00d\x00\x00\x00g[\x00\x00#\x00\x00\x00\xcc[\x00\x002\x00\x00\x00\xf0[\x00\x003\x00\x00\x00#\\\x00\x00\x08\x00\x00\x00W\\\x00\x00\t\x00\x00\x00`\\\x00\x00%\x01\x00\x00j\\\x00\x00 \x00\x00\x00\x90]\x00\x00\x1d\x00\x00\x00\xb1]\x00\x00\x08\x00\x00\x00\xcf]\x00\x00\x05\x00\x00\x00\xd8]\x00\x00\x04\x00\x00\x00\xde]\x00\x00\x19\x00\x00\x00\xe3]\x00\x00\r\x00\x00\x00\xfd]\x00\x00\x07\x00\x00\x00\x0b^\x00\x00\t\x00\x00\x00\x13^\x00\x00\t\x00\x00\x00\x1d^\x00\x00\n\x00\x00\x00\'^\x00\x00"\x00\x00\x002^\x00\x00\x12\x00\x00\x00U^\x00\x00\x11\x00\x00\x00h^\x00\x00\x0e\x00\x00\x00z^\x00\x00\x0f\x00\x00\x00\x89^\x00\x00\x0b\x00\x00\x00\x99^\x00\x00\x11\x00\x00\x00\xa5^\x00\x00\x15\x00\x00\x00\xb7^\x00\x00$\x00\x00\x00\xcd^\x00\x00\x0c\x00\x00\x00\xf2^\x00\x000\x00\x00\x00\xff^\x00\x00\x18\x00\x00\x000_\x00\x00\x12\x00\x00\x00I_\x00\x00-\x00\x00\x00\\_\x00\x00&\x00\x00\x00\x8a_\x00\x00\x1e\x00\x00\x00\xb1_\x00\x00\x0b\x00\x00\x00\xd0_\x00\x00\x13\x00\x00\x00\xdc_\x00\x001\x00\x00\x00\xf0_\x00\x00\r\x00\x00\x00"`\x00\x00\x12\x00\x00\x000`\x00\x00+\x00\x00\x00C`\x00\x00\x08\x00\x00\x00o`\x00\x00\x0b\x00\x00\x00x`\x00\x00\r\x00\x00\x00\x84`\x00\x00\x14\x00\x00\x00\x92`\x00\x00\x11\x00\x00\x00\xa7`\x00\x00\x1a\x00\x00\x00\xb9`\x00\x00\x10\x00\x00\x00\xd4`\x00\x00\x08\x00\x00\x00\xe5`\x00\x00\x08\x00\x00\x00\xee`\x00\x00\x07\x00\x00\x00\xf7`\x00\x00\x13\x00\x00\x00\xff`\x00\x00\x18\x00\x00\x00\x13a\x00\x00\x1e\x00\x00\x00,a\x00\x00\x1c\x00\x00\x00Ka\x00\x00\x05\x00\x00\x00ha\x00\x00\t\x00\x00\x00na\x00\x00\x11\x00\x00\x00xa\x00\x00\t\x00\x00\x00\x8aa\x00\x00\x17\x00\x00\x00\x94a\x00\x00\x03\x00\x00\x00\xaca\x00\x00/\x00\x00\x00\xb0a\x00\x00-\x00\x00\x00\xe0a\x00\x00;\x00\x00\x00\x0eb\x00\x00\x1b\x00\x00\x00Jb\x00\x00-\x00\x00\x00fb\x00\x00\xa4\x02\x00\x00\x94b\x00\x00\xa3\x01\x00\x009e\x00\x00\x8c\x02\x00\x00\xddf\x00\x00?\x00\x00\x00ji\x00\x00K\x00\x00\x00\xaai\x00\x004\x00\x00\x00\xf6i\x00\x00\x8f\x00\x00\x00+j\x00\x00j\x00\x00\x00\xbbj\x00\x00K\x00\x00\x00&k\x00\x00\xd5\x00\x00\x00rk\x00\x00\x7f\x00\x00\x00Hl\x00\x00\xcd\x00\x00\x00\xc8l\x00\x00\xa4\x01\x00\x00\x96m\x00\x00.\x00\x00\x00;o\x00\x00\x01\x00\x00\x00jo\x00\x00e\x00\x00\x00lo\x00\x00\n\x00\x00\x00\xd2o\x00\x00\x16\x00\x00\x00\xddo\x00\x00\x10\x00\x00\x00\xf4o\x00\x00\x18\x00\x00\x00\x05p\x00\x00/\x00\x00\x00\x1ep\x00\x007\x00\x00\x00Np\x00\x00H\x00\x00\x00\x86p\x00\x00<\x00\x00\x00\xcfp\x00\x00\x0e\x00\x00\x00\x0cq\x00\x003\x00\x00\x00\x1bq\x00\x00}\x00\x00\x00Oq\x00\x00\x98\x00\x00\x00\xcdq\x00\x00$\x00\x00\x00fr\x00\x00!\x00\x00\x00\x8br\x00\x00M\x00\x00\x00\xadr\x00\x00!\x00\x00\x00\xfbr\x00\x00r\x00\x00\x00\x1ds\x00\x00\t\x00\x00\x00\x90s\x00\x00\x10\x00\x00\x00\x9as\x00\x00\x10\x00\x00\x00\xabs\x00\x00\x05\x00\x00\x00\xbcs\x00\x00\t\x00\x00\x00\xc2s\x00\x00\'\x00\x00\x00\xccs\x00\x00!\x00\x00\x00\xf4s\x00\x00\x13\x00\x00\x00\x16t\x00\x00\x05\x00\x00\x00*t\x00\x00\x11\x00\x00\x000t\x00\x00\x12\x00\x00\x00Bt\x00\x00\t\x00\x00\x00Ut\x00\x00\x08\x00\x00\x00_t\x00\x00\x14\x00\x00\x00ht\x00\x00\x1b\x00\x00\x00}t\x00\x00\x06\x00\x00\x00\x99t\x00\x00\x1b\x00\x00\x00\xa0t\x00\x00\x07\x00\x00\x00\xbct\x00\x003\x00\x00\x00\xc4t\x00\x00\x16\x00\x00\x00\xf8t\x00\x00\x06\x00\x00\x00\x0fu\x00\x00)\x00\x00\x00\x16u\x00\x00\x07\x00\x00\x00@u\x00\x008\x00\x00\x00Hu\x00\x00;\x00\x00\x00\x81u\x00\x001\x00\x00\x00\xbdu\x00\x00\x13\x00\x00\x00\xefu\x00\x00%\x00\x00\x00\x03v\x00\x00\x16\x00\x00\x00)v\x00\x00/\x00\x00\x00@v\x00\x00\x14\x00\x00\x00pv\x00\x00\x15\x00\x00\x00\x85v\x00\x00=\x00\x00\x00\x9bv\x00\x00!\x00\x00\x00\xd9v\x00\x00 \x00\x00\x00\xfbv\x00\x005\x00\x00\x00\x1cw\x00\x00\x1d\x00\x00\x00Rw\x00\x00g\x00\x00\x00pw\x00\x00-\x00\x00\x00\xd8w\x00\x00\x10\x00\x00\x00\x06x\x00\x00\x1c\x00\x00\x00\x17x\x00\x00\x16\x00\x00\x004x\x00\x00\x15\x00\x00\x00Kx\x00\x00\n\x00\x00\x00ax\x00\x00\x1d\x00\x00\x00lx\x00\x00\x17\x00\x00\x00\x8ax\x00\x00S\x00\x00\x00\xa2x\x00\x00\x1d\x00\x00\x00\xf6x\x00\x00\x1c\x00\x00\x00\x14y\x00\x00V\x00\x00\x001y\x00\x00\x18\x00\x00\x00\x88y\x00\x00\x0e\x00\x00\x00\xa1y\x00\x00#\x00\x00\x00\xb0y\x00\x00\x1b\x00\x00\x00\xd4y\x00\x00&\x00\x00\x00\xf0y\x00\x00E\x00\x00\x00\x17z\x00\x00\x0b\x00\x00\x00]z\x00\x00\x0e\x00\x00\x00iz\x00\x00\n\x00\x00\x00xz\x00\x00\x13\x00\x00\x00\x83z\x00\x00\x12\x00\x00\x00\x97z\x00\x00\x10\x00\x00\x00\xaaz\x00\x00\x19\x00\x00\x00\xbbz\x00\x00\x0f\x00\x00\x00\xd5z\x00\x00#\x00\x00\x00\xe5z\x00\x00W\x00\x00\x00\t{\x00\x00!\x00\x00\x00a{\x00\x00}\x00\x00\x00\x83{\x00\x00"\x00\x00\x00\x01|\x00\x00"\x00\x00\x00$|\x00\x00\x0b\x00\x00\x00G|\x00\x00\x1f\x00\x00\x00S|\x00\x00\x05\x00\x00\x00s|\x00\x002\x00\x00\x00y|\x00\x00\x06\x00\x00\x00\xac|\x00\x00\x8f\x00\x00\x00\xb3|\x00\x00\x14\x00\x00\x00C}\x00\x00\x1b\x00\x00\x00X}\x00\x00!\x00\x00\x00t}\x00\x00\x10\x00\x00\x00\x96}\x00\x00\x18\x00\x00\x00\xa7}\x00\x00#\x00\x00\x00\xc0}\x00\x00\x01\x00\x00\x00\xe4}\x00\x00\x05\x00\x00\x00\xe6}\x00\x00\x18\x00\x00\x00\xec}\x00\x00\x18\x00\x00\x00\x05~\x00\x00\x1b\x00\x00\x00\x1e~\x00\x00\x19\x00\x00\x00:~\x00\x00 \x00\x00\x00T~\x00\x00\x13\x00\x00\x00u~\x00\x00-\x00\x00\x00\x89~\x00\x00V\x00\x00\x00\xb7~\x00\x00\x06\x00\x00\x00\x0e\x7f\x00\x00,\x00\x00\x00\x15\x7f\x00\x00\x15\x00\x00\x00B\x7f\x00\x00)\x00\x00\x00X\x7f\x00\x00$\x00\x00\x00\x82\x7f\x00\x00,\x00\x00\x00\xa7\x7f\x00\x00:\x00\x00\x00\xd4\x7f\x00\x00/\x00\x00\x00\x0f\x80\x00\x00\n\x00\x00\x00?\x80\x00\x00$\x00\x00\x00J\x80\x00\x00\x0f\x00\x00\x00o\x80\x00\x00\x06\x00\x00\x00\x7f\x80\x00\x00\x1d\x00\x00\x00\x86\x80\x00\x00\x10\x00\x00\x00\xa4\x80\x00\x00\x1f\x00\x00\x00\xb5\x80\x00\x00\x18\x00\x00\x00\xd5\x80\x00\x00\x17\x00\x00\x00\xee\x80\x00\x00\x0c\x00\x00\x00\x06\x81\x00\x00\x10\x00\x00\x00\x13\x81\x00\x00!\x00\x00\x00$\x81\x00\x00\x17\x00\x00\x00F\x81\x00\x00\x1d\x00\x00\x00^\x81\x00\x00\x07\x00\x00\x00|\x81\x00\x00\x0b\x00\x00\x00\x84\x81\x00\x00/\x00\x00\x00\x90\x81\x00\x00\x06\x00\x00\x00\xc0\x81\x00\x00\xad\x00\x00\x00\xc7\x81\x00\x00"\x01\x00\x00u\x82\x00\x00^\x00\x00\x00\x98\x83\x00\x001\x00\x00\x00\xf7\x83\x00\x00\x03\x00\x00\x00)\x84\x00\x00\x07\x00\x00\x00-\x84\x00\x00\x08\x00\x00\x005\x84\x00\x00\t\x00\x00\x00>\x84\x00\x004\x00\x00\x00H\x84\x00\x00!\x00\x00\x00}\x84\x00\x00\x1e\x00\x00\x00\x9f\x84\x00\x00\n\x00\x00\x00\xbe\x84\x00\x00\x12\x00\x00\x00\xc9\x84\x00\x00\x16\x00\x00\x00\xdc\x84\x00\x00\x06\x00\x00\x00\xf3\x84\x00\x00\xe2\x01\x00\x00\xfa\x84\x00\x00\x8f\x00\x00\x00\xdd\x86\x00\x00r\x00\x00\x00m\x87\x00\x00\x16\x00\x00\x00\xe0\x87\x00\x00\x12\x00\x00\x00\xf7\x87\x00\x00\xc7\x00\x00\x00\n\x88\x00\x00*\x00\x00\x00\xd2\x88\x00\x00\x19\x00\x00\x00\xfd\x88\x00\x00\x15\x00\x00\x00\x17\x89\x00\x00\x15\x00\x00\x00-\x89\x00\x000\x00\x00\x00C\x89\x00\x00\x1f\x00\x00\x00t\x89\x00\x00#\x00\x00\x00\x94\x89\x00\x00\x07\x00\x00\x00\xb8\x89\x00\x00"\x00\x00\x00\xc0\x89\x00\x00\t\x00\x00\x00\xe3\x89\x00\x00\t\x00\x00\x00\xed\x89\x00\x009\x00\x00\x00\xf7\x89\x00\x00\n\x00\x00\x001\x8a\x00\x00<\x00\x00\x00<\x8a\x00\x00\n\x00\x00\x00y\x8a\x00\x003\x00\x00\x00\x84\x8a\x00\x009\x00\x00\x00\xb8\x8a\x00\x00\r\x00\x00\x00\xf2\x8a\x00\x001\x00\x00\x00\x00\x8b\x00\x00\x11\x00\x00\x002\x8b\x00\x00\t\x00\x00\x00D\x8b\x00\x00|\x00\x00\x00N\x8b\x00\x00\x17\x00\x00\x00\xcb\x8b\x00\x00\x04\x00\x00\x00\xe3\x8b\x00\x00\n\x00\x00\x00\xe8\x8b\x00\x006\x00\x00\x00\xf3\x8b\x00\x00\x11\x00\x00\x00*\x8c\x00\x00\x16\x00\x00\x00<\x8c\x00\x00\x17\x00\x00\x00S\x8c\x00\x00\x13\x00\x00\x00k\x8c\x00\x00\x1b\x00\x00\x00\x7f\x8c\x00\x00\x0c\x00\x00\x00\x9b\x8c\x00\x00"\x00\x00\x00\xa8\x8c\x00\x00 \x00\x00\x00\xcb\x8c\x00\x00\x07\x00\x00\x00\xec\x8c\x00\x00_\x00\x00\x00\xf4\x8c\x00\x00\x1e\x00\x00\x00T\x8d\x00\x00\x0b\x00\x00\x00s\x8d\x00\x00\x08\x00\x00\x00\x7f\x8d\x00\x00\x1d\x00\x00\x00\x88\x8d\x00\x00\x1b\x00\x00\x00\xa6\x8d\x00\x00H\x00\x00\x00\xc2\x8d\x00\x00K\x00\x00\x00\x0b\x8e\x00\x00\x93\x00\x00\x00W\x8e\x00\x00\x11\x00\x00\x00\xeb\x8e\x00\x00\x19\x00\x00\x00\xfd\x8e\x00\x00\x19\x00\x00\x00\x17\x8f\x00\x00J\x00\x00\x001\x8f\x00\x00\x18\x00\x00\x00|\x8f\x00\x00\x04\x00\x00\x00\x95\x8f\x00\x00:\x00\x00\x00\x9a\x8f\x00\x00J\x00\x00\x00\xd5\x8f\x00\x001\x00\x00\x00 \x90\x00\x00r\x00\x00\x00R\x90\x00\x00G\x00\x00\x00\xc5\x90\x00\x00w\x00\x00\x00\r\x91\x00\x00Z\x00\x00\x00\x85\x91\x00\x00\x10\x00\x00\x00\xe0\x91\x00\x00\r\x00\x00\x00\xf1\x91\x00\x00\xc8\x00\x00\x00\xff\x91\x00\x00\x19\x00\x00\x00\xc8\x92\x00\x00\x08\x00\x00\x00\xe2\x92\x00\x00\t\x00\x00\x00\xeb\x92\x00\x00\x0b\x00\x00\x00\xf5\x92\x00\x00 \x00\x00\x00\x01\x93\x00\x00\x19\x00\x00\x00"\x93\x00\x00\x14\x00\x00\x00<\x93\x00\x00-\x00\x00\x00Q\x93\x00\x00-\x00\x00\x00\x7f\x93\x00\x002\x00\x00\x00\xad\x93\x00\x00+\x00\x00\x00\xe0\x93\x00\x008\x00\x00\x00\x0c\x94\x00\x00\x0f\x00\x00\x00E\x94\x00\x00\x1e\x00\x00\x00U\x94\x00\x00G\x00\x00\x00t\x94\x00\x001\x00\x00\x00\xbc\x94\x00\x00\x95\x00\x00\x00\xee\x94\x00\x00N\x00\x00\x00\x84\x95\x00\x00\x1f\x00\x00\x00\xd3\x95\x00\x007\x00\x00\x00\xf3\x95\x00\x00\x08\x00\x00\x00+\x96\x00\x00\x0c\x00\x00\x004\x96\x00\x00\x13\x00\x00\x00A\x96\x00\x004\x00\x00\x00U\x96\x00\x00=\x00\x00\x00\x8a\x96\x00\x00\r\x00\x00\x00\xc8\x96\x00\x00\\\x00\x00\x00\xd6\x96\x00\x00~\x00\x00\x003\x97\x00\x00C\x00\x00\x00\xb2\x97\x00\x000\x00\x00\x00\xf6\x97\x00\x00\x15\x00\x00\x00\'\x98\x00\x00\x1b\x00\x00\x00=\x98\x00\x00\x1d\x00\x00\x00Y\x98\x00\x000\x00\x00\x00w\x98\x00\x00\x06\x00\x00\x00\xa8\x98\x00\x00\x11\x00\x00\x00\xaf\x98\x00\x00\r\x00\x00\x00\xc1\x98\x00\x00\x07\x00\x00\x00\xcf\x98\x00\x001\x00\x00\x00\xd7\x98\x00\x00\x18\x00\x00\x00\t\x99\x00\x00(\x00\x00\x00"\x99\x00\x00$\x00\x00\x00K\x99\x00\x00&\x00\x00\x00p\x99\x00\x00\x11\x00\x00\x00\x97\x99\x00\x00`\x00\x00\x00\xa9\x99\x00\x00\x1c\x00\x00\x00\n\x9a\x00\x00\x16\x00\x00\x00\'\x9a\x00\x00\x15\x00\x00\x00>\x9a\x00\x00\x95\x00\x00\x00T\x9a\x00\x00n\x00\x00\x00\xea\x9a\x00\x00?\x00\x00\x00Y\x9b\x00\x002\x00\x00\x00\x99\x9b\x00\x00m\x00\x00\x00\xcc\x9b\x00\x00\x0c\x00\x00\x00:\x9c\x00\x00\x18\x00\x00\x00G\x9c\x00\x00\x1d\x00\x00\x00`\x9c\x00\x00\x1c\x00\x00\x00~\x9c\x00\x00\x1c\x01\x00\x00\x9b\x9c\x00\x00y\x00\x00\x00\xb8\x9d\x00\x00\x88\x00\x00\x002\x9e\x00\x00\xc5\x00\x00\x00\xbb\x9e\x00\x00M\x00\x00\x00\x81\x9f\x00\x00V\x01\x00\x00\xcf\x9f\x00\x00%\x00\x00\x00&\xa1\x00\x00\x06\x00\x00\x00L\xa1\x00\x00\x1f\x00\x00\x00S\xa1\x00\x00\x0b\x00\x00\x00s\xa1\x00\x00\x07\x00\x00\x00\x7f\xa1\x00\x00\x15\x00\x00\x00\x87\xa1\x00\x00\x1e\x00\x00\x00\x9d\xa1\x00\x00\t\x00\x00\x00\xbc\xa1\x00\x00\x89\x00\x00\x00\xc6\xa1\x00\x00\x04\x00\x00\x00P\xa2\x00\x00\t\x00\x00\x00U\xa2\x00\x00<\x00\x00\x00_\xa2\x00\x00l\x00\x00\x00\x9c\xa2\x00\x00\x98\x00\x00\x00\t\xa3\x00\x00-\x00\x00\x00\xa2\xa3\x00\x00#\x00\x00\x00\xd0\xa3\x00\x00\x89\x00\x00\x00\xf4\xa3\x00\x00*\x00\x00\x00~\xa4\x00\x00)\x00\x00\x00\xa9\xa4\x00\x00^\x00\x00\x00\xd3\xa4\x00\x00s\x00\x00\x002\xa5\x00\x00z\x00\x00\x00\xa6\xa5\x00\x00\x0f\x00\x00\x00!\xa6\x00\x00\x07\x00\x00\x001\xa6\x00\x00\x1f\x00\x00\x009\xa6\x00\x00\x06\x00\x00\x00Y\xa6\x00\x008\x00\x00\x00`\xa6\x00\x00(\x00\x00\x00\x99\xa6\x00\x00\xc5\x00\x00\x00\xc2\xa6\x00\x00!\x00\x00\x00\x88\xa7\x00\x00%\x00\x00\x00\xaa\xa7\x00\x00\r\x00\x00\x00\xd0\xa7\x00\x00\x0b\x00\x00\x00\xde\xa7\x00\x00\x1b\x00\x00\x00\xea\xa7\x00\x00\x0e\x00\x00\x00\x06\xa8\x00\x00\x12\x00\x00\x00\x15\xa8\x00\x00\x12\x00\x00\x00(\xa8\x00\x00;\x00\x00\x00;\xa8\x00\x000\x00\x00\x00w\xa8\x00\x00\xbc\x00\x00\x00\xa8\xa8\x00\x00:\x00\x00\x00e\xa9\x00\x00\x15\x00\x00\x00\xa0\xa9\x00\x00i\x00\x00\x00\xb6\xa9\x00\x00N\x00\x00\x00 \xaa\x00\x007\x00\x00\x00o\xaa\x00\x00\x07\x00\x00\x00\xa7\xaa\x00\x00\x19\x00\x00\x00\xaf\xaa\x00\x00\x0c\x00\x00\x00\xc9\xaa\x00\x00\r\x00\x00\x00\xd6\xaa\x00\x00,\x00\x00\x00\xe4\xaa\x00\x00n\x00\x00\x00\x11\xab\x00\x001\x00\x00\x00\x80\xab\x00\x006\x00\x00\x00\xb2\xab\x00\x002\x00\x00\x00\xe9\xab\x00\x00\n\x00\x00\x00\x1c\xac\x00\x00\t\x00\x00\x00\'\xac\x00\x00\x00\tFailed links:\x00\nDownloaded article %s from %s\n%s\x00 characters\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 profile\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Summary length:\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 profile, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced" setting to further customize the fetch process.<br />The Basic tab is useful mainly for feeds that have the full article content embedded within them.</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>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 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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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 profiles, please visit <a href="https://libprs500.kovidgoyal.net/wiki/UserProfiles">UserProfiles</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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Try to download &full articles\x00Try to follow links in the RSS feed to full articles on the web. If you enable this option, you\'re probably going to end up having to use the advanced mode.\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-23 16:44+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 Zeichen\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:\x00Profil 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\x00L\xc3\xa4nge der Zu&sammenfassung:\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 Nachrichten-Grundprofil, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />F\xc3\xbcr die meisten Feeds m\xc3\xbcssen Sie die "Erweitert" Einstellung verwenden, um den Abruf weiter anzupassen.<br />Die Einstellung "Einfach" ist f\xc3\xbcr Feeds ausreichend, die den vollst\xc3\xa4ndigen Nachrichten-Inhalt im Feed schon eingebettet haben.</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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\x00Ben\xc3\xb6tigen Sie Hilfe beim Erstellen von weiteren Nachrichten-Profilen? Schauen Sie hier vorbei: <a href="https://libprs500.kovidgoyal.net/wiki/UserProfiles">UserProfiles</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\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\x00Profil&titel:\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:\x00Profil-Quellcode (Python)\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Sony Reader\n%s disponible\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\x00Feeds aus dem Profil 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.\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\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.\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.\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 &vollst\xc3\xa4ndige Artikel zu laden\x00Verkn\xc3\xbcpfungen im RSS Feed bis zu den vollst\xc3\xa4ndigen Artikeln im Netz verfolgen. Falls Sie diese Option w\xc3\xa4hlen, m\xc3\xbcssen Sie in den meisten F\xc3\xa4llen den erweiterten Modus zur Konfiguration benutzen.\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\x94\x01\x00\x00\x1c\x00\x00\x00\xbc\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\\\x19\x00\x00\x0e\x00\x00\x00]\x19\x00\x00!\x00\x00\x00l\x19\x00\x00\x05\x00\x00\x00\x8e\x19\x00\x00\x06\x00\x00\x00\x94\x19\x00\x00\x17\x00\x00\x00\x9b\x19\x00\x00\x0b\x00\x00\x00\xb3\x19\x00\x00\x04\x00\x00\x00\xbf\x19\x00\x00\x03\x00\x00\x00\xc4\x19\x00\x00\x08\x00\x00\x00\xc8\x19\x00\x00\x06\x00\x00\x00\xd1\x19\x00\x00\x1c\x00\x00\x00\xd8\x19\x00\x00\x0e\x00\x00\x00\xf5\x19\x00\x00\x0c\x00\x00\x00\x04\x1a\x00\x00\t\x00\x00\x00\x11\x1a\x00\x00\t\x00\x00\x00\x1b\x1a\x00\x00\x0c\x00\x00\x00%\x1a\x00\x00\x0f\x00\x00\x002\x1a\x00\x00\x11\x00\x00\x00B\x1a\x00\x00\x1a\x00\x00\x00T\x1a\x00\x00\x0c\x00\x00\x00o\x1a\x00\x00\x1d\x00\x00\x00|\x1a\x00\x00\x0f\x00\x00\x00\x9a\x1a\x00\x00\r\x00\x00\x00\xaa\x1a\x00\x00)\x00\x00\x00\xb8\x1a\x00\x00"\x00\x00\x00\xe2\x1a\x00\x00\x18\x00\x00\x00\x05\x1b\x00\x00\x0b\x00\x00\x00\x1e\x1b\x00\x00\x10\x00\x00\x00*\x1b\x00\x00\x17\x00\x00\x00;\x1b\x00\x00\n\x00\x00\x00S\x1b\x00\x00\x0c\x00\x00\x00^\x1b\x00\x00\x1e\x00\x00\x00k\x1b\x00\x00\t\x00\x00\x00\x8a\x1b\x00\x00\x0c\x00\x00\x00\x94\x1b\x00\x00\x08\x00\x00\x00\xa1\x1b\x00\x00\x14\x00\x00\x00\xaa\x1b\x00\x00\x0f\x00\x00\x00\xbf\x1b\x00\x00\r\x00\x00\x00\xcf\x1b\x00\x00\x0e\x00\x00\x00\xdd\x1b\x00\x00\x08\x00\x00\x00\xec\x1b\x00\x00\x08\x00\x00\x00\xf5\x1b\x00\x00\x07\x00\x00\x00\xfe\x1b\x00\x00\x0c\x00\x00\x00\x06\x1c\x00\x00\x0e\x00\x00\x00\x13\x1c\x00\x00\x12\x00\x00\x00"\x1c\x00\x00\x05\x00\x00\x005\x1c\x00\x00\x08\x00\x00\x00;\x1c\x00\x00\x0c\x00\x00\x00D\x1c\x00\x00\n\x00\x00\x00Q\x1c\x00\x00\x0e\x00\x00\x00\\\x1c\x00\x00\x03\x00\x00\x00k\x1c\x00\x001\x00\x00\x00o\x1c\x00\x00"\x00\x00\x00\xa1\x1c\x00\x00=\x00\x00\x00\xc4\x1c\x00\x00\x18\x00\x00\x00\x02\x1d\x00\x00+\x00\x00\x00\x1b\x1d\x00\x00\xa3\x01\x00\x00G\x1d\x00\x00\x82\x02\x00\x00\xeb\x1e\x00\x00>\x00\x00\x00n!\x00\x00S\x00\x00\x00\xad!\x00\x005\x00\x00\x00\x01"\x00\x00p\x00\x00\x007"\x00\x00a\x00\x00\x00\xa8"\x00\x00G\x00\x00\x00\n#\x00\x00\xa7\x00\x00\x00R#\x00\x00W\x00\x00\x00\xfa#\x00\x00\x96\x00\x00\x00R$\x00\x00=\x01\x00\x00\xe9$\x00\x002\x00\x00\x00\'&\x00\x00\x01\x00\x00\x00Z&\x00\x00X\x00\x00\x00\\&\x00\x00\r\x00\x00\x00\xb5&\x00\x00\x0f\x00\x00\x00\xc3&\x00\x00\x0b\x00\x00\x00\xd3&\x00\x00\x0b\x00\x00\x00\xdf&\x00\x00\x18\x00\x00\x00\xeb&\x00\x007\x00\x00\x00\x04\'\x00\x004\x00\x00\x00<\'\x00\x00.\x00\x00\x00q\'\x00\x00\t\x00\x00\x00\xa0\'\x00\x00!\x00\x00\x00\xaa\'\x00\x00b\x00\x00\x00\xcc\'\x00\x00o\x00\x00\x00/(\x00\x00\x16\x00\x00\x00\x9f(\x00\x00\x13\x00\x00\x00\xb6(\x00\x006\x00\x00\x00\xca(\x00\x00\x13\x00\x00\x00\x01)\x00\x00m\x00\x00\x00\x15)\x00\x00\x08\x00\x00\x00\x83)\x00\x00\x0f\x00\x00\x00\x8c)\x00\x00\x0f\x00\x00\x00\x9c)\x00\x00\x05\x00\x00\x00\xac)\x00\x00\x03\x00\x00\x00\xb2)\x00\x00\x19\x00\x00\x00\xb6)\x00\x00\x1b\x00\x00\x00\xd0)\x00\x00\x16\x00\x00\x00\xec)\x00\x00\x06\x00\x00\x00\x03*\x00\x00\x0e\x00\x00\x00\n*\x00\x00\r\x00\x00\x00\x19*\x00\x00\t\x00\x00\x00\'*\x00\x00\x08\x00\x00\x001*\x00\x00\x11\x00\x00\x00:*\x00\x00\x17\x00\x00\x00L*\x00\x00\x04\x00\x00\x00d*\x00\x00\x10\x00\x00\x00i*\x00\x00\x05\x00\x00\x00z*\x00\x00!\x00\x00\x00\x80*\x00\x00\x10\x00\x00\x00\xa2*\x00\x00\x05\x00\x00\x00\xb3*\x00\x00(\x00\x00\x00\xb9*\x00\x00\n\x00\x00\x00\xe2*\x00\x00.\x00\x00\x00\xed*\x00\x005\x00\x00\x00\x1c+\x00\x00$\x00\x00\x00R+\x00\x00\x0c\x00\x00\x00w+\x00\x00\x1a\x00\x00\x00\x84+\x00\x00\x10\x00\x00\x00\x9f+\x00\x00.\x00\x00\x00\xb0+\x00\x00\x0e\x00\x00\x00\xdf+\x00\x00\x0e\x00\x00\x00\xee+\x00\x007\x00\x00\x00\xfd+\x00\x00\x14\x00\x00\x005,\x00\x00\x12\x00\x00\x00J,\x00\x00#\x00\x00\x00],\x00\x00\x0f\x00\x00\x00\x81,\x00\x00Z\x00\x00\x00\x91,\x00\x00\x19\x00\x00\x00\xec,\x00\x00\x0b\x00\x00\x00\x06-\x00\x00\x13\x00\x00\x00\x12-\x00\x00\x0b\x00\x00\x00&-\x00\x00\x11\x00\x00\x002-\x00\x00\x08\x00\x00\x00D-\x00\x00\x14\x00\x00\x00M-\x00\x00\x0f\x00\x00\x00b-\x00\x00R\x00\x00\x00r-\x00\x00!\x00\x00\x00\xc5-\x00\x00\x1d\x00\x00\x00\xe7-\x00\x00H\x00\x00\x00\x05.\x00\x00\x11\x00\x00\x00N.\x00\x00\r\x00\x00\x00`.\x00\x00%\x00\x00\x00n.\x00\x00\x19\x00\x00\x00\x94.\x00\x00!\x00\x00\x00\xae.\x00\x007\x00\x00\x00\xd0.\x00\x00\x08\x00\x00\x00\x08/\x00\x00\r\x00\x00\x00\x11/\x00\x00\t\x00\x00\x00\x1f/\x00\x00\x10\x00\x00\x00)/\x00\x00\x11\x00\x00\x00:/\x00\x00\x0f\x00\x00\x00L/\x00\x00\x14\x00\x00\x00\\/\x00\x00\x0e\x00\x00\x00q/\x00\x00\x1c\x00\x00\x00\x80/\x00\x00;\x00\x00\x00\x9d/\x00\x00\x15\x00\x00\x00\xd9/\x00\x00R\x00\x00\x00\xef/\x00\x00\x17\x00\x00\x00B0\x00\x00\x18\x00\x00\x00Z0\x00\x00\x0b\x00\x00\x00s0\x00\x00\x13\x00\x00\x00\x7f0\x00\x00\x04\x00\x00\x00\x930\x00\x00\x19\x00\x00\x00\x980\x00\x00\x03\x00\x00\x00\xb20\x00\x00h\x00\x00\x00\xb60\x00\x00\x0e\x00\x00\x00\x1f1\x00\x00\x1b\x00\x00\x00.1\x00\x00\x1a\x00\x00\x00J1\x00\x00\x11\x00\x00\x00e1\x00\x00\x19\x00\x00\x00w1\x00\x00\x11\x00\x00\x00\x911\x00\x00\x01\x00\x00\x00\xa31\x00\x00\x05\x00\x00\x00\xa51\x00\x00\x15\x00\x00\x00\xab1\x00\x00\x15\x00\x00\x00\xc11\x00\x00\x15\x00\x00\x00\xd71\x00\x00\x15\x00\x00\x00\xed1\x00\x00\x1a\x00\x00\x00\x032\x00\x00\x0e\x00\x00\x00\x1e2\x00\x00\x1f\x00\x00\x00-2\x00\x00C\x00\x00\x00M2\x00\x00\x05\x00\x00\x00\x912\x00\x00\x1f\x00\x00\x00\x972\x00\x00\x12\x00\x00\x00\xb72\x00\x00\x17\x00\x00\x00\xca2\x00\x00\x1f\x00\x00\x00\xe22\x00\x00\'\x00\x00\x00\x023\x00\x003\x00\x00\x00*3\x00\x00*\x00\x00\x00^3\x00\x00\n\x00\x00\x00\x893\x00\x00\x16\x00\x00\x00\x943\x00\x00\x10\x00\x00\x00\xab3\x00\x00\x05\x00\x00\x00\xbc3\x00\x00\x1d\x00\x00\x00\xc23\x00\x00\x0e\x00\x00\x00\xe03\x00\x00\x1a\x00\x00\x00\xef3\x00\x00\n\x00\x00\x00\n4\x00\x00\x10\x00\x00\x00\x154\x00\x00\r\x00\x00\x00&4\x00\x00\x11\x00\x00\x0044\x00\x00\x1f\x00\x00\x00F4\x00\x00\x13\x00\x00\x00f4\x00\x00\x1b\x00\x00\x00z4\x00\x00\x05\x00\x00\x00\x964\x00\x00\x0b\x00\x00\x00\x9c4\x00\x008\x00\x00\x00\xa84\x00\x00\x08\x00\x00\x00\xe14\x00\x00\x1d\x01\x00\x00\xea4\x00\x00J\x00\x00\x00\x086\x00\x00#\x00\x00\x00S6\x00\x00\x04\x00\x00\x00w6\x00\x00\x06\x00\x00\x00|6\x00\x00\x07\x00\x00\x00\x836\x00\x00\x07\x00\x00\x00\x8b6\x00\x00\'\x00\x00\x00\x936\x00\x00\x1b\x00\x00\x00\xbb6\x00\x00\x19\x00\x00\x00\xd76\x00\x00\x06\x00\x00\x00\xf16\x00\x00\x0c\x00\x00\x00\xf86\x00\x00\t\x00\x00\x00\x057\x00\x00\x06\x00\x00\x00\x0f7\x00\x00\xdc\x01\x00\x00\x167\x00\x00n\x00\x00\x00\xf38\x00\x00a\x00\x00\x00b9\x00\x00\x0e\x00\x00\x00\xc49\x00\x00\x0e\x00\x00\x00\xd39\x00\x00\xa8\x00\x00\x00\xe29\x00\x00&\x00\x00\x00\x8b:\x00\x00\x10\x00\x00\x00\xb2:\x00\x00\x19\x00\x00\x00\xc3:\x00\x00\x1a\x00\x00\x00\xdd:\x00\x00.\x00\x00\x00\xf8:\x00\x00\x1a\x00\x00\x00\';\x00\x00\x1e\x00\x00\x00B;\x00\x00\x03\x00\x00\x00a;\x00\x00\x12\x00\x00\x00e;\x00\x00\x05\x00\x00\x00x;\x00\x00\n\x00\x00\x00~;\x00\x00,\x00\x00\x00\x89;\x00\x00\x07\x00\x00\x00\xb6;\x00\x00-\x00\x00\x00\xbe;\x00\x00\x0b\x00\x00\x00\xec;\x00\x00$\x00\x00\x00\xf8;\x00\x00$\x00\x00\x00\x1d<\x00\x00\x07\x00\x00\x00B<\x00\x000\x00\x00\x00J<\x00\x00\x10\x00\x00\x00{<\x00\x00\x08\x00\x00\x00\x8c<\x00\x00y\x00\x00\x00\x95<\x00\x00\x10\x00\x00\x00\x0f=\x00\x00\x04\x00\x00\x00 =\x00\x00\x06\x00\x00\x00%=\x00\x00"\x00\x00\x00,=\x00\x00\t\x00\x00\x00O=\x00\x00\n\x00\x00\x00Y=\x00\x00\x14\x00\x00\x00d=\x00\x00\x10\x00\x00\x00y=\x00\x00\x11\x00\x00\x00\x8a=\x00\x00\x08\x00\x00\x00\x9c=\x00\x00\x10\x00\x00\x00\xa5=\x00\x00\x12\x00\x00\x00\xb6=\x00\x00\x04\x00\x00\x00\xc9=\x00\x00^\x00\x00\x00\xce=\x00\x00\x0f\x00\x00\x00->\x00\x00\n\x00\x00\x00=>\x00\x00\x07\x00\x00\x00H>\x00\x00-\x00\x00\x00P>\x00\x00+\x00\x00\x00~>\x00\x00F\x00\x00\x00\xaa>\x00\x008\x00\x00\x00\xf1>\x00\x00s\x00\x00\x00*?\x00\x00\x0f\x00\x00\x00\x9e?\x00\x00\n\x00\x00\x00\xae?\x00\x00\x10\x00\x00\x00\xb9?\x00\x00:\x00\x00\x00\xca?\x00\x00\x0f\x00\x00\x00\x05@\x00\x00\x04\x00\x00\x00\x15@\x00\x00;\x00\x00\x00\x1a@\x00\x00G\x00\x00\x00V@\x00\x001\x00\x00\x00\x9e@\x00\x00Y\x00\x00\x00\xd0@\x00\x004\x00\x00\x00*A\x00\x00\x80\x00\x00\x00_A\x00\x00H\x00\x00\x00\xe0A\x00\x00\r\x00\x00\x00)B\x00\x00\x0f\x00\x00\x007B\x00\x00\xbc\x00\x00\x00GB\x00\x00\x1c\x00\x00\x00\x04C\x00\x00\x08\x00\x00\x00!C\x00\x00\t\x00\x00\x00*C\x00\x00\x06\x00\x00\x004C\x00\x00\x1e\x00\x00\x00;C\x00\x00\x13\x00\x00\x00ZC\x00\x00\x13\x00\x00\x00nC\x00\x00+\x00\x00\x00\x82C\x00\x00*\x00\x00\x00\xaeC\x00\x000\x00\x00\x00\xd9C\x00\x00)\x00\x00\x00\nD\x00\x00<\x00\x00\x004D\x00\x00\x0c\x00\x00\x00qD\x00\x00\x18\x00\x00\x00~D\x00\x00<\x00\x00\x00\x97D\x00\x000\x00\x00\x00\xd4D\x00\x00\x84\x00\x00\x00\x05E\x00\x00X\x00\x00\x00\x8aE\x00\x00\x12\x00\x00\x00\xe3E\x00\x00-\x00\x00\x00\xf6E\x00\x00\x0c\x00\x00\x00$F\x00\x00\x0c\x00\x00\x001F\x00\x00\x0c\x00\x00\x00>F\x00\x00"\x00\x00\x00KF\x00\x009\x00\x00\x00nF\x00\x00\x0f\x00\x00\x00\xa8F\x00\x00V\x00\x00\x00\xb8F\x00\x00r\x00\x00\x00\x0fG\x00\x00G\x00\x00\x00\x82G\x00\x00\'\x00\x00\x00\xcaG\x00\x00\x0e\x00\x00\x00\xf2G\x00\x00\x13\x00\x00\x00\x01H\x00\x00\x14\x00\x00\x00\x15H\x00\x00#\x00\x00\x00*H\x00\x00\x06\x00\x00\x00NH\x00\x00\r\x00\x00\x00UH\x00\x00\r\x00\x00\x00cH\x00\x00\x07\x00\x00\x00qH\x00\x00\x1e\x00\x00\x00yH\x00\x00\x0b\x00\x00\x00\x98H\x00\x00\x17\x00\x00\x00\xa4H\x00\x00\x1b\x00\x00\x00\xbcH\x00\x00\x1a\x00\x00\x00\xd8H\x00\x00\x0e\x00\x00\x00\xf3H\x00\x00^\x00\x00\x00\x02I\x00\x00\x12\x00\x00\x00aI\x00\x00\x10\x00\x00\x00tI\x00\x00\x10\x00\x00\x00\x85I\x00\x00g\x00\x00\x00\x96I\x00\x00c\x00\x00\x00\xfeI\x00\x007\x00\x00\x00bJ\x00\x00!\x00\x00\x00\x9aJ\x00\x00d\x00\x00\x00\xbcJ\x00\x00\t\x00\x00\x00!K\x00\x00\x17\x00\x00\x00+K\x00\x00\x16\x00\x00\x00CK\x00\x00\x11\x00\x00\x00ZK\x00\x00\x04\x01\x00\x00lK\x00\x00z\x00\x00\x00qL\x00\x00\x85\x00\x00\x00\xecL\x00\x00\xb6\x00\x00\x00rM\x00\x00P\x00\x00\x00)N\x00\x00+\x01\x00\x00zN\x00\x00#\x00\x00\x00\xa6O\x00\x00\x06\x00\x00\x00\xcaO\x00\x00\x17\x00\x00\x00\xd1O\x00\x00\x07\x00\x00\x00\xe9O\x00\x00\x03\x00\x00\x00\xf1O\x00\x00\n\x00\x00\x00\xf5O\x00\x00\x13\x00\x00\x00\x00P\x00\x00\x04\x00\x00\x00\x14P\x00\x00\x85\x00\x00\x00\x19P\x00\x00\x04\x00\x00\x00\x9fP\x00\x00\t\x00\x00\x00\xa4P\x00\x000\x00\x00\x00\xaeP\x00\x00X\x00\x00\x00\xdfP\x00\x00\x9d\x00\x00\x008Q\x00\x00&\x00\x00\x00\xd6Q\x00\x00\x1e\x00\x00\x00\xfdQ\x00\x00v\x00\x00\x00\x1cR\x00\x00\'\x00\x00\x00\x93R\x00\x00"\x00\x00\x00\xbbR\x00\x00B\x00\x00\x00\xdeR\x00\x00^\x00\x00\x00!S\x00\x00h\x00\x00\x00\x80S\x00\x00\t\x00\x00\x00\xe9S\x00\x00\x05\x00\x00\x00\xf3S\x00\x00\x15\x00\x00\x00\xf9S\x00\x00\x06\x00\x00\x00\x0fT\x00\x00+\x00\x00\x00\x16T\x00\x00\x1b\x00\x00\x00BT\x00\x00&\x00\x00\x00^T\x00\x00\x0b\x00\x00\x00\x85T\x00\x00\x07\x00\x00\x00\x91T\x00\x00\x13\x00\x00\x00\x99T\x00\x00\x0c\x00\x00\x00\xadT\x00\x00\x10\x00\x00\x00\xbaT\x00\x00\x10\x00\x00\x00\xcbT\x00\x00%\x00\x00\x00\xdcT\x00\x00\x1b\x00\x00\x00\x02U\x00\x00\xb4\x00\x00\x00\x1eU\x00\x002\x00\x00\x00\xd3U\x00\x00\x14\x00\x00\x00\x06V\x00\x00_\x00\x00\x00\x1bV\x00\x00:\x00\x00\x00{V\x00\x00*\x00\x00\x00\xb6V\x00\x00\x04\x00\x00\x00\xe1V\x00\x00\x14\x00\x00\x00\xe6V\x00\x00\x07\x00\x00\x00\xfbV\x00\x00\x07\x00\x00\x00\x03W\x00\x00-\x00\x00\x00\x0bW\x00\x00d\x00\x00\x009W\x00\x00#\x00\x00\x00\x9eW\x00\x002\x00\x00\x00\xc2W\x00\x003\x00\x00\x00\xf5W\x00\x00\x08\x00\x00\x00)X\x00\x00\t\x00\x00\x002X\x00\x00+\x01\x00\x00<X\x00\x00 \x00\x00\x00hY\x00\x00\x1d\x00\x00\x00\x89Y\x00\x00\x05\x00\x00\x00\xa7Y\x00\x00\x04\x00\x00\x00\xadY\x00\x00\x1b\x00\x00\x00\xb2Y\x00\x00\r\x00\x00\x00\xceY\x00\x00\x04\x00\x00\x00\xdcY\x00\x00\x03\x00\x00\x00\xe1Y\x00\x00\t\x00\x00\x00\xe5Y\x00\x00\t\x00\x00\x00\xefY\x00\x00"\x00\x00\x00\xf9Y\x00\x00\x12\x00\x00\x00\x1cZ\x00\x00\x0c\x00\x00\x00/Z\x00\x00\x0e\x00\x00\x00<Z\x00\x00\x0f\x00\x00\x00KZ\x00\x00\n\x00\x00\x00[Z\x00\x00\x0e\x00\x00\x00fZ\x00\x00\x15\x00\x00\x00uZ\x00\x00&\x00\x00\x00\x8bZ\x00\x00\x0c\x00\x00\x00\xb2Z\x00\x00$\x00\x00\x00\xbfZ\x00\x00\x15\x00\x00\x00\xe4Z\x00\x00\x0f\x00\x00\x00\xfaZ\x00\x001\x00\x00\x00\n[\x00\x00&\x00\x00\x00<[\x00\x00\x1e\x00\x00\x00c[\x00\x00\x0c\x00\x00\x00\x82[\x00\x00\x13\x00\x00\x00\x8f[\x00\x00\x1b\x00\x00\x00\xa3[\x00\x00\x0f\x00\x00\x00\xbf[\x00\x00\r\x00\x00\x00\xcf[\x00\x00+\x00\x00\x00\xdd[\x00\x00\t\x00\x00\x00\t\\\x00\x00\n\x00\x00\x00\x13\\\x00\x00\x07\x00\x00\x00\x1e\\\x00\x00\x19\x00\x00\x00&\\\x00\x00\x11\x00\x00\x00@\\\x00\x00\x1a\x00\x00\x00R\\\x00\x00\x0f\x00\x00\x00m\\\x00\x00\x0c\x00\x00\x00}\\\x00\x00\n\x00\x00\x00\x8a\\\x00\x00\x08\x00\x00\x00\x95\\\x00\x00\x13\x00\x00\x00\x9e\\\x00\x00\x18\x00\x00\x00\xb2\\\x00\x00\x1e\x00\x00\x00\xcb\\\x00\x00\x05\x00\x00\x00\xea\\\x00\x00\x08\x00\x00\x00\xf0\\\x00\x00\x0e\x00\x00\x00\xf9\\\x00\x00\x17\x00\x00\x00\x08]\x00\x00\x18\x00\x00\x00 ]\x00\x00\x03\x00\x00\x009]\x00\x00V\x00\x00\x00=]\x00\x00A\x00\x00\x00\x94]\x00\x003\x00\x00\x00\xd6]\x00\x00\x1e\x00\x00\x00\n^\x00\x006\x00\x00\x00)^\x00\x00\xa3\x01\x00\x00`^\x00\x00\x8c\x02\x00\x00\x04`\x00\x00L\x00\x00\x00\x91b\x00\x00O\x00\x00\x00\xdeb\x00\x004\x00\x00\x00.c\x00\x00\x8f\x00\x00\x00cc\x00\x00j\x00\x00\x00\xf3c\x00\x00d\x00\x00\x00^d\x00\x00\xd5\x00\x00\x00\xc3d\x00\x00\x7f\x00\x00\x00\x99e\x00\x00\xcd\x00\x00\x00\x19f\x00\x00\xa4\x01\x00\x00\xe7f\x00\x00<\x00\x00\x00\x8ch\x00\x00\x01\x00\x00\x00\xc9h\x00\x00p\x00\x00\x00\xcbh\x00\x00\n\x00\x00\x00<i\x00\x00\x16\x00\x00\x00Gi\x00\x00\x14\x00\x00\x00^i\x00\x00\x10\x00\x00\x00si\x00\x00/\x00\x00\x00\x84i\x00\x00I\x00\x00\x00\xb4i\x00\x00D\x00\x00\x00\xfei\x00\x00@\x00\x00\x00Cj\x00\x00\x10\x00\x00\x00\x84j\x00\x003\x00\x00\x00\x95j\x00\x00}\x00\x00\x00\xc9j\x00\x00\x98\x00\x00\x00Gk\x00\x00$\x00\x00\x00\xe0k\x00\x00!\x00\x00\x00\x05l\x00\x00M\x00\x00\x00\'l\x00\x00!\x00\x00\x00ul\x00\x00\x8f\x00\x00\x00\x97l\x00\x00\t\x00\x00\x00\'m\x00\x00\x10\x00\x00\x001m\x00\x00\x10\x00\x00\x00Bm\x00\x00\x05\x00\x00\x00Sm\x00\x00\t\x00\x00\x00Ym\x00\x00\'\x00\x00\x00cm\x00\x00!\x00\x00\x00\x8bm\x00\x00\x13\x00\x00\x00\xadm\x00\x00\x05\x00\x00\x00\xc1m\x00\x00\x1a\x00\x00\x00\xc7m\x00\x00\x12\x00\x00\x00\xe2m\x00\x00\t\x00\x00\x00\xf5m\x00\x00\x08\x00\x00\x00\xffm\x00\x00\x13\x00\x00\x00\x08n\x00\x00\x1b\x00\x00\x00\x1cn\x00\x00\x06\x00\x00\x008n\x00\x00\x1f\x00\x00\x00?n\x00\x00\x07\x00\x00\x00_n\x00\x003\x00\x00\x00gn\x00\x00\x16\x00\x00\x00\x9bn\x00\x00\x05\x00\x00\x00\xb2n\x00\x00)\x00\x00\x00\xb8n\x00\x00\x13\x00\x00\x00\xe2n\x00\x007\x00\x00\x00\xf6n\x00\x00A\x00\x00\x00.o\x00\x006\x00\x00\x00po\x00\x00\x12\x00\x00\x00\xa7o\x00\x00%\x00\x00\x00\xbao\x00\x00\x18\x00\x00\x00\xe0o\x00\x00?\x00\x00\x00\xf9o\x00\x00\x1a\x00\x00\x009p\x00\x00\x15\x00\x00\x00Tp\x00\x00P\x00\x00\x00jp\x00\x00 \x00\x00\x00\xbbp\x00\x004\x00\x00\x00\xdcp\x00\x005\x00\x00\x00\x11q\x00\x00\x1d\x00\x00\x00Gq\x00\x00g\x00\x00\x00eq\x00\x00-\x00\x00\x00\xcdq\x00\x00\x12\x00\x00\x00\xfbq\x00\x00%\x00\x00\x00\x0er\x00\x00\x18\x00\x00\x004r\x00\x00\x13\x00\x00\x00Mr\x00\x00\n\x00\x00\x00ar\x00\x00\x18\x00\x00\x00lr\x00\x00\x17\x00\x00\x00\x85r\x00\x00T\x00\x00\x00\x9dr\x00\x00\x1b\x00\x00\x00\xf2r\x00\x00\x19\x00\x00\x00\x0es\x00\x00V\x00\x00\x00(s\x00\x00\x18\x00\x00\x00\x7fs\x00\x00\x11\x00\x00\x00\x98s\x00\x00&\x00\x00\x00\xaas\x00\x00\x1b\x00\x00\x00\xd1s\x00\x00&\x00\x00\x00\xeds\x00\x00E\x00\x00\x00\x14t\x00\x00\x0c\x00\x00\x00Zt\x00\x00\r\x00\x00\x00gt\x00\x00\r\x00\x00\x00ut\x00\x00\x1e\x00\x00\x00\x83t\x00\x00\x17\x00\x00\x00\xa2t\x00\x00\x14\x00\x00\x00\xbat\x00\x00\x17\x00\x00\x00\xcft\x00\x00\x10\x00\x00\x00\xe7t\x00\x00#\x00\x00\x00\xf8t\x00\x00W\x00\x00\x00\x1cu\x00\x004\x00\x00\x00tu\x00\x00}\x00\x00\x00\xa9u\x00\x00.\x00\x00\x00\'v\x00\x00"\x00\x00\x00Vv\x00\x00\n\x00\x00\x00yv\x00\x00\x1f\x00\x00\x00\x84v\x00\x00\x04\x00\x00\x00\xa4v\x00\x002\x00\x00\x00\xa9v\x00\x00\x0b\x00\x00\x00\xdcv\x00\x00\x8f\x00\x00\x00\xe8v\x00\x00\x14\x00\x00\x00xw\x00\x00 \x00\x00\x00\x8dw\x00\x00!\x00\x00\x00\xaew\x00\x00\x10\x00\x00\x00\xd0w\x00\x00\x18\x00\x00\x00\xe1w\x00\x00#\x00\x00\x00\xfaw\x00\x00\x01\x00\x00\x00\x1ex\x00\x00\x06\x00\x00\x00 x\x00\x00\x14\x00\x00\x00\'x\x00\x00 \x00\x00\x00<x\x00\x00\x14\x00\x00\x00]x\x00\x00\x1c\x00\x00\x00rx\x00\x00%\x00\x00\x00\x8fx\x00\x00\x0f\x00\x00\x00\xb5x\x00\x00"\x00\x00\x00\xc5x\x00\x00Q\x00\x00\x00\xe8x\x00\x00\x06\x00\x00\x00:y\x00\x00=\x00\x00\x00Ay\x00\x00\x1f\x00\x00\x00\x7fy\x00\x00=\x00\x00\x00\x9fy\x00\x00"\x00\x00\x00\xddy\x00\x00,\x00\x00\x00\x00z\x00\x00:\x00\x00\x00-z\x00\x00/\x00\x00\x00hz\x00\x00\n\x00\x00\x00\x98z\x00\x00$\x00\x00\x00\xa3z\x00\x00\x0f\x00\x00\x00\xc8z\x00\x00\n\x00\x00\x00\xd8z\x00\x009\x00\x00\x00\xe3z\x00\x00\x1b\x00\x00\x00\x1d{\x00\x00-\x00\x00\x009{\x00\x00\x14\x00\x00\x00g{\x00\x00\x17\x00\x00\x00|{\x00\x00\x0c\x00\x00\x00\x94{\x00\x00\x10\x00\x00\x00\xa1{\x00\x00*\x00\x00\x00\xb2{\x00\x00\x17\x00\x00\x00\xdd{\x00\x00\x1d\x00\x00\x00\xf5{\x00\x00\x07\x00\x00\x00\x13|\x00\x00\x0b\x00\x00\x00\x1b|\x00\x00B\x00\x00\x00\'|\x00\x00\x06\x00\x00\x00j|\x00\x005\x01\x00\x00q|\x00\x00[\x00\x00\x00\xa7}\x00\x00)\x00\x00\x00\x03~\x00\x00\x03\x00\x00\x00-~\x00\x00\x06\x00\x00\x001~\x00\x00\x07\x00\x00\x008~\x00\x00\x06\x00\x00\x00@~\x00\x004\x00\x00\x00G~\x00\x00#\x00\x00\x00|~\x00\x00\x1e\x00\x00\x00\xa0~\x00\x00\t\x00\x00\x00\xbf~\x00\x00\x04\x00\x00\x00\xc9~\x00\x00\x0b\x00\x00\x00\xce~\x00\x00\x07\x00\x00\x00\xda~\x00\x00\x1b\x02\x00\x00\xe2~\x00\x00\x8f\x00\x00\x00\xfe\x80\x00\x00n\x00\x00\x00\x8e\x81\x00\x00\x16\x00\x00\x00\xfd\x81\x00\x00\x12\x00\x00\x00\x14\x82\x00\x00\xcc\x00\x00\x00\'\x82\x00\x002\x00\x00\x00\xf4\x82\x00\x00\x19\x00\x00\x00\'\x83\x00\x00\x1e\x00\x00\x00A\x83\x00\x00\x1e\x00\x00\x00`\x83\x00\x006\x00\x00\x00\x7f\x83\x00\x00\x1f\x00\x00\x00\xb6\x83\x00\x00#\x00\x00\x00\xd6\x83\x00\x00\x07\x00\x00\x00\xfa\x83\x00\x00"\x00\x00\x00\x02\x84\x00\x00\t\x00\x00\x00%\x84\x00\x00\x11\x00\x00\x00/\x84\x00\x002\x00\x00\x00A\x84\x00\x00\t\x00\x00\x00t\x84\x00\x00C\x00\x00\x00~\x84\x00\x00\r\x00\x00\x00\xc2\x84\x00\x003\x00\x00\x00\xd0\x84\x00\x009\x00\x00\x00\x04\x85\x00\x00\x19\x00\x00\x00>\x85\x00\x001\x00\x00\x00X\x85\x00\x00\x17\x00\x00\x00\x8a\x85\x00\x00\x08\x00\x00\x00\xa2\x85\x00\x00\xa1\x00\x00\x00\xab\x85\x00\x00\x17\x00\x00\x00M\x86\x00\x00\x04\x00\x00\x00e\x86\x00\x00\n\x00\x00\x00j\x86\x00\x006\x00\x00\x00u\x86\x00\x00\r\x00\x00\x00\xac\x86\x00\x00\x11\x00\x00\x00\xba\x86\x00\x00\x17\x00\x00\x00\xcc\x86\x00\x00\x19\x00\x00\x00\xe4\x86\x00\x00\x19\x00\x00\x00\xfe\x86\x00\x00\x0c\x00\x00\x00\x18\x87\x00\x00\x0f\x00\x00\x00%\x87\x00\x00>\x00\x00\x005\x87\x00\x00\x05\x00\x00\x00t\x87\x00\x00_\x00\x00\x00z\x87\x00\x00\x1e\x00\x00\x00\xda\x87\x00\x00\x0f\x00\x00\x00\xf9\x87\x00\x00\x07\x00\x00\x00\t\x88\x00\x00\x1d\x00\x00\x00\x11\x88\x00\x00\x1b\x00\x00\x00/\x88\x00\x00H\x00\x00\x00K\x88\x00\x00D\x00\x00\x00\x94\x88\x00\x00\x95\x00\x00\x00\xd9\x88\x00\x00\x12\x00\x00\x00o\x89\x00\x00\x0c\x00\x00\x00\x82\x89\x00\x00\x14\x00\x00\x00\x8f\x89\x00\x00J\x00\x00\x00\xa4\x89\x00\x00\x18\x00\x00\x00\xef\x89\x00\x00\x06\x00\x00\x00\x08\x8a\x00\x00F\x00\x00\x00\x0f\x8a\x00\x00[\x00\x00\x00V\x8a\x00\x00@\x00\x00\x00\xb2\x8a\x00\x00r\x00\x00\x00\xf3\x8a\x00\x00M\x00\x00\x00f\x8b\x00\x00\x8c\x00\x00\x00\xb4\x8b\x00\x00S\x00\x00\x00A\x8c\x00\x00\x11\x00\x00\x00\x95\x8c\x00\x00\r\x00\x00\x00\xa7\x8c\x00\x00\xbc\x00\x00\x00\xb5\x8c\x00\x00\x19\x00\x00\x00r\x8d\x00\x00\x0b\x00\x00\x00\x8c\x8d\x00\x00\x07\x00\x00\x00\x98\x8d\x00\x00\x04\x00\x00\x00\xa0\x8d\x00\x00$\x00\x00\x00\xa5\x8d\x00\x00\x16\x00\x00\x00\xca\x8d\x00\x00\x14\x00\x00\x00\xe1\x8d\x00\x00-\x00\x00\x00\xf6\x8d\x00\x00-\x00\x00\x00$\x8e\x00\x002\x00\x00\x00R\x8e\x00\x00+\x00\x00\x00\x85\x8e\x00\x00J\x00\x00\x00\xb1\x8e\x00\x00\x14\x00\x00\x00\xfc\x8e\x00\x00\x1e\x00\x00\x00\x11\x8f\x00\x00E\x00\x00\x000\x8f\x00\x001\x00\x00\x00v\x8f\x00\x00\xae\x00\x00\x00\xa8\x8f\x00\x00N\x00\x00\x00W\x90\x00\x00(\x00\x00\x00\xa6\x90\x00\x002\x00\x00\x00\xcf\x90\x00\x00\x08\x00\x00\x00\x02\x91\x00\x00\r\x00\x00\x00\x0b\x91\x00\x00\x19\x00\x00\x00\x19\x91\x00\x004\x00\x00\x003\x91\x00\x00=\x00\x00\x00h\x91\x00\x00\r\x00\x00\x00\xa6\x91\x00\x00i\x00\x00\x00\xb4\x91\x00\x00\x87\x00\x00\x00\x1e\x92\x00\x00Q\x00\x00\x00\xa6\x92\x00\x000\x00\x00\x00\xf8\x92\x00\x00\x12\x00\x00\x00)\x93\x00\x00!\x00\x00\x00<\x93\x00\x00\x1c\x00\x00\x00^\x93\x00\x000\x00\x00\x00{\x93\x00\x00\x07\x00\x00\x00\xac\x93\x00\x00\x10\x00\x00\x00\xb4\x93\x00\x00\r\x00\x00\x00\xc5\x93\x00\x00\x07\x00\x00\x00\xd3\x93\x00\x001\x00\x00\x00\xdb\x93\x00\x00\x16\x00\x00\x00\r\x94\x00\x002\x00\x00\x00$\x94\x00\x00%\x00\x00\x00W\x94\x00\x00%\x00\x00\x00}\x94\x00\x00\x11\x00\x00\x00\xa3\x94\x00\x00b\x00\x00\x00\xb5\x94\x00\x00\x1a\x00\x00\x00\x18\x95\x00\x00\x16\x00\x00\x003\x95\x00\x00\x17\x00\x00\x00J\x95\x00\x00\x95\x00\x00\x00b\x95\x00\x00r\x00\x00\x00\xf8\x95\x00\x00B\x00\x00\x00k\x96\x00\x000\x00\x00\x00\xae\x96\x00\x00}\x00\x00\x00\xdf\x96\x00\x00\x0b\x00\x00\x00]\x97\x00\x00\x19\x00\x00\x00i\x97\x00\x00\x19\x00\x00\x00\x83\x97\x00\x00\x1c\x00\x00\x00\x9d\x97\x00\x00\x1c\x01\x00\x00\xba\x97\x00\x00\x81\x00\x00\x00\xd7\x98\x00\x00\x96\x00\x00\x00Y\x99\x00\x00\xbd\x00\x00\x00\xf0\x99\x00\x00c\x00\x00\x00\xae\x9a\x00\x00b\x01\x00\x00\x12\x9b\x00\x00%\x00\x00\x00u\x9c\x00\x00\x06\x00\x00\x00\x9b\x9c\x00\x00\x1f\x00\x00\x00\xa2\x9c\x00\x00\x07\x00\x00\x00\xc2\x9c\x00\x00\x07\x00\x00\x00\xca\x9c\x00\x00\x15\x00\x00\x00\xd2\x9c\x00\x00\x1e\x00\x00\x00\xe8\x9c\x00\x00\x04\x00\x00\x00\x07\x9d\x00\x00\x94\x00\x00\x00\x0c\x9d\x00\x00\x04\x00\x00\x00\xa1\x9d\x00\x00\t\x00\x00\x00\xa6\x9d\x00\x00A\x00\x00\x00\xb0\x9d\x00\x00l\x00\x00\x00\xf2\x9d\x00\x00\xb2\x00\x00\x00_\x9e\x00\x00)\x00\x00\x00\x12\x9f\x00\x00#\x00\x00\x00<\x9f\x00\x00\xa6\x00\x00\x00`\x9f\x00\x00*\x00\x00\x00\x07\xa0\x00\x00%\x00\x00\x002\xa0\x00\x00^\x00\x00\x00X\xa0\x00\x00s\x00\x00\x00\xb7\xa0\x00\x00\xae\x00\x00\x00+\xa1\x00\x00\n\x00\x00\x00\xda\xa1\x00\x00\x05\x00\x00\x00\xe5\xa1\x00\x00 \x00\x00\x00\xeb\xa1\x00\x00\x06\x00\x00\x00\x0c\xa2\x00\x008\x00\x00\x00\x13\xa2\x00\x00!\x00\x00\x00L\xa2\x00\x00%\x00\x00\x00n\xa2\x00\x00\x0c\x00\x00\x00\x94\xa2\x00\x00\x07\x00\x00\x00\xa1\xa2\x00\x00\x1b\x00\x00\x00\xa9\xa2\x00\x00\x0e\x00\x00\x00\xc5\xa2\x00\x00\x12\x00\x00\x00\xd4\xa2\x00\x00\x12\x00\x00\x00\xe7\xa2\x00\x00;\x00\x00\x00\xfa\xa2\x00\x000\x00\x00\x006\xa3\x00\x00\xca\x00\x00\x00g\xa3\x00\x00F\x00\x00\x002\xa4\x00\x00\x1e\x00\x00\x00y\xa4\x00\x00i\x00\x00\x00\x98\xa4\x00\x00N\x00\x00\x00\x02\xa5\x00\x007\x00\x00\x00Q\xa5\x00\x00\n\x00\x00\x00\x89\xa5\x00\x00\x19\x00\x00\x00\x94\xa5\x00\x00\n\x00\x00\x00\xae\xa5\x00\x00\x08\x00\x00\x00\xb9\xa5\x00\x00B\x00\x00\x00\xc2\xa5\x00\x00s\x00\x00\x00\x05\xa6\x00\x001\x00\x00\x00y\xa6\x00\x00<\x00\x00\x00\xab\xa6\x00\x002\x00\x00\x00\xe8\xa6\x00\x00\n\x00\x00\x00\x1b\xa7\x00\x00\t\x00\x00\x00&\xa7\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 profile\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="-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>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 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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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\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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\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-24 15:10+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 :\x00Profil 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="-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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\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\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\x00Profil&titel:\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 : \x00Profil-Quellcode (Python)\x00Progression\x00Editeur\x00Note\x00Note de ce livre. de 0 \xc3\xa0 5 \xc3\xa9toiles\x00Lecteur \n%s disponible\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\x00Feeds aus dem Profil 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.\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\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.\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.\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\x94\x01\x00\x00\x1c\x00\x00\x00\xbc\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\\\x19\x00\x00\x0e\x00\x00\x00]\x19\x00\x00!\x00\x00\x00l\x19\x00\x00\x05\x00\x00\x00\x8e\x19\x00\x00\x06\x00\x00\x00\x94\x19\x00\x00\x17\x00\x00\x00\x9b\x19\x00\x00\x0b\x00\x00\x00\xb3\x19\x00\x00\x04\x00\x00\x00\xbf\x19\x00\x00\x03\x00\x00\x00\xc4\x19\x00\x00\x08\x00\x00\x00\xc8\x19\x00\x00\x06\x00\x00\x00\xd1\x19\x00\x00\x1c\x00\x00\x00\xd8\x19\x00\x00\x0e\x00\x00\x00\xf5\x19\x00\x00\x0c\x00\x00\x00\x04\x1a\x00\x00\t\x00\x00\x00\x11\x1a\x00\x00\t\x00\x00\x00\x1b\x1a\x00\x00\x0c\x00\x00\x00%\x1a\x00\x00\x0f\x00\x00\x002\x1a\x00\x00\x11\x00\x00\x00B\x1a\x00\x00\x1a\x00\x00\x00T\x1a\x00\x00\x0c\x00\x00\x00o\x1a\x00\x00\x1d\x00\x00\x00|\x1a\x00\x00\x0f\x00\x00\x00\x9a\x1a\x00\x00\r\x00\x00\x00\xaa\x1a\x00\x00)\x00\x00\x00\xb8\x1a\x00\x00"\x00\x00\x00\xe2\x1a\x00\x00\x18\x00\x00\x00\x05\x1b\x00\x00\x0b\x00\x00\x00\x1e\x1b\x00\x00\x10\x00\x00\x00*\x1b\x00\x00\x17\x00\x00\x00;\x1b\x00\x00\n\x00\x00\x00S\x1b\x00\x00\x0c\x00\x00\x00^\x1b\x00\x00\x1e\x00\x00\x00k\x1b\x00\x00\t\x00\x00\x00\x8a\x1b\x00\x00\x0c\x00\x00\x00\x94\x1b\x00\x00\x08\x00\x00\x00\xa1\x1b\x00\x00\x14\x00\x00\x00\xaa\x1b\x00\x00\x0f\x00\x00\x00\xbf\x1b\x00\x00\r\x00\x00\x00\xcf\x1b\x00\x00\x0e\x00\x00\x00\xdd\x1b\x00\x00\x08\x00\x00\x00\xec\x1b\x00\x00\x08\x00\x00\x00\xf5\x1b\x00\x00\x07\x00\x00\x00\xfe\x1b\x00\x00\x0c\x00\x00\x00\x06\x1c\x00\x00\x0e\x00\x00\x00\x13\x1c\x00\x00\x12\x00\x00\x00"\x1c\x00\x00\x05\x00\x00\x005\x1c\x00\x00\x08\x00\x00\x00;\x1c\x00\x00\x0c\x00\x00\x00D\x1c\x00\x00\n\x00\x00\x00Q\x1c\x00\x00\x0e\x00\x00\x00\\\x1c\x00\x00\x03\x00\x00\x00k\x1c\x00\x001\x00\x00\x00o\x1c\x00\x00"\x00\x00\x00\xa1\x1c\x00\x00=\x00\x00\x00\xc4\x1c\x00\x00\x18\x00\x00\x00\x02\x1d\x00\x00+\x00\x00\x00\x1b\x1d\x00\x00\xa3\x01\x00\x00G\x1d\x00\x00\x82\x02\x00\x00\xeb\x1e\x00\x00>\x00\x00\x00n!\x00\x00S\x00\x00\x00\xad!\x00\x005\x00\x00\x00\x01"\x00\x00p\x00\x00\x007"\x00\x00a\x00\x00\x00\xa8"\x00\x00G\x00\x00\x00\n#\x00\x00\xa7\x00\x00\x00R#\x00\x00W\x00\x00\x00\xfa#\x00\x00\x96\x00\x00\x00R$\x00\x00=\x01\x00\x00\xe9$\x00\x002\x00\x00\x00\'&\x00\x00\x01\x00\x00\x00Z&\x00\x00X\x00\x00\x00\\&\x00\x00\r\x00\x00\x00\xb5&\x00\x00\x0f\x00\x00\x00\xc3&\x00\x00\x0b\x00\x00\x00\xd3&\x00\x00\x0b\x00\x00\x00\xdf&\x00\x00\x18\x00\x00\x00\xeb&\x00\x007\x00\x00\x00\x04\'\x00\x004\x00\x00\x00<\'\x00\x00.\x00\x00\x00q\'\x00\x00\t\x00\x00\x00\xa0\'\x00\x00!\x00\x00\x00\xaa\'\x00\x00b\x00\x00\x00\xcc\'\x00\x00o\x00\x00\x00/(\x00\x00\x16\x00\x00\x00\x9f(\x00\x00\x13\x00\x00\x00\xb6(\x00\x006\x00\x00\x00\xca(\x00\x00\x13\x00\x00\x00\x01)\x00\x00m\x00\x00\x00\x15)\x00\x00\x08\x00\x00\x00\x83)\x00\x00\x0f\x00\x00\x00\x8c)\x00\x00\x0f\x00\x00\x00\x9c)\x00\x00\x05\x00\x00\x00\xac)\x00\x00\x03\x00\x00\x00\xb2)\x00\x00\x19\x00\x00\x00\xb6)\x00\x00\x1b\x00\x00\x00\xd0)\x00\x00\x16\x00\x00\x00\xec)\x00\x00\x06\x00\x00\x00\x03*\x00\x00\x0e\x00\x00\x00\n*\x00\x00\r\x00\x00\x00\x19*\x00\x00\t\x00\x00\x00\'*\x00\x00\x08\x00\x00\x001*\x00\x00\x11\x00\x00\x00:*\x00\x00\x17\x00\x00\x00L*\x00\x00\x04\x00\x00\x00d*\x00\x00\x10\x00\x00\x00i*\x00\x00\x05\x00\x00\x00z*\x00\x00!\x00\x00\x00\x80*\x00\x00\x10\x00\x00\x00\xa2*\x00\x00\x05\x00\x00\x00\xb3*\x00\x00(\x00\x00\x00\xb9*\x00\x00\n\x00\x00\x00\xe2*\x00\x00.\x00\x00\x00\xed*\x00\x005\x00\x00\x00\x1c+\x00\x00$\x00\x00\x00R+\x00\x00\x0c\x00\x00\x00w+\x00\x00\x1a\x00\x00\x00\x84+\x00\x00\x10\x00\x00\x00\x9f+\x00\x00.\x00\x00\x00\xb0+\x00\x00\x0e\x00\x00\x00\xdf+\x00\x00\x0e\x00\x00\x00\xee+\x00\x007\x00\x00\x00\xfd+\x00\x00\x14\x00\x00\x005,\x00\x00\x12\x00\x00\x00J,\x00\x00#\x00\x00\x00],\x00\x00\x0f\x00\x00\x00\x81,\x00\x00Z\x00\x00\x00\x91,\x00\x00\x19\x00\x00\x00\xec,\x00\x00\x0b\x00\x00\x00\x06-\x00\x00\x13\x00\x00\x00\x12-\x00\x00\x0b\x00\x00\x00&-\x00\x00\x11\x00\x00\x002-\x00\x00\x08\x00\x00\x00D-\x00\x00\x14\x00\x00\x00M-\x00\x00\x0f\x00\x00\x00b-\x00\x00R\x00\x00\x00r-\x00\x00!\x00\x00\x00\xc5-\x00\x00\x1d\x00\x00\x00\xe7-\x00\x00H\x00\x00\x00\x05.\x00\x00\x11\x00\x00\x00N.\x00\x00\r\x00\x00\x00`.\x00\x00%\x00\x00\x00n.\x00\x00\x19\x00\x00\x00\x94.\x00\x00!\x00\x00\x00\xae.\x00\x007\x00\x00\x00\xd0.\x00\x00\x08\x00\x00\x00\x08/\x00\x00\r\x00\x00\x00\x11/\x00\x00\t\x00\x00\x00\x1f/\x00\x00\x10\x00\x00\x00)/\x00\x00\x11\x00\x00\x00:/\x00\x00\x0f\x00\x00\x00L/\x00\x00\x14\x00\x00\x00\\/\x00\x00\x0e\x00\x00\x00q/\x00\x00\x1c\x00\x00\x00\x80/\x00\x00;\x00\x00\x00\x9d/\x00\x00\x15\x00\x00\x00\xd9/\x00\x00R\x00\x00\x00\xef/\x00\x00\x17\x00\x00\x00B0\x00\x00\x18\x00\x00\x00Z0\x00\x00\x0b\x00\x00\x00s0\x00\x00\x13\x00\x00\x00\x7f0\x00\x00\x04\x00\x00\x00\x930\x00\x00\x19\x00\x00\x00\x980\x00\x00\x03\x00\x00\x00\xb20\x00\x00h\x00\x00\x00\xb60\x00\x00\x0e\x00\x00\x00\x1f1\x00\x00\x1b\x00\x00\x00.1\x00\x00\x1a\x00\x00\x00J1\x00\x00\x11\x00\x00\x00e1\x00\x00\x19\x00\x00\x00w1\x00\x00\x11\x00\x00\x00\x911\x00\x00\x01\x00\x00\x00\xa31\x00\x00\x05\x00\x00\x00\xa51\x00\x00\x15\x00\x00\x00\xab1\x00\x00\x15\x00\x00\x00\xc11\x00\x00\x15\x00\x00\x00\xd71\x00\x00\x15\x00\x00\x00\xed1\x00\x00\x1a\x00\x00\x00\x032\x00\x00\x0e\x00\x00\x00\x1e2\x00\x00\x1f\x00\x00\x00-2\x00\x00C\x00\x00\x00M2\x00\x00\x05\x00\x00\x00\x912\x00\x00\x1f\x00\x00\x00\x972\x00\x00\x12\x00\x00\x00\xb72\x00\x00\x17\x00\x00\x00\xca2\x00\x00\x1f\x00\x00\x00\xe22\x00\x00\'\x00\x00\x00\x023\x00\x003\x00\x00\x00*3\x00\x00*\x00\x00\x00^3\x00\x00\n\x00\x00\x00\x893\x00\x00\x16\x00\x00\x00\x943\x00\x00\x10\x00\x00\x00\xab3\x00\x00\x05\x00\x00\x00\xbc3\x00\x00\x1d\x00\x00\x00\xc23\x00\x00\x0e\x00\x00\x00\xe03\x00\x00\x1a\x00\x00\x00\xef3\x00\x00\n\x00\x00\x00\n4\x00\x00\x10\x00\x00\x00\x154\x00\x00\r\x00\x00\x00&4\x00\x00\x11\x00\x00\x0044\x00\x00\x1f\x00\x00\x00F4\x00\x00\x13\x00\x00\x00f4\x00\x00\x1b\x00\x00\x00z4\x00\x00\x05\x00\x00\x00\x964\x00\x00\x0b\x00\x00\x00\x9c4\x00\x008\x00\x00\x00\xa84\x00\x00\x08\x00\x00\x00\xe14\x00\x00\x1d\x01\x00\x00\xea4\x00\x00J\x00\x00\x00\x086\x00\x00#\x00\x00\x00S6\x00\x00\x04\x00\x00\x00w6\x00\x00\x06\x00\x00\x00|6\x00\x00\x07\x00\x00\x00\x836\x00\x00\x07\x00\x00\x00\x8b6\x00\x00\'\x00\x00\x00\x936\x00\x00\x1b\x00\x00\x00\xbb6\x00\x00\x19\x00\x00\x00\xd76\x00\x00\x06\x00\x00\x00\xf16\x00\x00\x0c\x00\x00\x00\xf86\x00\x00\t\x00\x00\x00\x057\x00\x00\x06\x00\x00\x00\x0f7\x00\x00\xdc\x01\x00\x00\x167\x00\x00n\x00\x00\x00\xf38\x00\x00a\x00\x00\x00b9\x00\x00\x0e\x00\x00\x00\xc49\x00\x00\x0e\x00\x00\x00\xd39\x00\x00\xa8\x00\x00\x00\xe29\x00\x00&\x00\x00\x00\x8b:\x00\x00\x10\x00\x00\x00\xb2:\x00\x00\x19\x00\x00\x00\xc3:\x00\x00\x1a\x00\x00\x00\xdd:\x00\x00.\x00\x00\x00\xf8:\x00\x00\x1a\x00\x00\x00\';\x00\x00\x1e\x00\x00\x00B;\x00\x00\x03\x00\x00\x00a;\x00\x00\x12\x00\x00\x00e;\x00\x00\x05\x00\x00\x00x;\x00\x00\n\x00\x00\x00~;\x00\x00,\x00\x00\x00\x89;\x00\x00\x07\x00\x00\x00\xb6;\x00\x00-\x00\x00\x00\xbe;\x00\x00\x0b\x00\x00\x00\xec;\x00\x00$\x00\x00\x00\xf8;\x00\x00$\x00\x00\x00\x1d<\x00\x00\x07\x00\x00\x00B<\x00\x000\x00\x00\x00J<\x00\x00\x10\x00\x00\x00{<\x00\x00\x08\x00\x00\x00\x8c<\x00\x00y\x00\x00\x00\x95<\x00\x00\x10\x00\x00\x00\x0f=\x00\x00\x04\x00\x00\x00 =\x00\x00\x06\x00\x00\x00%=\x00\x00"\x00\x00\x00,=\x00\x00\t\x00\x00\x00O=\x00\x00\n\x00\x00\x00Y=\x00\x00\x14\x00\x00\x00d=\x00\x00\x10\x00\x00\x00y=\x00\x00\x11\x00\x00\x00\x8a=\x00\x00\x08\x00\x00\x00\x9c=\x00\x00\x10\x00\x00\x00\xa5=\x00\x00\x12\x00\x00\x00\xb6=\x00\x00\x04\x00\x00\x00\xc9=\x00\x00^\x00\x00\x00\xce=\x00\x00\x0f\x00\x00\x00->\x00\x00\n\x00\x00\x00=>\x00\x00\x07\x00\x00\x00H>\x00\x00-\x00\x00\x00P>\x00\x00+\x00\x00\x00~>\x00\x00F\x00\x00\x00\xaa>\x00\x008\x00\x00\x00\xf1>\x00\x00s\x00\x00\x00*?\x00\x00\x0f\x00\x00\x00\x9e?\x00\x00\n\x00\x00\x00\xae?\x00\x00\x10\x00\x00\x00\xb9?\x00\x00:\x00\x00\x00\xca?\x00\x00\x0f\x00\x00\x00\x05@\x00\x00\x04\x00\x00\x00\x15@\x00\x00;\x00\x00\x00\x1a@\x00\x00G\x00\x00\x00V@\x00\x001\x00\x00\x00\x9e@\x00\x00Y\x00\x00\x00\xd0@\x00\x004\x00\x00\x00*A\x00\x00\x80\x00\x00\x00_A\x00\x00H\x00\x00\x00\xe0A\x00\x00\r\x00\x00\x00)B\x00\x00\x0f\x00\x00\x007B\x00\x00\xbc\x00\x00\x00GB\x00\x00\x1c\x00\x00\x00\x04C\x00\x00\x08\x00\x00\x00!C\x00\x00\t\x00\x00\x00*C\x00\x00\x06\x00\x00\x004C\x00\x00\x1e\x00\x00\x00;C\x00\x00\x13\x00\x00\x00ZC\x00\x00\x13\x00\x00\x00nC\x00\x00+\x00\x00\x00\x82C\x00\x00*\x00\x00\x00\xaeC\x00\x000\x00\x00\x00\xd9C\x00\x00)\x00\x00\x00\nD\x00\x00<\x00\x00\x004D\x00\x00\x0c\x00\x00\x00qD\x00\x00\x18\x00\x00\x00~D\x00\x00<\x00\x00\x00\x97D\x00\x000\x00\x00\x00\xd4D\x00\x00\x84\x00\x00\x00\x05E\x00\x00X\x00\x00\x00\x8aE\x00\x00\x12\x00\x00\x00\xe3E\x00\x00-\x00\x00\x00\xf6E\x00\x00\x0c\x00\x00\x00$F\x00\x00\x0c\x00\x00\x001F\x00\x00\x0c\x00\x00\x00>F\x00\x00"\x00\x00\x00KF\x00\x009\x00\x00\x00nF\x00\x00\x0f\x00\x00\x00\xa8F\x00\x00V\x00\x00\x00\xb8F\x00\x00r\x00\x00\x00\x0fG\x00\x00G\x00\x00\x00\x82G\x00\x00\'\x00\x00\x00\xcaG\x00\x00\x0e\x00\x00\x00\xf2G\x00\x00\x13\x00\x00\x00\x01H\x00\x00\x14\x00\x00\x00\x15H\x00\x00#\x00\x00\x00*H\x00\x00\x06\x00\x00\x00NH\x00\x00\r\x00\x00\x00UH\x00\x00\r\x00\x00\x00cH\x00\x00\x07\x00\x00\x00qH\x00\x00\x1e\x00\x00\x00yH\x00\x00\x0b\x00\x00\x00\x98H\x00\x00\x17\x00\x00\x00\xa4H\x00\x00\x1b\x00\x00\x00\xbcH\x00\x00\x1a\x00\x00\x00\xd8H\x00\x00\x0e\x00\x00\x00\xf3H\x00\x00^\x00\x00\x00\x02I\x00\x00\x12\x00\x00\x00aI\x00\x00\x10\x00\x00\x00tI\x00\x00\x10\x00\x00\x00\x85I\x00\x00g\x00\x00\x00\x96I\x00\x00c\x00\x00\x00\xfeI\x00\x007\x00\x00\x00bJ\x00\x00!\x00\x00\x00\x9aJ\x00\x00d\x00\x00\x00\xbcJ\x00\x00\t\x00\x00\x00!K\x00\x00\x17\x00\x00\x00+K\x00\x00\x16\x00\x00\x00CK\x00\x00\x11\x00\x00\x00ZK\x00\x00\x04\x01\x00\x00lK\x00\x00z\x00\x00\x00qL\x00\x00\x85\x00\x00\x00\xecL\x00\x00\xb6\x00\x00\x00rM\x00\x00P\x00\x00\x00)N\x00\x00+\x01\x00\x00zN\x00\x00#\x00\x00\x00\xa6O\x00\x00\x06\x00\x00\x00\xcaO\x00\x00\x17\x00\x00\x00\xd1O\x00\x00\x07\x00\x00\x00\xe9O\x00\x00\x03\x00\x00\x00\xf1O\x00\x00\n\x00\x00\x00\xf5O\x00\x00\x13\x00\x00\x00\x00P\x00\x00\x04\x00\x00\x00\x14P\x00\x00\x85\x00\x00\x00\x19P\x00\x00\x04\x00\x00\x00\x9fP\x00\x00\t\x00\x00\x00\xa4P\x00\x000\x00\x00\x00\xaeP\x00\x00X\x00\x00\x00\xdfP\x00\x00\x9d\x00\x00\x008Q\x00\x00&\x00\x00\x00\xd6Q\x00\x00\x1e\x00\x00\x00\xfdQ\x00\x00v\x00\x00\x00\x1cR\x00\x00\'\x00\x00\x00\x93R\x00\x00"\x00\x00\x00\xbbR\x00\x00B\x00\x00\x00\xdeR\x00\x00^\x00\x00\x00!S\x00\x00h\x00\x00\x00\x80S\x00\x00\t\x00\x00\x00\xe9S\x00\x00\x05\x00\x00\x00\xf3S\x00\x00\x15\x00\x00\x00\xf9S\x00\x00\x06\x00\x00\x00\x0fT\x00\x00+\x00\x00\x00\x16T\x00\x00\x1b\x00\x00\x00BT\x00\x00&\x00\x00\x00^T\x00\x00\x0b\x00\x00\x00\x85T\x00\x00\x07\x00\x00\x00\x91T\x00\x00\x13\x00\x00\x00\x99T\x00\x00\x0c\x00\x00\x00\xadT\x00\x00\x10\x00\x00\x00\xbaT\x00\x00\x10\x00\x00\x00\xcbT\x00\x00%\x00\x00\x00\xdcT\x00\x00\x1b\x00\x00\x00\x02U\x00\x00\xb4\x00\x00\x00\x1eU\x00\x002\x00\x00\x00\xd3U\x00\x00\x14\x00\x00\x00\x06V\x00\x00_\x00\x00\x00\x1bV\x00\x00:\x00\x00\x00{V\x00\x00*\x00\x00\x00\xb6V\x00\x00\x04\x00\x00\x00\xe1V\x00\x00\x14\x00\x00\x00\xe6V\x00\x00\x07\x00\x00\x00\xfbV\x00\x00\x07\x00\x00\x00\x03W\x00\x00-\x00\x00\x00\x0bW\x00\x00d\x00\x00\x009W\x00\x00#\x00\x00\x00\x9eW\x00\x002\x00\x00\x00\xc2W\x00\x003\x00\x00\x00\xf5W\x00\x00\x08\x00\x00\x00)X\x00\x00\t\x00\x00\x002X\x00\x00\x1e\x01\x00\x00<X\x00\x00 \x00\x00\x00[Y\x00\x00\x1d\x00\x00\x00|Y\x00\x00\x05\x00\x00\x00\x9aY\x00\x00\x04\x00\x00\x00\xa0Y\x00\x00\x1a\x00\x00\x00\xa5Y\x00\x00\x10\x00\x00\x00\xc0Y\x00\x00\x06\x00\x00\x00\xd1Y\x00\x00\n\x00\x00\x00\xd8Y\x00\x00\t\x00\x00\x00\xe3Y\x00\x00\t\x00\x00\x00\xedY\x00\x00"\x00\x00\x00\xf7Y\x00\x00\x12\x00\x00\x00\x1aZ\x00\x00\x0f\x00\x00\x00-Z\x00\x00\x0e\x00\x00\x00=Z\x00\x00\x12\x00\x00\x00LZ\x00\x00\n\x00\x00\x00_Z\x00\x00\x10\x00\x00\x00jZ\x00\x00\x15\x00\x00\x00{Z\x00\x00$\x00\x00\x00\x91Z\x00\x00\x0c\x00\x00\x00\xb6Z\x00\x00-\x00\x00\x00\xc3Z\x00\x00\x19\x00\x00\x00\xf1Z\x00\x00\x10\x00\x00\x00\x0b[\x00\x00,\x00\x00\x00\x1c[\x00\x00&\x00\x00\x00I[\x00\x00\x1e\x00\x00\x00p[\x00\x00\x0e\x00\x00\x00\x8f[\x00\x00\x13\x00\x00\x00\x9e[\x00\x00.\x00\x00\x00\xb2[\x00\x00\r\x00\x00\x00\xe1[\x00\x00\x11\x00\x00\x00\xef[\x00\x00(\x00\x00\x00\x01\\\x00\x00\x08\x00\x00\x00*\\\x00\x00\x0b\x00\x00\x003\\\x00\x00\x0c\x00\x00\x00?\\\x00\x00\x14\x00\x00\x00L\\\x00\x00\x11\x00\x00\x00a\\\x00\x00\x15\x00\x00\x00s\\\x00\x00\x0c\x00\x00\x00\x89\\\x00\x00\t\x00\x00\x00\x96\\\x00\x00\t\x00\x00\x00\xa0\\\x00\x00\x07\x00\x00\x00\xaa\\\x00\x00\x13\x00\x00\x00\xb2\\\x00\x00\x12\x00\x00\x00\xc6\\\x00\x00\x1e\x00\x00\x00\xd9\\\x00\x00\x05\x00\x00\x00\xf8\\\x00\x00\n\x00\x00\x00\xfe\\\x00\x00\x10\x00\x00\x00\t]\x00\x00\x0e\x00\x00\x00\x1a]\x00\x00\x19\x00\x00\x00)]\x00\x00\x03\x00\x00\x00C]\x00\x00/\x00\x00\x00G]\x00\x00)\x00\x00\x00w]\x00\x00>\x00\x00\x00\xa1]\x00\x00\x1e\x00\x00\x00\xe0]\x00\x00-\x00\x00\x00\xff]\x00\x00\xa3\x01\x00\x00-^\x00\x00\x8c\x02\x00\x00\xd1_\x00\x00>\x00\x00\x00^b\x00\x00L\x00\x00\x00\x9db\x00\x004\x00\x00\x00\xeab\x00\x00\x90\x00\x00\x00\x1fc\x00\x00\x86\x00\x00\x00\xb0c\x00\x00D\x00\x00\x007d\x00\x00\xcd\x00\x00\x00|d\x00\x00\x7f\x00\x00\x00Je\x00\x00\xcd\x00\x00\x00\xcae\x00\x00\xa4\x01\x00\x00\x98f\x00\x00&\x00\x00\x00=h\x00\x00\x01\x00\x00\x00dh\x00\x00_\x00\x00\x00fh\x00\x00\x16\x00\x00\x00\xc6h\x00\x00\x16\x00\x00\x00\xddh\x00\x00\x0f\x00\x00\x00\xf4h\x00\x00\x18\x00\x00\x00\x04i\x00\x00/\x00\x00\x00\x1di\x00\x007\x00\x00\x00Mi\x00\x00I\x00\x00\x00\x85i\x00\x00;\x00\x00\x00\xcfi\x00\x00\x0f\x00\x00\x00\x0bj\x00\x003\x00\x00\x00\x1bj\x00\x00}\x00\x00\x00Oj\x00\x00\x98\x00\x00\x00\xcdj\x00\x00$\x00\x00\x00fk\x00\x00!\x00\x00\x00\x8bk\x00\x00Q\x00\x00\x00\xadk\x00\x00!\x00\x00\x00\xffk\x00\x00m\x00\x00\x00!l\x00\x00\t\x00\x00\x00\x8fl\x00\x00\x10\x00\x00\x00\x99l\x00\x00\x10\x00\x00\x00\xaal\x00\x00\x05\x00\x00\x00\xbbl\x00\x00\t\x00\x00\x00\xc1l\x00\x00#\x00\x00\x00\xcbl\x00\x00!\x00\x00\x00\xefl\x00\x00\x13\x00\x00\x00\x11m\x00\x00\x05\x00\x00\x00%m\x00\x00\x0f\x00\x00\x00+m\x00\x00\x11\x00\x00\x00;m\x00\x00\x08\x00\x00\x00Mm\x00\x00\x08\x00\x00\x00Vm\x00\x00\x13\x00\x00\x00_m\x00\x00\x1b\x00\x00\x00sm\x00\x00\t\x00\x00\x00\x8fm\x00\x00\x1a\x00\x00\x00\x99m\x00\x00\x07\x00\x00\x00\xb4m\x00\x003\x00\x00\x00\xbcm\x00\x00\x16\x00\x00\x00\xf0m\x00\x00\x07\x00\x00\x00\x07n\x00\x00*\x00\x00\x00\x0fn\x00\x00\x07\x00\x00\x00:n\x00\x007\x00\x00\x00Bn\x00\x00?\x00\x00\x00zn\x00\x00+\x00\x00\x00\xban\x00\x00\x0f\x00\x00\x00\xe6n\x00\x00%\x00\x00\x00\xf6n\x00\x00\x14\x00\x00\x00\x1co\x00\x00/\x00\x00\x001o\x00\x00\x10\x00\x00\x00ao\x00\x00\x13\x00\x00\x00ro\x00\x009\x00\x00\x00\x86o\x00\x00\x1c\x00\x00\x00\xc0o\x00\x00\x1c\x00\x00\x00\xddo\x00\x005\x00\x00\x00\xfao\x00\x00\x1d\x00\x00\x000p\x00\x00g\x00\x00\x00Np\x00\x00-\x00\x00\x00\xb6p\x00\x00\x10\x00\x00\x00\xe4p\x00\x00\x14\x00\x00\x00\xf5p\x00\x00\x11\x00\x00\x00\nq\x00\x00\x1e\x00\x00\x00\x1cq\x00\x00\t\x00\x00\x00;q\x00\x00 \x00\x00\x00Eq\x00\x00\x10\x00\x00\x00fq\x00\x00F\x00\x00\x00wq\x00\x00\x1d\x00\x00\x00\xbeq\x00\x00\x1d\x00\x00\x00\xdcq\x00\x00H\x00\x00\x00\xfaq\x00\x00\x18\x00\x00\x00Cr\x00\x00\x0c\x00\x00\x00\\r\x00\x00#\x00\x00\x00ir\x00\x00\x1b\x00\x00\x00\x8dr\x00\x00&\x00\x00\x00\xa9r\x00\x00J\x00\x00\x00\xd0r\x00\x00\n\x00\x00\x00\x1bs\x00\x00\r\x00\x00\x00&s\x00\x00\t\x00\x00\x004s\x00\x00\x12\x00\x00\x00>s\x00\x00\x13\x00\x00\x00Qs\x00\x00\x11\x00\x00\x00es\x00\x00\x19\x00\x00\x00ws\x00\x00\x0f\x00\x00\x00\x91s\x00\x00#\x00\x00\x00\xa1s\x00\x00W\x00\x00\x00\xc5s\x00\x00\x1c\x00\x00\x00\x1dt\x00\x00e\x00\x00\x00:t\x00\x00\x1d\x00\x00\x00\xa0t\x00\x00"\x00\x00\x00\xbet\x00\x00\n\x00\x00\x00\xe1t\x00\x00\x1f\x00\x00\x00\xect\x00\x00\x04\x00\x00\x00\x0cu\x00\x00B\x00\x00\x00\x11u\x00\x00\x07\x00\x00\x00Tu\x00\x00r\x00\x00\x00\\u\x00\x00\x14\x00\x00\x00\xcfu\x00\x00\x1b\x00\x00\x00\xe4u\x00\x00!\x00\x00\x00\x00v\x00\x00\x10\x00\x00\x00"v\x00\x00\x18\x00\x00\x003v\x00\x00\x12\x00\x00\x00Lv\x00\x00\x01\x00\x00\x00_v\x00\x00\x05\x00\x00\x00av\x00\x00\x19\x00\x00\x00gv\x00\x00\x17\x00\x00\x00\x81v\x00\x00\x19\x00\x00\x00\x99v\x00\x00\x18\x00\x00\x00\xb3v\x00\x00\x1e\x00\x00\x00\xccv\x00\x00\x11\x00\x00\x00\xebv\x00\x00)\x00\x00\x00\xfdv\x00\x00V\x00\x00\x00\'w\x00\x00\x06\x00\x00\x00~w\x00\x00*\x00\x00\x00\x85w\x00\x00\x15\x00\x00\x00\xb0w\x00\x00"\x00\x00\x00\xc6w\x00\x00"\x00\x00\x00\xe9w\x00\x00,\x00\x00\x00\x0cx\x00\x00:\x00\x00\x009x\x00\x00/\x00\x00\x00tx\x00\x00\n\x00\x00\x00\xa4x\x00\x00$\x00\x00\x00\xafx\x00\x00\x0f\x00\x00\x00\xd4x\x00\x00\x06\x00\x00\x00\xe4x\x00\x00$\x00\x00\x00\xebx\x00\x00\x10\x00\x00\x00\x10y\x00\x00!\x00\x00\x00!y\x00\x00\x18\x00\x00\x00Cy\x00\x00\x17\x00\x00\x00\\y\x00\x00\x0c\x00\x00\x00ty\x00\x00\x10\x00\x00\x00\x81y\x00\x00#\x00\x00\x00\x92y\x00\x00\x17\x00\x00\x00\xb6y\x00\x00\x1d\x00\x00\x00\xcey\x00\x00\x07\x00\x00\x00\xecy\x00\x00\x0b\x00\x00\x00\xf4y\x00\x000\x00\x00\x00\x00z\x00\x00\x06\x00\x00\x001z\x00\x00%\x01\x00\x008z\x00\x00]\x00\x00\x00^{\x00\x00.\x00\x00\x00\xbc{\x00\x00\x03\x00\x00\x00\xeb{\x00\x00\x06\x00\x00\x00\xef{\x00\x00\x07\x00\x00\x00\xf6{\x00\x00\x08\x00\x00\x00\xfe{\x00\x004\x00\x00\x00\x07|\x00\x00#\x00\x00\x00<|\x00\x00\x1e\x00\x00\x00`|\x00\x00\n\x00\x00\x00\x7f|\x00\x00\x13\x00\x00\x00\x8a|\x00\x00\x11\x00\x00\x00\x9e|\x00\x00\x06\x00\x00\x00\xb0|\x00\x00\xf1\x01\x00\x00\xb7|\x00\x00\x8f\x00\x00\x00\xa9~\x00\x00o\x00\x00\x009\x7f\x00\x00\x16\x00\x00\x00\xa9\x7f\x00\x00\x12\x00\x00\x00\xc0\x7f\x00\x00\xc7\x00\x00\x00\xd3\x7f\x00\x00*\x00\x00\x00\x9b\x80\x00\x00\x14\x00\x00\x00\xc6\x80\x00\x00)\x00\x00\x00\xdb\x80\x00\x00)\x00\x00\x00\x05\x81\x00\x00@\x00\x00\x00/\x81\x00\x00\x1f\x00\x00\x00p\x81\x00\x00#\x00\x00\x00\x90\x81\x00\x00\x07\x00\x00\x00\xb4\x81\x00\x00"\x00\x00\x00\xbc\x81\x00\x00\t\x00\x00\x00\xdf\x81\x00\x00\t\x00\x00\x00\xe9\x81\x00\x007\x00\x00\x00\xf3\x81\x00\x00\n\x00\x00\x00+\x82\x00\x007\x00\x00\x006\x82\x00\x00\t\x00\x00\x00n\x82\x00\x003\x00\x00\x00x\x82\x00\x009\x00\x00\x00\xac\x82\x00\x00\x0e\x00\x00\x00\xe6\x82\x00\x001\x00\x00\x00\xf5\x82\x00\x00\x10\x00\x00\x00\'\x83\x00\x00\t\x00\x00\x008\x83\x00\x00\x84\x00\x00\x00B\x83\x00\x00\x17\x00\x00\x00\xc7\x83\x00\x00\x04\x00\x00\x00\xdf\x83\x00\x00\n\x00\x00\x00\xe4\x83\x00\x006\x00\x00\x00\xef\x83\x00\x00\x10\x00\x00\x00&\x84\x00\x00\x16\x00\x00\x007\x84\x00\x00\x16\x00\x00\x00N\x84\x00\x00\x16\x00\x00\x00e\x84\x00\x00\x16\x00\x00\x00|\x84\x00\x00\x0c\x00\x00\x00\x93\x84\x00\x00\x1e\x00\x00\x00\xa0\x84\x00\x00\x19\x00\x00\x00\xbf\x84\x00\x00\x03\x00\x00\x00\xd9\x84\x00\x00_\x00\x00\x00\xdd\x84\x00\x00\x18\x00\x00\x00=\x85\x00\x00\x0c\x00\x00\x00V\x85\x00\x00\x07\x00\x00\x00c\x85\x00\x00\x1d\x00\x00\x00k\x85\x00\x00\x1b\x00\x00\x00\x89\x85\x00\x00H\x00\x00\x00\xa5\x85\x00\x00D\x00\x00\x00\xee\x85\x00\x00\x96\x00\x00\x003\x86\x00\x00\x12\x00\x00\x00\xca\x86\x00\x00\x1b\x00\x00\x00\xdd\x86\x00\x00\x1e\x00\x00\x00\xf9\x86\x00\x00J\x00\x00\x00\x18\x87\x00\x00\x1d\x00\x00\x00c\x87\x00\x00\x05\x00\x00\x00\x81\x87\x00\x00<\x00\x00\x00\x87\x87\x00\x00F\x00\x00\x00\xc4\x87\x00\x008\x00\x00\x00\x0b\x88\x00\x00r\x00\x00\x00D\x88\x00\x00H\x00\x00\x00\xb7\x88\x00\x00o\x00\x00\x00\x00\x89\x00\x00T\x00\x00\x00p\x89\x00\x00\x10\x00\x00\x00\xc5\x89\x00\x00\r\x00\x00\x00\xd6\x89\x00\x00\xc0\x00\x00\x00\xe4\x89\x00\x00\x19\x00\x00\x00\xa5\x8a\x00\x00\x0b\x00\x00\x00\xbf\x8a\x00\x00\t\x00\x00\x00\xcb\x8a\x00\x00\n\x00\x00\x00\xd5\x8a\x00\x00"\x00\x00\x00\xe0\x8a\x00\x00"\x00\x00\x00\x03\x8b\x00\x00\x14\x00\x00\x00&\x8b\x00\x00-\x00\x00\x00;\x8b\x00\x00-\x00\x00\x00i\x8b\x00\x002\x00\x00\x00\x97\x8b\x00\x00+\x00\x00\x00\xca\x8b\x00\x008\x00\x00\x00\xf6\x8b\x00\x00\x11\x00\x00\x00/\x8c\x00\x00\x1e\x00\x00\x00A\x8c\x00\x00I\x00\x00\x00`\x8c\x00\x001\x00\x00\x00\xaa\x8c\x00\x00\x94\x00\x00\x00\xdc\x8c\x00\x00N\x00\x00\x00q\x8d\x00\x00 \x00\x00\x00\xc0\x8d\x00\x003\x00\x00\x00\xe1\x8d\x00\x00\x08\x00\x00\x00\x15\x8e\x00\x00\x0c\x00\x00\x00\x1e\x8e\x00\x00\x0c\x00\x00\x00+\x8e\x00\x004\x00\x00\x008\x8e\x00\x00=\x00\x00\x00m\x8e\x00\x00\r\x00\x00\x00\xab\x8e\x00\x00c\x00\x00\x00\xb9\x8e\x00\x00\x8d\x00\x00\x00\x1d\x8f\x00\x00D\x00\x00\x00\xab\x8f\x00\x000\x00\x00\x00\xf0\x8f\x00\x00\x13\x00\x00\x00!\x90\x00\x00\x1b\x00\x00\x005\x90\x00\x00\x1e\x00\x00\x00Q\x90\x00\x00+\x00\x00\x00p\x90\x00\x00\x07\x00\x00\x00\x9c\x90\x00\x00\x11\x00\x00\x00\xa4\x90\x00\x00\r\x00\x00\x00\xb6\x90\x00\x00\x07\x00\x00\x00\xc4\x90\x00\x005\x00\x00\x00\xcc\x90\x00\x00(\x00\x00\x00\x02\x91\x00\x00(\x00\x00\x00+\x91\x00\x00\'\x00\x00\x00T\x91\x00\x00*\x00\x00\x00|\x91\x00\x00\x10\x00\x00\x00\xa7\x91\x00\x00d\x00\x00\x00\xb8\x91\x00\x00\x1a\x00\x00\x00\x1d\x92\x00\x00\x16\x00\x00\x008\x92\x00\x00\x18\x00\x00\x00O\x92\x00\x00\x95\x00\x00\x00h\x92\x00\x00k\x00\x00\x00\xfe\x92\x00\x00;\x00\x00\x00j\x93\x00\x00/\x00\x00\x00\xa6\x93\x00\x00m\x00\x00\x00\xd6\x93\x00\x00\x0f\x00\x00\x00D\x94\x00\x00\x1a\x00\x00\x00T\x94\x00\x00\x1d\x00\x00\x00o\x94\x00\x00\x1c\x00\x00\x00\x8d\x94\x00\x00\x1c\x01\x00\x00\xaa\x94\x00\x00}\x00\x00\x00\xc7\x95\x00\x00\x8e\x00\x00\x00E\x96\x00\x00\xc5\x00\x00\x00\xd4\x96\x00\x00m\x00\x00\x00\x9a\x97\x00\x00e\x01\x00\x00\x08\x98\x00\x00%\x00\x00\x00n\x99\x00\x00\x05\x00\x00\x00\x94\x99\x00\x00\x1f\x00\x00\x00\x9a\x99\x00\x00\x0b\x00\x00\x00\xba\x99\x00\x00\x07\x00\x00\x00\xc6\x99\x00\x00\x10\x00\x00\x00\xce\x99\x00\x00\x1b\x00\x00\x00\xdf\x99\x00\x00\t\x00\x00\x00\xfb\x99\x00\x00\x91\x00\x00\x00\x05\x9a\x00\x00\x04\x00\x00\x00\x97\x9a\x00\x00\t\x00\x00\x00\x9c\x9a\x00\x00<\x00\x00\x00\xa6\x9a\x00\x00l\x00\x00\x00\xe3\x9a\x00\x00\x9e\x00\x00\x00P\x9b\x00\x004\x00\x00\x00\xef\x9b\x00\x00#\x00\x00\x00$\x9c\x00\x00\x91\x00\x00\x00H\x9c\x00\x001\x00\x00\x00\xda\x9c\x00\x00,\x00\x00\x00\x0c\x9d\x00\x00^\x00\x00\x009\x9d\x00\x00s\x00\x00\x00\x98\x9d\x00\x00|\x00\x00\x00\x0c\x9e\x00\x00\x0e\x00\x00\x00\x89\x9e\x00\x00\x08\x00\x00\x00\x98\x9e\x00\x00\x1f\x00\x00\x00\xa1\x9e\x00\x00\x06\x00\x00\x00\xc1\x9e\x00\x007\x00\x00\x00\xc8\x9e\x00\x00!\x00\x00\x00\x00\x9f\x00\x00$\x00\x00\x00"\x9f\x00\x00\r\x00\x00\x00G\x9f\x00\x00\n\x00\x00\x00U\x9f\x00\x00\x1b\x00\x00\x00`\x9f\x00\x00\x0e\x00\x00\x00|\x9f\x00\x00\x12\x00\x00\x00\x8b\x9f\x00\x00\x12\x00\x00\x00\x9e\x9f\x00\x005\x00\x00\x00\xb1\x9f\x00\x00&\x00\x00\x00\xe7\x9f\x00\x00\xb6\x00\x00\x00\x0e\xa0\x00\x00>\x00\x00\x00\xc5\xa0\x00\x00\x13\x00\x00\x00\x04\xa1\x00\x00i\x00\x00\x00\x18\xa1\x00\x00N\x00\x00\x00\x82\xa1\x00\x007\x00\x00\x00\xd1\xa1\x00\x00\x06\x00\x00\x00\t\xa2\x00\x00\x19\x00\x00\x00\x10\xa2\x00\x00\x0c\x00\x00\x00*\xa2\x00\x00\x13\x00\x00\x007\xa2\x00\x00(\x00\x00\x00K\xa2\x00\x00h\x00\x00\x00t\xa2\x00\x001\x00\x00\x00\xdd\xa2\x00\x00:\x00\x00\x00\x0f\xa3\x00\x00/\x00\x00\x00J\xa3\x00\x00\n\x00\x00\x00z\xa3\x00\x00\t\x00\x00\x00\x85\xa3\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 profile\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="-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>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 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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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\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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\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-24 15:10+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:\x00Profil 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="-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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\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\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\x00Profil&titel:\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:\x00Profil-Quellcode (Python)\x00Progressi\xc3\xb3\x00Editorial\x00Valoraci\xc3\xb3\x00Valora aquest llibre: 0-5 estreles\x00El Sony Reader\n%s est\xc3\xa0 disponible\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\x00Feeds aus dem Profil 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.\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\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.\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\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\x93\x01\x00\x00\x1c\x00\x00\x00\xb4\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00L\x19\x00\x00\x0e\x00\x00\x00M\x19\x00\x00!\x00\x00\x00\\\x19\x00\x00\x05\x00\x00\x00~\x19\x00\x00\x06\x00\x00\x00\x84\x19\x00\x00\x17\x00\x00\x00\x8b\x19\x00\x00\x0b\x00\x00\x00\xa3\x19\x00\x00\x04\x00\x00\x00\xaf\x19\x00\x00\x03\x00\x00\x00\xb4\x19\x00\x00\x08\x00\x00\x00\xb8\x19\x00\x00\x06\x00\x00\x00\xc1\x19\x00\x00\x1c\x00\x00\x00\xc8\x19\x00\x00\x0e\x00\x00\x00\xe5\x19\x00\x00\x0c\x00\x00\x00\xf4\x19\x00\x00\t\x00\x00\x00\x01\x1a\x00\x00\t\x00\x00\x00\x0b\x1a\x00\x00\x0c\x00\x00\x00\x15\x1a\x00\x00\x0f\x00\x00\x00"\x1a\x00\x00\x11\x00\x00\x002\x1a\x00\x00\x1a\x00\x00\x00D\x1a\x00\x00\x0c\x00\x00\x00_\x1a\x00\x00\x1d\x00\x00\x00l\x1a\x00\x00\x0f\x00\x00\x00\x8a\x1a\x00\x00\r\x00\x00\x00\x9a\x1a\x00\x00)\x00\x00\x00\xa8\x1a\x00\x00"\x00\x00\x00\xd2\x1a\x00\x00\x18\x00\x00\x00\xf5\x1a\x00\x00\x0b\x00\x00\x00\x0e\x1b\x00\x00\x10\x00\x00\x00\x1a\x1b\x00\x00\x17\x00\x00\x00+\x1b\x00\x00\n\x00\x00\x00C\x1b\x00\x00\x0c\x00\x00\x00N\x1b\x00\x00\x1e\x00\x00\x00[\x1b\x00\x00\t\x00\x00\x00z\x1b\x00\x00\x0c\x00\x00\x00\x84\x1b\x00\x00\x08\x00\x00\x00\x91\x1b\x00\x00\x14\x00\x00\x00\x9a\x1b\x00\x00\x0f\x00\x00\x00\xaf\x1b\x00\x00\r\x00\x00\x00\xbf\x1b\x00\x00\x0e\x00\x00\x00\xcd\x1b\x00\x00\x08\x00\x00\x00\xdc\x1b\x00\x00\x08\x00\x00\x00\xe5\x1b\x00\x00\x07\x00\x00\x00\xee\x1b\x00\x00\x0c\x00\x00\x00\xf6\x1b\x00\x00\x0e\x00\x00\x00\x03\x1c\x00\x00\x12\x00\x00\x00\x12\x1c\x00\x00\x05\x00\x00\x00%\x1c\x00\x00\x08\x00\x00\x00+\x1c\x00\x00\x0c\x00\x00\x004\x1c\x00\x00\n\x00\x00\x00A\x1c\x00\x00\x0e\x00\x00\x00L\x1c\x00\x00\x03\x00\x00\x00[\x1c\x00\x001\x00\x00\x00_\x1c\x00\x00"\x00\x00\x00\x91\x1c\x00\x00=\x00\x00\x00\xb4\x1c\x00\x00\x18\x00\x00\x00\xf2\x1c\x00\x00+\x00\x00\x00\x0b\x1d\x00\x00\xa3\x01\x00\x007\x1d\x00\x00\x82\x02\x00\x00\xdb\x1e\x00\x00>\x00\x00\x00^!\x00\x00S\x00\x00\x00\x9d!\x00\x005\x00\x00\x00\xf1!\x00\x00p\x00\x00\x00\'"\x00\x00a\x00\x00\x00\x98"\x00\x00G\x00\x00\x00\xfa"\x00\x00\xa7\x00\x00\x00B#\x00\x00W\x00\x00\x00\xea#\x00\x00\x96\x00\x00\x00B$\x00\x00=\x01\x00\x00\xd9$\x00\x002\x00\x00\x00\x17&\x00\x00\x01\x00\x00\x00J&\x00\x00\r\x00\x00\x00L&\x00\x00\x0f\x00\x00\x00Z&\x00\x00\x0b\x00\x00\x00j&\x00\x00\x0b\x00\x00\x00v&\x00\x00\x18\x00\x00\x00\x82&\x00\x007\x00\x00\x00\x9b&\x00\x004\x00\x00\x00\xd3&\x00\x00.\x00\x00\x00\x08\'\x00\x00\t\x00\x00\x007\'\x00\x00!\x00\x00\x00A\'\x00\x00b\x00\x00\x00c\'\x00\x00o\x00\x00\x00\xc6\'\x00\x00\x16\x00\x00\x006(\x00\x00\x13\x00\x00\x00M(\x00\x006\x00\x00\x00a(\x00\x00\x13\x00\x00\x00\x98(\x00\x00m\x00\x00\x00\xac(\x00\x00\x08\x00\x00\x00\x1a)\x00\x00\x0f\x00\x00\x00#)\x00\x00\x0f\x00\x00\x003)\x00\x00\x05\x00\x00\x00C)\x00\x00\x03\x00\x00\x00I)\x00\x00\x19\x00\x00\x00M)\x00\x00\x1b\x00\x00\x00g)\x00\x00\x16\x00\x00\x00\x83)\x00\x00\x06\x00\x00\x00\x9a)\x00\x00\x0e\x00\x00\x00\xa1)\x00\x00\r\x00\x00\x00\xb0)\x00\x00\t\x00\x00\x00\xbe)\x00\x00\x08\x00\x00\x00\xc8)\x00\x00\x11\x00\x00\x00\xd1)\x00\x00\x17\x00\x00\x00\xe3)\x00\x00\x04\x00\x00\x00\xfb)\x00\x00\x10\x00\x00\x00\x00*\x00\x00\x05\x00\x00\x00\x11*\x00\x00!\x00\x00\x00\x17*\x00\x00\x10\x00\x00\x009*\x00\x00\x05\x00\x00\x00J*\x00\x00(\x00\x00\x00P*\x00\x00\n\x00\x00\x00y*\x00\x00.\x00\x00\x00\x84*\x00\x005\x00\x00\x00\xb3*\x00\x00$\x00\x00\x00\xe9*\x00\x00\x0c\x00\x00\x00\x0e+\x00\x00\x1a\x00\x00\x00\x1b+\x00\x00\x10\x00\x00\x006+\x00\x00.\x00\x00\x00G+\x00\x00\x0e\x00\x00\x00v+\x00\x00\x0e\x00\x00\x00\x85+\x00\x007\x00\x00\x00\x94+\x00\x00\x14\x00\x00\x00\xcc+\x00\x00\x12\x00\x00\x00\xe1+\x00\x00#\x00\x00\x00\xf4+\x00\x00\x0f\x00\x00\x00\x18,\x00\x00Z\x00\x00\x00(,\x00\x00\x19\x00\x00\x00\x83,\x00\x00\x0b\x00\x00\x00\x9d,\x00\x00\x13\x00\x00\x00\xa9,\x00\x00\x0b\x00\x00\x00\xbd,\x00\x00\x11\x00\x00\x00\xc9,\x00\x00\x08\x00\x00\x00\xdb,\x00\x00\x14\x00\x00\x00\xe4,\x00\x00\x0f\x00\x00\x00\xf9,\x00\x00R\x00\x00\x00\t-\x00\x00!\x00\x00\x00\\-\x00\x00\x1d\x00\x00\x00~-\x00\x00H\x00\x00\x00\x9c-\x00\x00\x11\x00\x00\x00\xe5-\x00\x00\r\x00\x00\x00\xf7-\x00\x00%\x00\x00\x00\x05.\x00\x00\x19\x00\x00\x00+.\x00\x00!\x00\x00\x00E.\x00\x007\x00\x00\x00g.\x00\x00\x08\x00\x00\x00\x9f.\x00\x00\r\x00\x00\x00\xa8.\x00\x00\t\x00\x00\x00\xb6.\x00\x00\x10\x00\x00\x00\xc0.\x00\x00\x11\x00\x00\x00\xd1.\x00\x00\x0f\x00\x00\x00\xe3.\x00\x00\x14\x00\x00\x00\xf3.\x00\x00\x0e\x00\x00\x00\x08/\x00\x00\x1c\x00\x00\x00\x17/\x00\x00;\x00\x00\x004/\x00\x00\x15\x00\x00\x00p/\x00\x00R\x00\x00\x00\x86/\x00\x00\x17\x00\x00\x00\xd9/\x00\x00\x18\x00\x00\x00\xf1/\x00\x00\x0b\x00\x00\x00\n0\x00\x00\x13\x00\x00\x00\x160\x00\x00\x04\x00\x00\x00*0\x00\x00\x19\x00\x00\x00/0\x00\x00\x03\x00\x00\x00I0\x00\x00h\x00\x00\x00M0\x00\x00\x0e\x00\x00\x00\xb60\x00\x00\x1b\x00\x00\x00\xc50\x00\x00\x1a\x00\x00\x00\xe10\x00\x00\x11\x00\x00\x00\xfc0\x00\x00\x19\x00\x00\x00\x0e1\x00\x00\x11\x00\x00\x00(1\x00\x00\x01\x00\x00\x00:1\x00\x00\x05\x00\x00\x00<1\x00\x00\x15\x00\x00\x00B1\x00\x00\x15\x00\x00\x00X1\x00\x00\x15\x00\x00\x00n1\x00\x00\x15\x00\x00\x00\x841\x00\x00\x1a\x00\x00\x00\x9a1\x00\x00\x0e\x00\x00\x00\xb51\x00\x00\x1f\x00\x00\x00\xc41\x00\x00C\x00\x00\x00\xe41\x00\x00\x05\x00\x00\x00(2\x00\x00\x1f\x00\x00\x00.2\x00\x00\x12\x00\x00\x00N2\x00\x00\x17\x00\x00\x00a2\x00\x00\x1f\x00\x00\x00y2\x00\x00\'\x00\x00\x00\x992\x00\x003\x00\x00\x00\xc12\x00\x00*\x00\x00\x00\xf52\x00\x00\n\x00\x00\x00 3\x00\x00\x16\x00\x00\x00+3\x00\x00\x10\x00\x00\x00B3\x00\x00\x05\x00\x00\x00S3\x00\x00\x1d\x00\x00\x00Y3\x00\x00\x0e\x00\x00\x00w3\x00\x00\x1a\x00\x00\x00\x863\x00\x00\n\x00\x00\x00\xa13\x00\x00\x10\x00\x00\x00\xac3\x00\x00\r\x00\x00\x00\xbd3\x00\x00\x11\x00\x00\x00\xcb3\x00\x00\x1f\x00\x00\x00\xdd3\x00\x00\x13\x00\x00\x00\xfd3\x00\x00\x1b\x00\x00\x00\x114\x00\x00\x05\x00\x00\x00-4\x00\x00\x0b\x00\x00\x0034\x00\x008\x00\x00\x00?4\x00\x00\x08\x00\x00\x00x4\x00\x00\x1d\x01\x00\x00\x814\x00\x00J\x00\x00\x00\x9f5\x00\x00#\x00\x00\x00\xea5\x00\x00\x04\x00\x00\x00\x0e6\x00\x00\x06\x00\x00\x00\x136\x00\x00\x07\x00\x00\x00\x1a6\x00\x00\x07\x00\x00\x00"6\x00\x00\'\x00\x00\x00*6\x00\x00\x1b\x00\x00\x00R6\x00\x00\x19\x00\x00\x00n6\x00\x00\x06\x00\x00\x00\x886\x00\x00\x0c\x00\x00\x00\x8f6\x00\x00\t\x00\x00\x00\x9c6\x00\x00\x06\x00\x00\x00\xa66\x00\x00\xdc\x01\x00\x00\xad6\x00\x00n\x00\x00\x00\x8a8\x00\x00a\x00\x00\x00\xf98\x00\x00\x0e\x00\x00\x00[9\x00\x00\x0e\x00\x00\x00j9\x00\x00\xa8\x00\x00\x00y9\x00\x00&\x00\x00\x00":\x00\x00\x10\x00\x00\x00I:\x00\x00\x19\x00\x00\x00Z:\x00\x00\x1a\x00\x00\x00t:\x00\x00.\x00\x00\x00\x8f:\x00\x00\x1a\x00\x00\x00\xbe:\x00\x00\x1e\x00\x00\x00\xd9:\x00\x00\x03\x00\x00\x00\xf8:\x00\x00\x12\x00\x00\x00\xfc:\x00\x00\x05\x00\x00\x00\x0f;\x00\x00\n\x00\x00\x00\x15;\x00\x00,\x00\x00\x00 ;\x00\x00\x07\x00\x00\x00M;\x00\x00-\x00\x00\x00U;\x00\x00\x0b\x00\x00\x00\x83;\x00\x00$\x00\x00\x00\x8f;\x00\x00$\x00\x00\x00\xb4;\x00\x00\x07\x00\x00\x00\xd9;\x00\x000\x00\x00\x00\xe1;\x00\x00\x10\x00\x00\x00\x12<\x00\x00\x08\x00\x00\x00#<\x00\x00y\x00\x00\x00,<\x00\x00\x10\x00\x00\x00\xa6<\x00\x00\x04\x00\x00\x00\xb7<\x00\x00\x06\x00\x00\x00\xbc<\x00\x00"\x00\x00\x00\xc3<\x00\x00\t\x00\x00\x00\xe6<\x00\x00\n\x00\x00\x00\xf0<\x00\x00\x14\x00\x00\x00\xfb<\x00\x00\x10\x00\x00\x00\x10=\x00\x00\x11\x00\x00\x00!=\x00\x00\x08\x00\x00\x003=\x00\x00\x10\x00\x00\x00<=\x00\x00\x12\x00\x00\x00M=\x00\x00\x04\x00\x00\x00`=\x00\x00^\x00\x00\x00e=\x00\x00\x0f\x00\x00\x00\xc4=\x00\x00\n\x00\x00\x00\xd4=\x00\x00\x07\x00\x00\x00\xdf=\x00\x00-\x00\x00\x00\xe7=\x00\x00+\x00\x00\x00\x15>\x00\x00F\x00\x00\x00A>\x00\x008\x00\x00\x00\x88>\x00\x00s\x00\x00\x00\xc1>\x00\x00\x0f\x00\x00\x005?\x00\x00\n\x00\x00\x00E?\x00\x00\x10\x00\x00\x00P?\x00\x00:\x00\x00\x00a?\x00\x00\x0f\x00\x00\x00\x9c?\x00\x00\x04\x00\x00\x00\xac?\x00\x00;\x00\x00\x00\xb1?\x00\x00G\x00\x00\x00\xed?\x00\x001\x00\x00\x005@\x00\x00Y\x00\x00\x00g@\x00\x004\x00\x00\x00\xc1@\x00\x00\x80\x00\x00\x00\xf6@\x00\x00H\x00\x00\x00wA\x00\x00\r\x00\x00\x00\xc0A\x00\x00\x0f\x00\x00\x00\xceA\x00\x00\xbc\x00\x00\x00\xdeA\x00\x00\x1c\x00\x00\x00\x9bB\x00\x00\x08\x00\x00\x00\xb8B\x00\x00\t\x00\x00\x00\xc1B\x00\x00\x06\x00\x00\x00\xcbB\x00\x00\x1e\x00\x00\x00\xd2B\x00\x00\x13\x00\x00\x00\xf1B\x00\x00\x13\x00\x00\x00\x05C\x00\x00+\x00\x00\x00\x19C\x00\x00*\x00\x00\x00EC\x00\x000\x00\x00\x00pC\x00\x00)\x00\x00\x00\xa1C\x00\x00<\x00\x00\x00\xcbC\x00\x00\x0c\x00\x00\x00\x08D\x00\x00\x18\x00\x00\x00\x15D\x00\x00<\x00\x00\x00.D\x00\x000\x00\x00\x00kD\x00\x00\x84\x00\x00\x00\x9cD\x00\x00X\x00\x00\x00!E\x00\x00\x12\x00\x00\x00zE\x00\x00-\x00\x00\x00\x8dE\x00\x00\x0c\x00\x00\x00\xbbE\x00\x00\x0c\x00\x00\x00\xc8E\x00\x00\x0c\x00\x00\x00\xd5E\x00\x00"\x00\x00\x00\xe2E\x00\x009\x00\x00\x00\x05F\x00\x00\x0f\x00\x00\x00?F\x00\x00V\x00\x00\x00OF\x00\x00r\x00\x00\x00\xa6F\x00\x00G\x00\x00\x00\x19G\x00\x00\'\x00\x00\x00aG\x00\x00\x0e\x00\x00\x00\x89G\x00\x00\x13\x00\x00\x00\x98G\x00\x00\x14\x00\x00\x00\xacG\x00\x00#\x00\x00\x00\xc1G\x00\x00\x06\x00\x00\x00\xe5G\x00\x00\r\x00\x00\x00\xecG\x00\x00\r\x00\x00\x00\xfaG\x00\x00\x07\x00\x00\x00\x08H\x00\x00\x1e\x00\x00\x00\x10H\x00\x00\x0b\x00\x00\x00/H\x00\x00\x17\x00\x00\x00;H\x00\x00\x1b\x00\x00\x00SH\x00\x00\x1a\x00\x00\x00oH\x00\x00\x0e\x00\x00\x00\x8aH\x00\x00^\x00\x00\x00\x99H\x00\x00\x12\x00\x00\x00\xf8H\x00\x00\x10\x00\x00\x00\x0bI\x00\x00\x10\x00\x00\x00\x1cI\x00\x00g\x00\x00\x00-I\x00\x00c\x00\x00\x00\x95I\x00\x007\x00\x00\x00\xf9I\x00\x00!\x00\x00\x001J\x00\x00d\x00\x00\x00SJ\x00\x00\t\x00\x00\x00\xb8J\x00\x00\x17\x00\x00\x00\xc2J\x00\x00\x16\x00\x00\x00\xdaJ\x00\x00\x11\x00\x00\x00\xf1J\x00\x00\x04\x01\x00\x00\x03K\x00\x00z\x00\x00\x00\x08L\x00\x00\x85\x00\x00\x00\x83L\x00\x00\xb6\x00\x00\x00\tM\x00\x00P\x00\x00\x00\xc0M\x00\x00+\x01\x00\x00\x11N\x00\x00#\x00\x00\x00=O\x00\x00\x06\x00\x00\x00aO\x00\x00\x17\x00\x00\x00hO\x00\x00\x07\x00\x00\x00\x80O\x00\x00\x03\x00\x00\x00\x88O\x00\x00\n\x00\x00\x00\x8cO\x00\x00\x13\x00\x00\x00\x97O\x00\x00\x04\x00\x00\x00\xabO\x00\x00\x85\x00\x00\x00\xb0O\x00\x00\x04\x00\x00\x006P\x00\x00\t\x00\x00\x00;P\x00\x000\x00\x00\x00EP\x00\x00X\x00\x00\x00vP\x00\x00\x9d\x00\x00\x00\xcfP\x00\x00&\x00\x00\x00mQ\x00\x00\x1e\x00\x00\x00\x94Q\x00\x00v\x00\x00\x00\xb3Q\x00\x00\'\x00\x00\x00*R\x00\x00"\x00\x00\x00RR\x00\x00B\x00\x00\x00uR\x00\x00^\x00\x00\x00\xb8R\x00\x00h\x00\x00\x00\x17S\x00\x00\t\x00\x00\x00\x80S\x00\x00\x05\x00\x00\x00\x8aS\x00\x00\x15\x00\x00\x00\x90S\x00\x00\x06\x00\x00\x00\xa6S\x00\x00+\x00\x00\x00\xadS\x00\x00\x1b\x00\x00\x00\xd9S\x00\x00&\x00\x00\x00\xf5S\x00\x00\x0b\x00\x00\x00\x1cT\x00\x00\x07\x00\x00\x00(T\x00\x00\x13\x00\x00\x000T\x00\x00\x0c\x00\x00\x00DT\x00\x00\x10\x00\x00\x00QT\x00\x00\x10\x00\x00\x00bT\x00\x00%\x00\x00\x00sT\x00\x00\x1b\x00\x00\x00\x99T\x00\x00\xb4\x00\x00\x00\xb5T\x00\x002\x00\x00\x00jU\x00\x00\x14\x00\x00\x00\x9dU\x00\x00_\x00\x00\x00\xb2U\x00\x00:\x00\x00\x00\x12V\x00\x00*\x00\x00\x00MV\x00\x00\x04\x00\x00\x00xV\x00\x00\x14\x00\x00\x00}V\x00\x00\x07\x00\x00\x00\x92V\x00\x00\x07\x00\x00\x00\x9aV\x00\x00-\x00\x00\x00\xa2V\x00\x00d\x00\x00\x00\xd0V\x00\x00#\x00\x00\x005W\x00\x002\x00\x00\x00YW\x00\x003\x00\x00\x00\x8cW\x00\x00\x08\x00\x00\x00\xc0W\x00\x00\t\x00\x00\x00\xc9W\x00\x008\x01\x00\x00\xd3W\x00\x00 \x00\x00\x00\x0cY\x00\x00\x1d\x00\x00\x00-Y\x00\x00\x05\x00\x00\x00KY\x00\x00\x04\x00\x00\x00QY\x00\x00\x18\x00\x00\x00VY\x00\x00\x10\x00\x00\x00oY\x00\x00\x06\x00\x00\x00\x80Y\x00\x00\x06\x00\x00\x00\x87Y\x00\x00\t\x00\x00\x00\x8eY\x00\x00\x07\x00\x00\x00\x98Y\x00\x00"\x00\x00\x00\xa0Y\x00\x00\x12\x00\x00\x00\xc3Y\x00\x00\x14\x00\x00\x00\xd6Y\x00\x00\x0e\x00\x00\x00\xebY\x00\x00\x12\x00\x00\x00\xfaY\x00\x00\x07\x00\x00\x00\rZ\x00\x00\x0e\x00\x00\x00\x15Z\x00\x00\x15\x00\x00\x00$Z\x00\x00 \x00\x00\x00:Z\x00\x00\x0c\x00\x00\x00[Z\x00\x00%\x00\x00\x00hZ\x00\x00\x12\x00\x00\x00\x8eZ\x00\x00\r\x00\x00\x00\xa1Z\x00\x00/\x00\x00\x00\xafZ\x00\x00&\x00\x00\x00\xdfZ\x00\x00\x1e\x00\x00\x00\x06[\x00\x00\x0b\x00\x00\x00%[\x00\x00\x13\x00\x00\x001[\x00\x00\x1b\x00\x00\x00E[\x00\x00\n\x00\x00\x00a[\x00\x00\x0f\x00\x00\x00l[\x00\x00(\x00\x00\x00|[\x00\x00\x08\x00\x00\x00\xa5[\x00\x00\r\x00\x00\x00\xae[\x00\x00\x0b\x00\x00\x00\xbc[\x00\x00\x15\x00\x00\x00\xc8[\x00\x00\x11\x00\x00\x00\xde[\x00\x00\x15\x00\x00\x00\xf0[\x00\x00\x0e\x00\x00\x00\x06\\\x00\x00\x07\x00\x00\x00\x15\\\x00\x00\x08\x00\x00\x00\x1d\\\x00\x00\x07\x00\x00\x00&\\\x00\x00\x13\x00\x00\x00.\\\x00\x00\x12\x00\x00\x00B\\\x00\x00\x1e\x00\x00\x00U\\\x00\x00\x05\x00\x00\x00t\\\x00\x00\x07\x00\x00\x00z\\\x00\x00\r\x00\x00\x00\x82\\\x00\x00\x0e\x00\x00\x00\x90\\\x00\x00\r\x00\x00\x00\x9f\\\x00\x00\x03\x00\x00\x00\xad\\\x00\x008\x00\x00\x00\xb1\\\x00\x00-\x00\x00\x00\xea\\\x00\x00;\x00\x00\x00\x18]\x00\x00\x1e\x00\x00\x00T]\x00\x000\x00\x00\x00s]\x00\x00\xa3\x01\x00\x00\xa4]\x00\x00\x8c\x02\x00\x00H_\x00\x00>\x00\x00\x00\xd5a\x00\x00X\x00\x00\x00\x14b\x00\x006\x00\x00\x00mb\x00\x00\x90\x00\x00\x00\xa4b\x00\x00\x86\x00\x00\x005c\x00\x00`\x00\x00\x00\xbcc\x00\x00\xcd\x00\x00\x00\x1dd\x00\x00\x7f\x00\x00\x00\xebd\x00\x00\xcd\x00\x00\x00ke\x00\x00\xa4\x01\x00\x009f\x00\x00<\x00\x00\x00\xdeg\x00\x00\x01\x00\x00\x00\x1bh\x00\x00\x16\x00\x00\x00\x1dh\x00\x00\x16\x00\x00\x004h\x00\x00\x10\x00\x00\x00Kh\x00\x00\x18\x00\x00\x00\\h\x00\x00/\x00\x00\x00uh\x00\x00I\x00\x00\x00\xa5h\x00\x00?\x00\x00\x00\xefh\x00\x00;\x00\x00\x00/i\x00\x00\x13\x00\x00\x00ki\x00\x003\x00\x00\x00\x7fi\x00\x00}\x00\x00\x00\xb3i\x00\x00\x98\x00\x00\x001j\x00\x00$\x00\x00\x00\xcaj\x00\x00!\x00\x00\x00\xefj\x00\x00Q\x00\x00\x00\x11k\x00\x00!\x00\x00\x00ck\x00\x00e\x00\x00\x00\x85k\x00\x00\t\x00\x00\x00\xebk\x00\x00\x10\x00\x00\x00\xf5k\x00\x00\x10\x00\x00\x00\x06l\x00\x00\x05\x00\x00\x00\x17l\x00\x00\t\x00\x00\x00\x1dl\x00\x00#\x00\x00\x00\'l\x00\x00!\x00\x00\x00Kl\x00\x00\x13\x00\x00\x00ml\x00\x00\x05\x00\x00\x00\x81l\x00\x00\x17\x00\x00\x00\x87l\x00\x00\x17\x00\x00\x00\x9fl\x00\x00\t\x00\x00\x00\xb7l\x00\x00\x08\x00\x00\x00\xc1l\x00\x00\x13\x00\x00\x00\xcal\x00\x00\x1b\x00\x00\x00\xdel\x00\x00\x07\x00\x00\x00\xfal\x00\x00\x18\x00\x00\x00\x02m\x00\x00\x07\x00\x00\x00\x1bm\x00\x003\x00\x00\x00#m\x00\x00\x16\x00\x00\x00Wm\x00\x00\x04\x00\x00\x00nm\x00\x00)\x00\x00\x00sm\x00\x00\x0c\x00\x00\x00\x9dm\x00\x00>\x00\x00\x00\xaam\x00\x00 \x00\x00\x00\xe9m\x00\x00)\x00\x00\x00\nn\x00\x00\x17\x00\x00\x004n\x00\x00%\x00\x00\x00Ln\x00\x00\x1c\x00\x00\x00rn\x00\x00D\x00\x00\x00\x8fn\x00\x00\x19\x00\x00\x00\xd4n\x00\x00\x1c\x00\x00\x00\xeen\x00\x00R\x00\x00\x00\x0bo\x00\x00\x1f\x00\x00\x00^o\x00\x00\x1e\x00\x00\x00~o\x00\x005\x00\x00\x00\x9do\x00\x00\x1d\x00\x00\x00\xd3o\x00\x00g\x00\x00\x00\xf1o\x00\x00-\x00\x00\x00Yp\x00\x00\x14\x00\x00\x00\x87p\x00\x00\'\x00\x00\x00\x9cp\x00\x00\x16\x00\x00\x00\xc4p\x00\x00\x13\x00\x00\x00\xdbp\x00\x00\t\x00\x00\x00\xefp\x00\x00\x16\x00\x00\x00\xf9p\x00\x00\x10\x00\x00\x00\x10q\x00\x00R\x00\x00\x00!q\x00\x00!\x00\x00\x00tq\x00\x00\x1b\x00\x00\x00\x96q\x00\x00H\x00\x00\x00\xb2q\x00\x00\x16\x00\x00\x00\xfbq\x00\x00\x0e\x00\x00\x00\x12r\x00\x00:\x00\x00\x00!r\x00\x00\x1b\x00\x00\x00\\r\x00\x00&\x00\x00\x00xr\x00\x00J\x00\x00\x00\x9fr\x00\x00\t\x00\x00\x00\xear\x00\x00\r\x00\x00\x00\xf4r\x00\x00\r\x00\x00\x00\x02s\x00\x00\x15\x00\x00\x00\x10s\x00\x00\x15\x00\x00\x00&s\x00\x00\x13\x00\x00\x00<s\x00\x00\x14\x00\x00\x00Ps\x00\x00\x13\x00\x00\x00es\x00\x00#\x00\x00\x00ys\x00\x00W\x00\x00\x00\x9ds\x00\x00 \x00\x00\x00\xf5s\x00\x00e\x00\x00\x00\x16t\x00\x00"\x00\x00\x00|t\x00\x00"\x00\x00\x00\x9ft\x00\x00\r\x00\x00\x00\xc2t\x00\x00\x1f\x00\x00\x00\xd0t\x00\x00\x05\x00\x00\x00\xf0t\x00\x00B\x00\x00\x00\xf6t\x00\x00\x08\x00\x00\x009u\x00\x00r\x00\x00\x00Bu\x00\x00\x14\x00\x00\x00\xb5u\x00\x00\x1f\x00\x00\x00\xcau\x00\x00!\x00\x00\x00\xeau\x00\x00\x10\x00\x00\x00\x0cv\x00\x00\x18\x00\x00\x00\x1dv\x00\x00\x12\x00\x00\x006v\x00\x00\x01\x00\x00\x00Iv\x00\x00\x06\x00\x00\x00Kv\x00\x00\x1d\x00\x00\x00Rv\x00\x00\x1d\x00\x00\x00pv\x00\x00\x1c\x00\x00\x00\x8ev\x00\x00 \x00\x00\x00\xabv\x00\x00\x1d\x00\x00\x00\xccv\x00\x00\x16\x00\x00\x00\xeav\x00\x00.\x00\x00\x00\x01w\x00\x00M\x00\x00\x000w\x00\x00\x06\x00\x00\x00~w\x00\x00+\x00\x00\x00\x85w\x00\x00\x1b\x00\x00\x00\xb1w\x00\x00&\x00\x00\x00\xcdw\x00\x00#\x00\x00\x00\xf4w\x00\x00,\x00\x00\x00\x18x\x00\x00:\x00\x00\x00Ex\x00\x00/\x00\x00\x00\x80x\x00\x00\n\x00\x00\x00\xb0x\x00\x00$\x00\x00\x00\xbbx\x00\x00\x0f\x00\x00\x00\xe0x\x00\x00\x07\x00\x00\x00\xf0x\x00\x00\x1f\x00\x00\x00\xf8x\x00\x00\x12\x00\x00\x00\x18y\x00\x00\x1d\x00\x00\x00+y\x00\x00\x13\x00\x00\x00Iy\x00\x00\x17\x00\x00\x00]y\x00\x00\x0c\x00\x00\x00uy\x00\x00\x10\x00\x00\x00\x82y\x00\x00!\x00\x00\x00\x93y\x00\x00\x17\x00\x00\x00\xb5y\x00\x00\x1d\x00\x00\x00\xcdy\x00\x00\x07\x00\x00\x00\xeby\x00\x00\x0b\x00\x00\x00\xf3y\x00\x00D\x00\x00\x00\xffy\x00\x00\x06\x00\x00\x00Dz\x00\x004\x01\x00\x00Kz\x00\x00[\x00\x00\x00\x80{\x00\x00&\x00\x00\x00\xdc{\x00\x00\x03\x00\x00\x00\x03|\x00\x00\x06\x00\x00\x00\x07|\x00\x00\x07\x00\x00\x00\x0e|\x00\x00\x06\x00\x00\x00\x16|\x00\x004\x00\x00\x00\x1d|\x00\x00\x1e\x00\x00\x00R|\x00\x00\x1e\x00\x00\x00q|\x00\x00\t\x00\x00\x00\x90|\x00\x00\x1f\x00\x00\x00\x9a|\x00\x00\x18\x00\x00\x00\xba|\x00\x00\x06\x00\x00\x00\xd3|\x00\x00:\x02\x00\x00\xda|\x00\x00\x8f\x00\x00\x00\x15\x7f\x00\x00\x82\x00\x00\x00\xa5\x7f\x00\x00\x16\x00\x00\x00(\x80\x00\x00\x14\x00\x00\x00?\x80\x00\x00\xcc\x00\x00\x00T\x80\x00\x00*\x00\x00\x00!\x81\x00\x00\x14\x00\x00\x00L\x81\x00\x00"\x00\x00\x00a\x81\x00\x00"\x00\x00\x00\x84\x81\x00\x00?\x00\x00\x00\xa7\x81\x00\x00\x1f\x00\x00\x00\xe7\x81\x00\x00#\x00\x00\x00\x07\x82\x00\x00\x07\x00\x00\x00+\x82\x00\x00"\x00\x00\x003\x82\x00\x00\n\x00\x00\x00V\x82\x00\x00\n\x00\x00\x00a\x82\x00\x00=\x00\x00\x00l\x82\x00\x00\n\x00\x00\x00\xaa\x82\x00\x00@\x00\x00\x00\xb5\x82\x00\x00\x0b\x00\x00\x00\xf6\x82\x00\x003\x00\x00\x00\x02\x83\x00\x009\x00\x00\x006\x83\x00\x00\x07\x00\x00\x00p\x83\x00\x001\x00\x00\x00x\x83\x00\x00\x12\x00\x00\x00\xaa\x83\x00\x00\n\x00\x00\x00\xbd\x83\x00\x00\xa4\x00\x00\x00\xc8\x83\x00\x00\x17\x00\x00\x00m\x84\x00\x00\x04\x00\x00\x00\x85\x84\x00\x00\n\x00\x00\x00\x8a\x84\x00\x006\x00\x00\x00\x95\x84\x00\x00\x0e\x00\x00\x00\xcc\x84\x00\x00\x11\x00\x00\x00\xdb\x84\x00\x00\x1a\x00\x00\x00\xed\x84\x00\x00\x15\x00\x00\x00\x08\x85\x00\x00\x19\x00\x00\x00\x1e\x85\x00\x00\x0c\x00\x00\x008\x85\x00\x00\x16\x00\x00\x00E\x85\x00\x00\x14\x00\x00\x00\\\x85\x00\x00\x05\x00\x00\x00q\x85\x00\x00_\x00\x00\x00w\x85\x00\x00\x18\x00\x00\x00\xd7\x85\x00\x00\r\x00\x00\x00\xf0\x85\x00\x00\x15\x00\x00\x00\xfe\x85\x00\x00\x1d\x00\x00\x00\x14\x86\x00\x00\x1b\x00\x00\x002\x86\x00\x00H\x00\x00\x00N\x86\x00\x00S\x00\x00\x00\x97\x86\x00\x00\x92\x00\x00\x00\xeb\x86\x00\x00\x15\x00\x00\x00~\x87\x00\x00\x11\x00\x00\x00\x94\x87\x00\x00\x14\x00\x00\x00\xa6\x87\x00\x00J\x00\x00\x00\xbb\x87\x00\x00\x15\x00\x00\x00\x06\x88\x00\x00\x04\x00\x00\x00\x1c\x88\x00\x00O\x00\x00\x00!\x88\x00\x00V\x00\x00\x00q\x88\x00\x00"\x00\x00\x00\xc8\x88\x00\x00r\x00\x00\x00\xeb\x88\x00\x00J\x00\x00\x00^\x89\x00\x00\x97\x00\x00\x00\xa9\x89\x00\x00Q\x00\x00\x00A\x8a\x00\x00\x0f\x00\x00\x00\x93\x8a\x00\x00\r\x00\x00\x00\xa3\x8a\x00\x00\xc6\x00\x00\x00\xb1\x8a\x00\x00\x19\x00\x00\x00x\x8b\x00\x00\x0b\x00\x00\x00\x92\x8b\x00\x00\x0b\x00\x00\x00\x9e\x8b\x00\x00\t\x00\x00\x00\xaa\x8b\x00\x00#\x00\x00\x00\xb4\x8b\x00\x00\x14\x00\x00\x00\xd8\x8b\x00\x00\x14\x00\x00\x00\xed\x8b\x00\x00-\x00\x00\x00\x02\x8c\x00\x00-\x00\x00\x000\x8c\x00\x002\x00\x00\x00^\x8c\x00\x00+\x00\x00\x00\x91\x8c\x00\x00K\x00\x00\x00\xbd\x8c\x00\x00\x11\x00\x00\x00\t\x8d\x00\x00\x1e\x00\x00\x00\x1b\x8d\x00\x00:\x00\x00\x00:\x8d\x00\x001\x00\x00\x00u\x8d\x00\x00\x92\x00\x00\x00\xa7\x8d\x00\x00N\x00\x00\x00:\x8e\x00\x00\x15\x00\x00\x00\x89\x8e\x00\x00>\x00\x00\x00\x9f\x8e\x00\x00\x08\x00\x00\x00\xde\x8e\x00\x00\x0c\x00\x00\x00\xe7\x8e\x00\x00\x0e\x00\x00\x00\xf4\x8e\x00\x004\x00\x00\x00\x03\x8f\x00\x00=\x00\x00\x008\x8f\x00\x00\r\x00\x00\x00v\x8f\x00\x00z\x00\x00\x00\x84\x8f\x00\x00\x9e\x00\x00\x00\xff\x8f\x00\x00P\x00\x00\x00\x9e\x90\x00\x000\x00\x00\x00\xef\x90\x00\x00\x15\x00\x00\x00 \x91\x00\x00\x17\x00\x00\x006\x91\x00\x00\x17\x00\x00\x00N\x91\x00\x00%\x00\x00\x00f\x91\x00\x00\x05\x00\x00\x00\x8c\x91\x00\x00\x11\x00\x00\x00\x92\x91\x00\x00\r\x00\x00\x00\xa4\x91\x00\x00\x07\x00\x00\x00\xb2\x91\x00\x005\x00\x00\x00\xba\x91\x00\x00\x18\x00\x00\x00\xf0\x91\x00\x00*\x00\x00\x00\t\x92\x00\x00\x15\x00\x00\x004\x92\x00\x00\x15\x00\x00\x00J\x92\x00\x00\x16\x00\x00\x00`\x92\x00\x00q\x00\x00\x00w\x92\x00\x00\x1a\x00\x00\x00\xe9\x92\x00\x00\x1c\x00\x00\x00\x04\x93\x00\x00\x1c\x00\x00\x00!\x93\x00\x00\x95\x00\x00\x00>\x93\x00\x00}\x00\x00\x00\xd4\x93\x00\x00]\x00\x00\x00R\x94\x00\x002\x00\x00\x00\xb0\x94\x00\x00v\x00\x00\x00\xe3\x94\x00\x00\x0c\x00\x00\x00Z\x95\x00\x00\x15\x00\x00\x00g\x95\x00\x00\x15\x00\x00\x00}\x95\x00\x00\x1c\x00\x00\x00\x93\x95\x00\x00\x1c\x01\x00\x00\xb0\x95\x00\x00v\x00\x00\x00\xcd\x96\x00\x00\x9f\x00\x00\x00D\x97\x00\x00\n\x01\x00\x00\xe4\x97\x00\x00R\x00\x00\x00\xef\x98\x00\x00\x8f\x01\x00\x00B\x99\x00\x00%\x00\x00\x00\xd2\x9a\x00\x00\x06\x00\x00\x00\xf8\x9a\x00\x00\x1f\x00\x00\x00\xff\x9a\x00\x00\x0b\x00\x00\x00\x1f\x9b\x00\x00\x07\x00\x00\x00+\x9b\x00\x00\x10\x00\x00\x003\x9b\x00\x00#\x00\x00\x00D\x9b\x00\x00\t\x00\x00\x00h\x9b\x00\x00\xab\x00\x00\x00r\x9b\x00\x00\x04\x00\x00\x00\x1e\x9c\x00\x00\t\x00\x00\x00#\x9c\x00\x003\x00\x00\x00-\x9c\x00\x00l\x00\x00\x00a\x9c\x00\x00\xb9\x00\x00\x00\xce\x9c\x00\x00.\x00\x00\x00\x88\x9d\x00\x00#\x00\x00\x00\xb7\x9d\x00\x00\x99\x00\x00\x00\xdb\x9d\x00\x00\'\x00\x00\x00u\x9e\x00\x00"\x00\x00\x00\x9d\x9e\x00\x00^\x00\x00\x00\xc0\x9e\x00\x00s\x00\x00\x00\x1f\x9f\x00\x00\x8f\x00\x00\x00\x93\x9f\x00\x00\x0b\x00\x00\x00#\xa0\x00\x00\x05\x00\x00\x00/\xa0\x00\x00\x1f\x00\x00\x005\xa0\x00\x00\x06\x00\x00\x00U\xa0\x00\x00=\x00\x00\x00\\\xa0\x00\x00!\x00\x00\x00\x9a\xa0\x00\x00$\x00\x00\x00\xbc\xa0\x00\x00\x10\x00\x00\x00\xe1\xa0\x00\x00\t\x00\x00\x00\xf2\xa0\x00\x00\x1b\x00\x00\x00\xfc\xa0\x00\x00\x0e\x00\x00\x00\x18\xa1\x00\x00\x12\x00\x00\x00\'\xa1\x00\x00\x12\x00\x00\x00:\xa1\x00\x005\x00\x00\x00M\xa1\x00\x00&\x00\x00\x00\x83\xa1\x00\x00\xe2\x00\x00\x00\xaa\xa1\x00\x00B\x00\x00\x00\x8d\xa2\x00\x00\x1d\x00\x00\x00\xd0\xa2\x00\x00i\x00\x00\x00\xee\xa2\x00\x00N\x00\x00\x00X\xa3\x00\x007\x00\x00\x00\xa7\xa3\x00\x00\x08\x00\x00\x00\xdf\xa3\x00\x00\x19\x00\x00\x00\xe8\xa3\x00\x00\x1b\x00\x00\x00\x02\xa4\x00\x00\x11\x00\x00\x00\x1e\xa4\x00\x00=\x00\x00\x000\xa4\x00\x00\x92\x00\x00\x00n\xa4\x00\x001\x00\x00\x00\x01\xa5\x00\x00R\x00\x00\x003\xa5\x00\x00.\x00\x00\x00\x86\xa5\x00\x00\n\x00\x00\x00\xb5\xa5\x00\x00\t\x00\x00\x00\xc0\xa5\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 profile\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="-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>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&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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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\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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\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-24 15:10+PDT\nPO-Revision-Date: 2008-03-21 11:00+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:\x00Profil 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="-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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\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\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&titel:\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:\x00Profil-Quellcode (Python)\x00Fortschritt\x00Herausgeber\x00Bewertung\x00Bewertung dieses Buches: 0-5 Sterne\x00Reader\n%s verf\xc3\xbcgbar\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\x00Feeds aus dem Profil 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.\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\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.\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.\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\x94\x01\x00\x00\x1c\x00\x00\x00\xbc\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\\\x19\x00\x00\x0e\x00\x00\x00]\x19\x00\x00!\x00\x00\x00l\x19\x00\x00\x05\x00\x00\x00\x8e\x19\x00\x00\x06\x00\x00\x00\x94\x19\x00\x00\x17\x00\x00\x00\x9b\x19\x00\x00\x0b\x00\x00\x00\xb3\x19\x00\x00\x04\x00\x00\x00\xbf\x19\x00\x00\x03\x00\x00\x00\xc4\x19\x00\x00\x08\x00\x00\x00\xc8\x19\x00\x00\x06\x00\x00\x00\xd1\x19\x00\x00\x1c\x00\x00\x00\xd8\x19\x00\x00\x0e\x00\x00\x00\xf5\x19\x00\x00\x0c\x00\x00\x00\x04\x1a\x00\x00\t\x00\x00\x00\x11\x1a\x00\x00\t\x00\x00\x00\x1b\x1a\x00\x00\x0c\x00\x00\x00%\x1a\x00\x00\x0f\x00\x00\x002\x1a\x00\x00\x11\x00\x00\x00B\x1a\x00\x00\x1a\x00\x00\x00T\x1a\x00\x00\x0c\x00\x00\x00o\x1a\x00\x00\x1d\x00\x00\x00|\x1a\x00\x00\x0f\x00\x00\x00\x9a\x1a\x00\x00\r\x00\x00\x00\xaa\x1a\x00\x00)\x00\x00\x00\xb8\x1a\x00\x00"\x00\x00\x00\xe2\x1a\x00\x00\x18\x00\x00\x00\x05\x1b\x00\x00\x0b\x00\x00\x00\x1e\x1b\x00\x00\x10\x00\x00\x00*\x1b\x00\x00\x17\x00\x00\x00;\x1b\x00\x00\n\x00\x00\x00S\x1b\x00\x00\x0c\x00\x00\x00^\x1b\x00\x00\x1e\x00\x00\x00k\x1b\x00\x00\t\x00\x00\x00\x8a\x1b\x00\x00\x0c\x00\x00\x00\x94\x1b\x00\x00\x08\x00\x00\x00\xa1\x1b\x00\x00\x14\x00\x00\x00\xaa\x1b\x00\x00\x0f\x00\x00\x00\xbf\x1b\x00\x00\r\x00\x00\x00\xcf\x1b\x00\x00\x0e\x00\x00\x00\xdd\x1b\x00\x00\x08\x00\x00\x00\xec\x1b\x00\x00\x08\x00\x00\x00\xf5\x1b\x00\x00\x07\x00\x00\x00\xfe\x1b\x00\x00\x0c\x00\x00\x00\x06\x1c\x00\x00\x0e\x00\x00\x00\x13\x1c\x00\x00\x12\x00\x00\x00"\x1c\x00\x00\x05\x00\x00\x005\x1c\x00\x00\x08\x00\x00\x00;\x1c\x00\x00\x0c\x00\x00\x00D\x1c\x00\x00\n\x00\x00\x00Q\x1c\x00\x00\x0e\x00\x00\x00\\\x1c\x00\x00\x03\x00\x00\x00k\x1c\x00\x001\x00\x00\x00o\x1c\x00\x00"\x00\x00\x00\xa1\x1c\x00\x00=\x00\x00\x00\xc4\x1c\x00\x00\x18\x00\x00\x00\x02\x1d\x00\x00+\x00\x00\x00\x1b\x1d\x00\x00\xa3\x01\x00\x00G\x1d\x00\x00\x82\x02\x00\x00\xeb\x1e\x00\x00>\x00\x00\x00n!\x00\x00S\x00\x00\x00\xad!\x00\x005\x00\x00\x00\x01"\x00\x00p\x00\x00\x007"\x00\x00a\x00\x00\x00\xa8"\x00\x00G\x00\x00\x00\n#\x00\x00\xa7\x00\x00\x00R#\x00\x00W\x00\x00\x00\xfa#\x00\x00\x96\x00\x00\x00R$\x00\x00=\x01\x00\x00\xe9$\x00\x002\x00\x00\x00\'&\x00\x00\x01\x00\x00\x00Z&\x00\x00X\x00\x00\x00\\&\x00\x00\r\x00\x00\x00\xb5&\x00\x00\x0f\x00\x00\x00\xc3&\x00\x00\x0b\x00\x00\x00\xd3&\x00\x00\x0b\x00\x00\x00\xdf&\x00\x00\x18\x00\x00\x00\xeb&\x00\x007\x00\x00\x00\x04\'\x00\x004\x00\x00\x00<\'\x00\x00.\x00\x00\x00q\'\x00\x00\t\x00\x00\x00\xa0\'\x00\x00!\x00\x00\x00\xaa\'\x00\x00b\x00\x00\x00\xcc\'\x00\x00o\x00\x00\x00/(\x00\x00\x16\x00\x00\x00\x9f(\x00\x00\x13\x00\x00\x00\xb6(\x00\x006\x00\x00\x00\xca(\x00\x00\x13\x00\x00\x00\x01)\x00\x00m\x00\x00\x00\x15)\x00\x00\x08\x00\x00\x00\x83)\x00\x00\x0f\x00\x00\x00\x8c)\x00\x00\x0f\x00\x00\x00\x9c)\x00\x00\x05\x00\x00\x00\xac)\x00\x00\x03\x00\x00\x00\xb2)\x00\x00\x19\x00\x00\x00\xb6)\x00\x00\x1b\x00\x00\x00\xd0)\x00\x00\x16\x00\x00\x00\xec)\x00\x00\x06\x00\x00\x00\x03*\x00\x00\x0e\x00\x00\x00\n*\x00\x00\r\x00\x00\x00\x19*\x00\x00\t\x00\x00\x00\'*\x00\x00\x08\x00\x00\x001*\x00\x00\x11\x00\x00\x00:*\x00\x00\x17\x00\x00\x00L*\x00\x00\x04\x00\x00\x00d*\x00\x00\x10\x00\x00\x00i*\x00\x00\x05\x00\x00\x00z*\x00\x00!\x00\x00\x00\x80*\x00\x00\x10\x00\x00\x00\xa2*\x00\x00\x05\x00\x00\x00\xb3*\x00\x00(\x00\x00\x00\xb9*\x00\x00\n\x00\x00\x00\xe2*\x00\x00.\x00\x00\x00\xed*\x00\x005\x00\x00\x00\x1c+\x00\x00$\x00\x00\x00R+\x00\x00\x0c\x00\x00\x00w+\x00\x00\x1a\x00\x00\x00\x84+\x00\x00\x10\x00\x00\x00\x9f+\x00\x00.\x00\x00\x00\xb0+\x00\x00\x0e\x00\x00\x00\xdf+\x00\x00\x0e\x00\x00\x00\xee+\x00\x007\x00\x00\x00\xfd+\x00\x00\x14\x00\x00\x005,\x00\x00\x12\x00\x00\x00J,\x00\x00#\x00\x00\x00],\x00\x00\x0f\x00\x00\x00\x81,\x00\x00Z\x00\x00\x00\x91,\x00\x00\x19\x00\x00\x00\xec,\x00\x00\x0b\x00\x00\x00\x06-\x00\x00\x13\x00\x00\x00\x12-\x00\x00\x0b\x00\x00\x00&-\x00\x00\x11\x00\x00\x002-\x00\x00\x08\x00\x00\x00D-\x00\x00\x14\x00\x00\x00M-\x00\x00\x0f\x00\x00\x00b-\x00\x00R\x00\x00\x00r-\x00\x00!\x00\x00\x00\xc5-\x00\x00\x1d\x00\x00\x00\xe7-\x00\x00H\x00\x00\x00\x05.\x00\x00\x11\x00\x00\x00N.\x00\x00\r\x00\x00\x00`.\x00\x00%\x00\x00\x00n.\x00\x00\x19\x00\x00\x00\x94.\x00\x00!\x00\x00\x00\xae.\x00\x007\x00\x00\x00\xd0.\x00\x00\x08\x00\x00\x00\x08/\x00\x00\r\x00\x00\x00\x11/\x00\x00\t\x00\x00\x00\x1f/\x00\x00\x10\x00\x00\x00)/\x00\x00\x11\x00\x00\x00:/\x00\x00\x0f\x00\x00\x00L/\x00\x00\x14\x00\x00\x00\\/\x00\x00\x0e\x00\x00\x00q/\x00\x00\x1c\x00\x00\x00\x80/\x00\x00;\x00\x00\x00\x9d/\x00\x00\x15\x00\x00\x00\xd9/\x00\x00R\x00\x00\x00\xef/\x00\x00\x17\x00\x00\x00B0\x00\x00\x18\x00\x00\x00Z0\x00\x00\x0b\x00\x00\x00s0\x00\x00\x13\x00\x00\x00\x7f0\x00\x00\x04\x00\x00\x00\x930\x00\x00\x19\x00\x00\x00\x980\x00\x00\x03\x00\x00\x00\xb20\x00\x00h\x00\x00\x00\xb60\x00\x00\x0e\x00\x00\x00\x1f1\x00\x00\x1b\x00\x00\x00.1\x00\x00\x1a\x00\x00\x00J1\x00\x00\x11\x00\x00\x00e1\x00\x00\x19\x00\x00\x00w1\x00\x00\x11\x00\x00\x00\x911\x00\x00\x01\x00\x00\x00\xa31\x00\x00\x05\x00\x00\x00\xa51\x00\x00\x15\x00\x00\x00\xab1\x00\x00\x15\x00\x00\x00\xc11\x00\x00\x15\x00\x00\x00\xd71\x00\x00\x15\x00\x00\x00\xed1\x00\x00\x1a\x00\x00\x00\x032\x00\x00\x0e\x00\x00\x00\x1e2\x00\x00\x1f\x00\x00\x00-2\x00\x00C\x00\x00\x00M2\x00\x00\x05\x00\x00\x00\x912\x00\x00\x1f\x00\x00\x00\x972\x00\x00\x12\x00\x00\x00\xb72\x00\x00\x17\x00\x00\x00\xca2\x00\x00\x1f\x00\x00\x00\xe22\x00\x00\'\x00\x00\x00\x023\x00\x003\x00\x00\x00*3\x00\x00*\x00\x00\x00^3\x00\x00\n\x00\x00\x00\x893\x00\x00\x16\x00\x00\x00\x943\x00\x00\x10\x00\x00\x00\xab3\x00\x00\x05\x00\x00\x00\xbc3\x00\x00\x1d\x00\x00\x00\xc23\x00\x00\x0e\x00\x00\x00\xe03\x00\x00\x1a\x00\x00\x00\xef3\x00\x00\n\x00\x00\x00\n4\x00\x00\x10\x00\x00\x00\x154\x00\x00\r\x00\x00\x00&4\x00\x00\x11\x00\x00\x0044\x00\x00\x1f\x00\x00\x00F4\x00\x00\x13\x00\x00\x00f4\x00\x00\x1b\x00\x00\x00z4\x00\x00\x05\x00\x00\x00\x964\x00\x00\x0b\x00\x00\x00\x9c4\x00\x008\x00\x00\x00\xa84\x00\x00\x08\x00\x00\x00\xe14\x00\x00\x1d\x01\x00\x00\xea4\x00\x00J\x00\x00\x00\x086\x00\x00#\x00\x00\x00S6\x00\x00\x04\x00\x00\x00w6\x00\x00\x06\x00\x00\x00|6\x00\x00\x07\x00\x00\x00\x836\x00\x00\x07\x00\x00\x00\x8b6\x00\x00\'\x00\x00\x00\x936\x00\x00\x1b\x00\x00\x00\xbb6\x00\x00\x19\x00\x00\x00\xd76\x00\x00\x06\x00\x00\x00\xf16\x00\x00\x0c\x00\x00\x00\xf86\x00\x00\t\x00\x00\x00\x057\x00\x00\x06\x00\x00\x00\x0f7\x00\x00\xdc\x01\x00\x00\x167\x00\x00n\x00\x00\x00\xf38\x00\x00a\x00\x00\x00b9\x00\x00\x0e\x00\x00\x00\xc49\x00\x00\x0e\x00\x00\x00\xd39\x00\x00\xa8\x00\x00\x00\xe29\x00\x00&\x00\x00\x00\x8b:\x00\x00\x10\x00\x00\x00\xb2:\x00\x00\x19\x00\x00\x00\xc3:\x00\x00\x1a\x00\x00\x00\xdd:\x00\x00.\x00\x00\x00\xf8:\x00\x00\x1a\x00\x00\x00\';\x00\x00\x1e\x00\x00\x00B;\x00\x00\x03\x00\x00\x00a;\x00\x00\x12\x00\x00\x00e;\x00\x00\x05\x00\x00\x00x;\x00\x00\n\x00\x00\x00~;\x00\x00,\x00\x00\x00\x89;\x00\x00\x07\x00\x00\x00\xb6;\x00\x00-\x00\x00\x00\xbe;\x00\x00\x0b\x00\x00\x00\xec;\x00\x00$\x00\x00\x00\xf8;\x00\x00$\x00\x00\x00\x1d<\x00\x00\x07\x00\x00\x00B<\x00\x000\x00\x00\x00J<\x00\x00\x10\x00\x00\x00{<\x00\x00\x08\x00\x00\x00\x8c<\x00\x00y\x00\x00\x00\x95<\x00\x00\x10\x00\x00\x00\x0f=\x00\x00\x04\x00\x00\x00 =\x00\x00\x06\x00\x00\x00%=\x00\x00"\x00\x00\x00,=\x00\x00\t\x00\x00\x00O=\x00\x00\n\x00\x00\x00Y=\x00\x00\x14\x00\x00\x00d=\x00\x00\x10\x00\x00\x00y=\x00\x00\x11\x00\x00\x00\x8a=\x00\x00\x08\x00\x00\x00\x9c=\x00\x00\x10\x00\x00\x00\xa5=\x00\x00\x12\x00\x00\x00\xb6=\x00\x00\x04\x00\x00\x00\xc9=\x00\x00^\x00\x00\x00\xce=\x00\x00\x0f\x00\x00\x00->\x00\x00\n\x00\x00\x00=>\x00\x00\x07\x00\x00\x00H>\x00\x00-\x00\x00\x00P>\x00\x00+\x00\x00\x00~>\x00\x00F\x00\x00\x00\xaa>\x00\x008\x00\x00\x00\xf1>\x00\x00s\x00\x00\x00*?\x00\x00\x0f\x00\x00\x00\x9e?\x00\x00\n\x00\x00\x00\xae?\x00\x00\x10\x00\x00\x00\xb9?\x00\x00:\x00\x00\x00\xca?\x00\x00\x0f\x00\x00\x00\x05@\x00\x00\x04\x00\x00\x00\x15@\x00\x00;\x00\x00\x00\x1a@\x00\x00G\x00\x00\x00V@\x00\x001\x00\x00\x00\x9e@\x00\x00Y\x00\x00\x00\xd0@\x00\x004\x00\x00\x00*A\x00\x00\x80\x00\x00\x00_A\x00\x00H\x00\x00\x00\xe0A\x00\x00\r\x00\x00\x00)B\x00\x00\x0f\x00\x00\x007B\x00\x00\xbc\x00\x00\x00GB\x00\x00\x1c\x00\x00\x00\x04C\x00\x00\x08\x00\x00\x00!C\x00\x00\t\x00\x00\x00*C\x00\x00\x06\x00\x00\x004C\x00\x00\x1e\x00\x00\x00;C\x00\x00\x13\x00\x00\x00ZC\x00\x00\x13\x00\x00\x00nC\x00\x00+\x00\x00\x00\x82C\x00\x00*\x00\x00\x00\xaeC\x00\x000\x00\x00\x00\xd9C\x00\x00)\x00\x00\x00\nD\x00\x00<\x00\x00\x004D\x00\x00\x0c\x00\x00\x00qD\x00\x00\x18\x00\x00\x00~D\x00\x00<\x00\x00\x00\x97D\x00\x000\x00\x00\x00\xd4D\x00\x00\x84\x00\x00\x00\x05E\x00\x00X\x00\x00\x00\x8aE\x00\x00\x12\x00\x00\x00\xe3E\x00\x00-\x00\x00\x00\xf6E\x00\x00\x0c\x00\x00\x00$F\x00\x00\x0c\x00\x00\x001F\x00\x00\x0c\x00\x00\x00>F\x00\x00"\x00\x00\x00KF\x00\x009\x00\x00\x00nF\x00\x00\x0f\x00\x00\x00\xa8F\x00\x00V\x00\x00\x00\xb8F\x00\x00r\x00\x00\x00\x0fG\x00\x00G\x00\x00\x00\x82G\x00\x00\'\x00\x00\x00\xcaG\x00\x00\x0e\x00\x00\x00\xf2G\x00\x00\x13\x00\x00\x00\x01H\x00\x00\x14\x00\x00\x00\x15H\x00\x00#\x00\x00\x00*H\x00\x00\x06\x00\x00\x00NH\x00\x00\r\x00\x00\x00UH\x00\x00\r\x00\x00\x00cH\x00\x00\x07\x00\x00\x00qH\x00\x00\x1e\x00\x00\x00yH\x00\x00\x0b\x00\x00\x00\x98H\x00\x00\x17\x00\x00\x00\xa4H\x00\x00\x1b\x00\x00\x00\xbcH\x00\x00\x1a\x00\x00\x00\xd8H\x00\x00\x0e\x00\x00\x00\xf3H\x00\x00^\x00\x00\x00\x02I\x00\x00\x12\x00\x00\x00aI\x00\x00\x10\x00\x00\x00tI\x00\x00\x10\x00\x00\x00\x85I\x00\x00g\x00\x00\x00\x96I\x00\x00c\x00\x00\x00\xfeI\x00\x007\x00\x00\x00bJ\x00\x00!\x00\x00\x00\x9aJ\x00\x00d\x00\x00\x00\xbcJ\x00\x00\t\x00\x00\x00!K\x00\x00\x17\x00\x00\x00+K\x00\x00\x16\x00\x00\x00CK\x00\x00\x11\x00\x00\x00ZK\x00\x00\x04\x01\x00\x00lK\x00\x00z\x00\x00\x00qL\x00\x00\x85\x00\x00\x00\xecL\x00\x00\xb6\x00\x00\x00rM\x00\x00P\x00\x00\x00)N\x00\x00+\x01\x00\x00zN\x00\x00#\x00\x00\x00\xa6O\x00\x00\x06\x00\x00\x00\xcaO\x00\x00\x17\x00\x00\x00\xd1O\x00\x00\x07\x00\x00\x00\xe9O\x00\x00\x03\x00\x00\x00\xf1O\x00\x00\n\x00\x00\x00\xf5O\x00\x00\x13\x00\x00\x00\x00P\x00\x00\x04\x00\x00\x00\x14P\x00\x00\x85\x00\x00\x00\x19P\x00\x00\x04\x00\x00\x00\x9fP\x00\x00\t\x00\x00\x00\xa4P\x00\x000\x00\x00\x00\xaeP\x00\x00X\x00\x00\x00\xdfP\x00\x00\x9d\x00\x00\x008Q\x00\x00&\x00\x00\x00\xd6Q\x00\x00\x1e\x00\x00\x00\xfdQ\x00\x00v\x00\x00\x00\x1cR\x00\x00\'\x00\x00\x00\x93R\x00\x00"\x00\x00\x00\xbbR\x00\x00B\x00\x00\x00\xdeR\x00\x00^\x00\x00\x00!S\x00\x00h\x00\x00\x00\x80S\x00\x00\t\x00\x00\x00\xe9S\x00\x00\x05\x00\x00\x00\xf3S\x00\x00\x15\x00\x00\x00\xf9S\x00\x00\x06\x00\x00\x00\x0fT\x00\x00+\x00\x00\x00\x16T\x00\x00\x1b\x00\x00\x00BT\x00\x00&\x00\x00\x00^T\x00\x00\x0b\x00\x00\x00\x85T\x00\x00\x07\x00\x00\x00\x91T\x00\x00\x13\x00\x00\x00\x99T\x00\x00\x0c\x00\x00\x00\xadT\x00\x00\x10\x00\x00\x00\xbaT\x00\x00\x10\x00\x00\x00\xcbT\x00\x00%\x00\x00\x00\xdcT\x00\x00\x1b\x00\x00\x00\x02U\x00\x00\xb4\x00\x00\x00\x1eU\x00\x002\x00\x00\x00\xd3U\x00\x00\x14\x00\x00\x00\x06V\x00\x00_\x00\x00\x00\x1bV\x00\x00:\x00\x00\x00{V\x00\x00*\x00\x00\x00\xb6V\x00\x00\x04\x00\x00\x00\xe1V\x00\x00\x14\x00\x00\x00\xe6V\x00\x00\x07\x00\x00\x00\xfbV\x00\x00\x07\x00\x00\x00\x03W\x00\x00-\x00\x00\x00\x0bW\x00\x00d\x00\x00\x009W\x00\x00#\x00\x00\x00\x9eW\x00\x002\x00\x00\x00\xc2W\x00\x003\x00\x00\x00\xf5W\x00\x00\x08\x00\x00\x00)X\x00\x00\t\x00\x00\x002X\x00\x00(\x01\x00\x00<X\x00\x00 \x00\x00\x00eY\x00\x00\x1d\x00\x00\x00\x86Y\x00\x00\x05\x00\x00\x00\xa4Y\x00\x00\x04\x00\x00\x00\xaaY\x00\x00\x19\x00\x00\x00\xafY\x00\x00\r\x00\x00\x00\xc9Y\x00\x00\x07\x00\x00\x00\xd7Y\x00\x00\t\x00\x00\x00\xdfY\x00\x00\t\x00\x00\x00\xe9Y\x00\x00\n\x00\x00\x00\xf3Y\x00\x00"\x00\x00\x00\xfeY\x00\x00\x12\x00\x00\x00!Z\x00\x00\x11\x00\x00\x004Z\x00\x00\x0e\x00\x00\x00FZ\x00\x00\x0f\x00\x00\x00UZ\x00\x00\x0b\x00\x00\x00eZ\x00\x00\x11\x00\x00\x00qZ\x00\x00\x15\x00\x00\x00\x83Z\x00\x00$\x00\x00\x00\x99Z\x00\x00\x0c\x00\x00\x00\xbeZ\x00\x000\x00\x00\x00\xcbZ\x00\x00\x18\x00\x00\x00\xfcZ\x00\x00\x12\x00\x00\x00\x15[\x00\x00-\x00\x00\x00([\x00\x00&\x00\x00\x00V[\x00\x00\x1e\x00\x00\x00}[\x00\x00\x0b\x00\x00\x00\x9c[\x00\x00\x13\x00\x00\x00\xa8[\x00\x001\x00\x00\x00\xbc[\x00\x00\r\x00\x00\x00\xee[\x00\x00\x12\x00\x00\x00\xfc[\x00\x00+\x00\x00\x00\x0f\\\x00\x00\x08\x00\x00\x00;\\\x00\x00\x0b\x00\x00\x00D\\\x00\x00\r\x00\x00\x00P\\\x00\x00\x14\x00\x00\x00^\\\x00\x00\x11\x00\x00\x00s\\\x00\x00\x1a\x00\x00\x00\x85\\\x00\x00\x10\x00\x00\x00\xa0\\\x00\x00\x08\x00\x00\x00\xb1\\\x00\x00\x08\x00\x00\x00\xba\\\x00\x00\x07\x00\x00\x00\xc3\\\x00\x00\x13\x00\x00\x00\xcb\\\x00\x00\x18\x00\x00\x00\xdf\\\x00\x00\x1e\x00\x00\x00\xf8\\\x00\x00\x05\x00\x00\x00\x17]\x00\x00\t\x00\x00\x00\x1d]\x00\x00\x11\x00\x00\x00\']\x00\x00\t\x00\x00\x009]\x00\x00\x17\x00\x00\x00C]\x00\x00\x03\x00\x00\x00[]\x00\x00/\x00\x00\x00_]\x00\x00-\x00\x00\x00\x8f]\x00\x00;\x00\x00\x00\xbd]\x00\x00\x1b\x00\x00\x00\xf9]\x00\x00-\x00\x00\x00\x15^\x00\x00\xa3\x01\x00\x00C^\x00\x00\x8c\x02\x00\x00\xe7_\x00\x00?\x00\x00\x00tb\x00\x00K\x00\x00\x00\xb4b\x00\x004\x00\x00\x00\x00c\x00\x00\x8f\x00\x00\x005c\x00\x00j\x00\x00\x00\xc5c\x00\x00K\x00\x00\x000d\x00\x00\xd5\x00\x00\x00|d\x00\x00\x7f\x00\x00\x00Re\x00\x00\xcd\x00\x00\x00\xd2e\x00\x00\xa4\x01\x00\x00\xa0f\x00\x00.\x00\x00\x00Eh\x00\x00\x01\x00\x00\x00th\x00\x00e\x00\x00\x00vh\x00\x00\n\x00\x00\x00\xdch\x00\x00\x16\x00\x00\x00\xe7h\x00\x00\x10\x00\x00\x00\xfeh\x00\x00\x18\x00\x00\x00\x0fi\x00\x00/\x00\x00\x00(i\x00\x007\x00\x00\x00Xi\x00\x00H\x00\x00\x00\x90i\x00\x00<\x00\x00\x00\xd9i\x00\x00\x0e\x00\x00\x00\x16j\x00\x003\x00\x00\x00%j\x00\x00}\x00\x00\x00Yj\x00\x00\x98\x00\x00\x00\xd7j\x00\x00$\x00\x00\x00pk\x00\x00!\x00\x00\x00\x95k\x00\x00M\x00\x00\x00\xb7k\x00\x00!\x00\x00\x00\x05l\x00\x00r\x00\x00\x00\'l\x00\x00\t\x00\x00\x00\x9al\x00\x00\x10\x00\x00\x00\xa4l\x00\x00\x10\x00\x00\x00\xb5l\x00\x00\x05\x00\x00\x00\xc6l\x00\x00\t\x00\x00\x00\xccl\x00\x00\'\x00\x00\x00\xd6l\x00\x00!\x00\x00\x00\xfel\x00\x00\x13\x00\x00\x00 m\x00\x00\x05\x00\x00\x004m\x00\x00\x11\x00\x00\x00:m\x00\x00\x12\x00\x00\x00Lm\x00\x00\t\x00\x00\x00_m\x00\x00\x08\x00\x00\x00im\x00\x00\x14\x00\x00\x00rm\x00\x00\x1b\x00\x00\x00\x87m\x00\x00\x06\x00\x00\x00\xa3m\x00\x00\x1b\x00\x00\x00\xaam\x00\x00\x07\x00\x00\x00\xc6m\x00\x003\x00\x00\x00\xcem\x00\x00\x16\x00\x00\x00\x02n\x00\x00\x06\x00\x00\x00\x19n\x00\x00)\x00\x00\x00 n\x00\x00\x07\x00\x00\x00Jn\x00\x008\x00\x00\x00Rn\x00\x00;\x00\x00\x00\x8bn\x00\x001\x00\x00\x00\xc7n\x00\x00\x13\x00\x00\x00\xf9n\x00\x00%\x00\x00\x00\ro\x00\x00\x16\x00\x00\x003o\x00\x00/\x00\x00\x00Jo\x00\x00\x14\x00\x00\x00zo\x00\x00\x15\x00\x00\x00\x8fo\x00\x00=\x00\x00\x00\xa5o\x00\x00!\x00\x00\x00\xe3o\x00\x00 \x00\x00\x00\x05p\x00\x005\x00\x00\x00&p\x00\x00\x1d\x00\x00\x00\\p\x00\x00g\x00\x00\x00zp\x00\x00-\x00\x00\x00\xe2p\x00\x00\x10\x00\x00\x00\x10q\x00\x00\x1c\x00\x00\x00!q\x00\x00\x16\x00\x00\x00>q\x00\x00\x15\x00\x00\x00Uq\x00\x00\n\x00\x00\x00kq\x00\x00\x1d\x00\x00\x00vq\x00\x00\x17\x00\x00\x00\x94q\x00\x00S\x00\x00\x00\xacq\x00\x00\x1d\x00\x00\x00\x00r\x00\x00\x1c\x00\x00\x00\x1er\x00\x00V\x00\x00\x00;r\x00\x00\x18\x00\x00\x00\x92r\x00\x00\x0e\x00\x00\x00\xabr\x00\x00#\x00\x00\x00\xbar\x00\x00\x1b\x00\x00\x00\xder\x00\x00&\x00\x00\x00\xfar\x00\x00E\x00\x00\x00!s\x00\x00\x0b\x00\x00\x00gs\x00\x00\x0e\x00\x00\x00ss\x00\x00\n\x00\x00\x00\x82s\x00\x00\x13\x00\x00\x00\x8ds\x00\x00\x12\x00\x00\x00\xa1s\x00\x00\x10\x00\x00\x00\xb4s\x00\x00\x19\x00\x00\x00\xc5s\x00\x00\x0f\x00\x00\x00\xdfs\x00\x00#\x00\x00\x00\xefs\x00\x00W\x00\x00\x00\x13t\x00\x00!\x00\x00\x00kt\x00\x00}\x00\x00\x00\x8dt\x00\x00"\x00\x00\x00\x0bu\x00\x00"\x00\x00\x00.u\x00\x00\x0b\x00\x00\x00Qu\x00\x00\x1f\x00\x00\x00]u\x00\x00\x05\x00\x00\x00}u\x00\x002\x00\x00\x00\x83u\x00\x00\x06\x00\x00\x00\xb6u\x00\x00\x8f\x00\x00\x00\xbdu\x00\x00\x14\x00\x00\x00Mv\x00\x00\x1b\x00\x00\x00bv\x00\x00!\x00\x00\x00~v\x00\x00\x10\x00\x00\x00\xa0v\x00\x00\x18\x00\x00\x00\xb1v\x00\x00#\x00\x00\x00\xcav\x00\x00\x01\x00\x00\x00\xeev\x00\x00\x05\x00\x00\x00\xf0v\x00\x00\x18\x00\x00\x00\xf6v\x00\x00\x18\x00\x00\x00\x0fw\x00\x00\x1b\x00\x00\x00(w\x00\x00\x19\x00\x00\x00Dw\x00\x00 \x00\x00\x00^w\x00\x00\x13\x00\x00\x00\x7fw\x00\x00-\x00\x00\x00\x93w\x00\x00V\x00\x00\x00\xc1w\x00\x00\x06\x00\x00\x00\x18x\x00\x00,\x00\x00\x00\x1fx\x00\x00\x15\x00\x00\x00Lx\x00\x00)\x00\x00\x00bx\x00\x00$\x00\x00\x00\x8cx\x00\x00,\x00\x00\x00\xb1x\x00\x00:\x00\x00\x00\xdex\x00\x00/\x00\x00\x00\x19y\x00\x00\n\x00\x00\x00Iy\x00\x00$\x00\x00\x00Ty\x00\x00\x0f\x00\x00\x00yy\x00\x00\x06\x00\x00\x00\x89y\x00\x00\x1d\x00\x00\x00\x90y\x00\x00\x10\x00\x00\x00\xaey\x00\x00\x1f\x00\x00\x00\xbfy\x00\x00\x18\x00\x00\x00\xdfy\x00\x00\x17\x00\x00\x00\xf8y\x00\x00\x0c\x00\x00\x00\x10z\x00\x00\x10\x00\x00\x00\x1dz\x00\x00!\x00\x00\x00.z\x00\x00\x17\x00\x00\x00Pz\x00\x00\x1d\x00\x00\x00hz\x00\x00\x07\x00\x00\x00\x86z\x00\x00\x0b\x00\x00\x00\x8ez\x00\x00/\x00\x00\x00\x9az\x00\x00\x06\x00\x00\x00\xcaz\x00\x00"\x01\x00\x00\xd1z\x00\x00^\x00\x00\x00\xf4{\x00\x001\x00\x00\x00S|\x00\x00\x03\x00\x00\x00\x85|\x00\x00\x07\x00\x00\x00\x89|\x00\x00\x08\x00\x00\x00\x91|\x00\x00\t\x00\x00\x00\x9a|\x00\x004\x00\x00\x00\xa4|\x00\x00!\x00\x00\x00\xd9|\x00\x00\x1e\x00\x00\x00\xfb|\x00\x00\n\x00\x00\x00\x1a}\x00\x00\x12\x00\x00\x00%}\x00\x00\x16\x00\x00\x008}\x00\x00\x06\x00\x00\x00O}\x00\x00\xe2\x01\x00\x00V}\x00\x00\x8f\x00\x00\x009\x7f\x00\x00r\x00\x00\x00\xc9\x7f\x00\x00\x16\x00\x00\x00<\x80\x00\x00\x12\x00\x00\x00S\x80\x00\x00\xc7\x00\x00\x00f\x80\x00\x00*\x00\x00\x00.\x81\x00\x00\x19\x00\x00\x00Y\x81\x00\x00\x15\x00\x00\x00s\x81\x00\x00\x15\x00\x00\x00\x89\x81\x00\x000\x00\x00\x00\x9f\x81\x00\x00\x1f\x00\x00\x00\xd0\x81\x00\x00#\x00\x00\x00\xf0\x81\x00\x00\x07\x00\x00\x00\x14\x82\x00\x00"\x00\x00\x00\x1c\x82\x00\x00\t\x00\x00\x00?\x82\x00\x00\t\x00\x00\x00I\x82\x00\x009\x00\x00\x00S\x82\x00\x00\n\x00\x00\x00\x8d\x82\x00\x00<\x00\x00\x00\x98\x82\x00\x00\n\x00\x00\x00\xd5\x82\x00\x003\x00\x00\x00\xe0\x82\x00\x009\x00\x00\x00\x14\x83\x00\x00\r\x00\x00\x00N\x83\x00\x001\x00\x00\x00\\\x83\x00\x00\x11\x00\x00\x00\x8e\x83\x00\x00\t\x00\x00\x00\xa0\x83\x00\x00|\x00\x00\x00\xaa\x83\x00\x00\x17\x00\x00\x00\'\x84\x00\x00\x04\x00\x00\x00?\x84\x00\x00\n\x00\x00\x00D\x84\x00\x006\x00\x00\x00O\x84\x00\x00\x11\x00\x00\x00\x86\x84\x00\x00\x16\x00\x00\x00\x98\x84\x00\x00\x17\x00\x00\x00\xaf\x84\x00\x00\x13\x00\x00\x00\xc7\x84\x00\x00\x1b\x00\x00\x00\xdb\x84\x00\x00\x0c\x00\x00\x00\xf7\x84\x00\x00"\x00\x00\x00\x04\x85\x00\x00 \x00\x00\x00\'\x85\x00\x00\x07\x00\x00\x00H\x85\x00\x00_\x00\x00\x00P\x85\x00\x00\x1e\x00\x00\x00\xb0\x85\x00\x00\x0b\x00\x00\x00\xcf\x85\x00\x00\x08\x00\x00\x00\xdb\x85\x00\x00\x1d\x00\x00\x00\xe4\x85\x00\x00\x1b\x00\x00\x00\x02\x86\x00\x00H\x00\x00\x00\x1e\x86\x00\x00K\x00\x00\x00g\x86\x00\x00\x93\x00\x00\x00\xb3\x86\x00\x00\x11\x00\x00\x00G\x87\x00\x00\x19\x00\x00\x00Y\x87\x00\x00\x19\x00\x00\x00s\x87\x00\x00J\x00\x00\x00\x8d\x87\x00\x00\x18\x00\x00\x00\xd8\x87\x00\x00\x04\x00\x00\x00\xf1\x87\x00\x00:\x00\x00\x00\xf6\x87\x00\x00J\x00\x00\x001\x88\x00\x001\x00\x00\x00|\x88\x00\x00r\x00\x00\x00\xae\x88\x00\x00G\x00\x00\x00!\x89\x00\x00w\x00\x00\x00i\x89\x00\x00Z\x00\x00\x00\xe1\x89\x00\x00\x10\x00\x00\x00<\x8a\x00\x00\r\x00\x00\x00M\x8a\x00\x00\xc8\x00\x00\x00[\x8a\x00\x00\x19\x00\x00\x00$\x8b\x00\x00\x08\x00\x00\x00>\x8b\x00\x00\t\x00\x00\x00G\x8b\x00\x00\x0b\x00\x00\x00Q\x8b\x00\x00 \x00\x00\x00]\x8b\x00\x00\x19\x00\x00\x00~\x8b\x00\x00\x14\x00\x00\x00\x98\x8b\x00\x00-\x00\x00\x00\xad\x8b\x00\x00-\x00\x00\x00\xdb\x8b\x00\x002\x00\x00\x00\t\x8c\x00\x00+\x00\x00\x00<\x8c\x00\x008\x00\x00\x00h\x8c\x00\x00\x0f\x00\x00\x00\xa1\x8c\x00\x00\x1e\x00\x00\x00\xb1\x8c\x00\x00G\x00\x00\x00\xd0\x8c\x00\x001\x00\x00\x00\x18\x8d\x00\x00\x95\x00\x00\x00J\x8d\x00\x00N\x00\x00\x00\xe0\x8d\x00\x00\x1f\x00\x00\x00/\x8e\x00\x007\x00\x00\x00O\x8e\x00\x00\x08\x00\x00\x00\x87\x8e\x00\x00\x0c\x00\x00\x00\x90\x8e\x00\x00\x13\x00\x00\x00\x9d\x8e\x00\x004\x00\x00\x00\xb1\x8e\x00\x00=\x00\x00\x00\xe6\x8e\x00\x00\r\x00\x00\x00$\x8f\x00\x00\\\x00\x00\x002\x8f\x00\x00~\x00\x00\x00\x8f\x8f\x00\x00C\x00\x00\x00\x0e\x90\x00\x000\x00\x00\x00R\x90\x00\x00\x15\x00\x00\x00\x83\x90\x00\x00\x1b\x00\x00\x00\x99\x90\x00\x00\x1d\x00\x00\x00\xb5\x90\x00\x000\x00\x00\x00\xd3\x90\x00\x00\x06\x00\x00\x00\x04\x91\x00\x00\x11\x00\x00\x00\x0b\x91\x00\x00\r\x00\x00\x00\x1d\x91\x00\x00\x07\x00\x00\x00+\x91\x00\x001\x00\x00\x003\x91\x00\x00\x18\x00\x00\x00e\x91\x00\x00(\x00\x00\x00~\x91\x00\x00$\x00\x00\x00\xa7\x91\x00\x00&\x00\x00\x00\xcc\x91\x00\x00\x11\x00\x00\x00\xf3\x91\x00\x00`\x00\x00\x00\x05\x92\x00\x00\x1c\x00\x00\x00f\x92\x00\x00\x16\x00\x00\x00\x83\x92\x00\x00\x15\x00\x00\x00\x9a\x92\x00\x00\x95\x00\x00\x00\xb0\x92\x00\x00n\x00\x00\x00F\x93\x00\x00?\x00\x00\x00\xb5\x93\x00\x002\x00\x00\x00\xf5\x93\x00\x00m\x00\x00\x00(\x94\x00\x00\x0c\x00\x00\x00\x96\x94\x00\x00\x18\x00\x00\x00\xa3\x94\x00\x00\x1d\x00\x00\x00\xbc\x94\x00\x00\x1c\x00\x00\x00\xda\x94\x00\x00\x1c\x01\x00\x00\xf7\x94\x00\x00y\x00\x00\x00\x14\x96\x00\x00\x88\x00\x00\x00\x8e\x96\x00\x00\xc5\x00\x00\x00\x17\x97\x00\x00M\x00\x00\x00\xdd\x97\x00\x00V\x01\x00\x00+\x98\x00\x00%\x00\x00\x00\x82\x99\x00\x00\x06\x00\x00\x00\xa8\x99\x00\x00\x1f\x00\x00\x00\xaf\x99\x00\x00\x0b\x00\x00\x00\xcf\x99\x00\x00\x07\x00\x00\x00\xdb\x99\x00\x00\x15\x00\x00\x00\xe3\x99\x00\x00\x1e\x00\x00\x00\xf9\x99\x00\x00\t\x00\x00\x00\x18\x9a\x00\x00\x89\x00\x00\x00"\x9a\x00\x00\x04\x00\x00\x00\xac\x9a\x00\x00\t\x00\x00\x00\xb1\x9a\x00\x00<\x00\x00\x00\xbb\x9a\x00\x00l\x00\x00\x00\xf8\x9a\x00\x00\x98\x00\x00\x00e\x9b\x00\x00-\x00\x00\x00\xfe\x9b\x00\x00#\x00\x00\x00,\x9c\x00\x00\x89\x00\x00\x00P\x9c\x00\x00*\x00\x00\x00\xda\x9c\x00\x00)\x00\x00\x00\x05\x9d\x00\x00^\x00\x00\x00/\x9d\x00\x00s\x00\x00\x00\x8e\x9d\x00\x00z\x00\x00\x00\x02\x9e\x00\x00\x0f\x00\x00\x00}\x9e\x00\x00\x07\x00\x00\x00\x8d\x9e\x00\x00\x1f\x00\x00\x00\x95\x9e\x00\x00\x06\x00\x00\x00\xb5\x9e\x00\x008\x00\x00\x00\xbc\x9e\x00\x00!\x00\x00\x00\xf5\x9e\x00\x00%\x00\x00\x00\x17\x9f\x00\x00\r\x00\x00\x00=\x9f\x00\x00\x0b\x00\x00\x00K\x9f\x00\x00\x1b\x00\x00\x00W\x9f\x00\x00\x0e\x00\x00\x00s\x9f\x00\x00\x12\x00\x00\x00\x82\x9f\x00\x00\x12\x00\x00\x00\x95\x9f\x00\x00;\x00\x00\x00\xa8\x9f\x00\x000\x00\x00\x00\xe4\x9f\x00\x00\xbc\x00\x00\x00\x15\xa0\x00\x00:\x00\x00\x00\xd2\xa0\x00\x00\x15\x00\x00\x00\r\xa1\x00\x00i\x00\x00\x00#\xa1\x00\x00N\x00\x00\x00\x8d\xa1\x00\x007\x00\x00\x00\xdc\xa1\x00\x00\x07\x00\x00\x00\x14\xa2\x00\x00\x19\x00\x00\x00\x1c\xa2\x00\x00\x0c\x00\x00\x006\xa2\x00\x00\r\x00\x00\x00C\xa2\x00\x00,\x00\x00\x00Q\xa2\x00\x00n\x00\x00\x00~\xa2\x00\x001\x00\x00\x00\xed\xa2\x00\x006\x00\x00\x00\x1f\xa3\x00\x002\x00\x00\x00V\xa3\x00\x00\n\x00\x00\x00\x89\xa3\x00\x00\t\x00\x00\x00\x94\xa3\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 profile\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="-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>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 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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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\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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\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.43\nPOT-Creation-Date: 2008-03-24 15:10+PDT\nPO-Revision-Date: 2008-03-23 16:44+PDT\nLast-Translator: Automatically generated\nLanguage-Team: it\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 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:\x00Profil 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="-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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\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\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\x00Profil&titel:\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:\x00Profil-Quellcode (Python)\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Sony Reader\n%s disponible\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\x00Feeds aus dem Profil 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.\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\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.\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.\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', '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-24 15:10+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\x94\x01\x00\x00\x1c\x00\x00\x00\xbc\x0c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\\\x19\x00\x00\x0e\x00\x00\x00]\x19\x00\x00!\x00\x00\x00l\x19\x00\x00\x05\x00\x00\x00\x8e\x19\x00\x00\x06\x00\x00\x00\x94\x19\x00\x00\x17\x00\x00\x00\x9b\x19\x00\x00\x0b\x00\x00\x00\xb3\x19\x00\x00\x04\x00\x00\x00\xbf\x19\x00\x00\x03\x00\x00\x00\xc4\x19\x00\x00\x08\x00\x00\x00\xc8\x19\x00\x00\x06\x00\x00\x00\xd1\x19\x00\x00\x1c\x00\x00\x00\xd8\x19\x00\x00\x0e\x00\x00\x00\xf5\x19\x00\x00\x0c\x00\x00\x00\x04\x1a\x00\x00\t\x00\x00\x00\x11\x1a\x00\x00\t\x00\x00\x00\x1b\x1a\x00\x00\x0c\x00\x00\x00%\x1a\x00\x00\x0f\x00\x00\x002\x1a\x00\x00\x11\x00\x00\x00B\x1a\x00\x00\x1a\x00\x00\x00T\x1a\x00\x00\x0c\x00\x00\x00o\x1a\x00\x00\x1d\x00\x00\x00|\x1a\x00\x00\x0f\x00\x00\x00\x9a\x1a\x00\x00\r\x00\x00\x00\xaa\x1a\x00\x00)\x00\x00\x00\xb8\x1a\x00\x00"\x00\x00\x00\xe2\x1a\x00\x00\x18\x00\x00\x00\x05\x1b\x00\x00\x0b\x00\x00\x00\x1e\x1b\x00\x00\x10\x00\x00\x00*\x1b\x00\x00\x17\x00\x00\x00;\x1b\x00\x00\n\x00\x00\x00S\x1b\x00\x00\x0c\x00\x00\x00^\x1b\x00\x00\x1e\x00\x00\x00k\x1b\x00\x00\t\x00\x00\x00\x8a\x1b\x00\x00\x0c\x00\x00\x00\x94\x1b\x00\x00\x08\x00\x00\x00\xa1\x1b\x00\x00\x14\x00\x00\x00\xaa\x1b\x00\x00\x0f\x00\x00\x00\xbf\x1b\x00\x00\r\x00\x00\x00\xcf\x1b\x00\x00\x0e\x00\x00\x00\xdd\x1b\x00\x00\x08\x00\x00\x00\xec\x1b\x00\x00\x08\x00\x00\x00\xf5\x1b\x00\x00\x07\x00\x00\x00\xfe\x1b\x00\x00\x0c\x00\x00\x00\x06\x1c\x00\x00\x0e\x00\x00\x00\x13\x1c\x00\x00\x12\x00\x00\x00"\x1c\x00\x00\x05\x00\x00\x005\x1c\x00\x00\x08\x00\x00\x00;\x1c\x00\x00\x0c\x00\x00\x00D\x1c\x00\x00\n\x00\x00\x00Q\x1c\x00\x00\x0e\x00\x00\x00\\\x1c\x00\x00\x03\x00\x00\x00k\x1c\x00\x001\x00\x00\x00o\x1c\x00\x00"\x00\x00\x00\xa1\x1c\x00\x00=\x00\x00\x00\xc4\x1c\x00\x00\x18\x00\x00\x00\x02\x1d\x00\x00+\x00\x00\x00\x1b\x1d\x00\x00\xa3\x01\x00\x00G\x1d\x00\x00\x82\x02\x00\x00\xeb\x1e\x00\x00>\x00\x00\x00n!\x00\x00S\x00\x00\x00\xad!\x00\x005\x00\x00\x00\x01"\x00\x00p\x00\x00\x007"\x00\x00a\x00\x00\x00\xa8"\x00\x00G\x00\x00\x00\n#\x00\x00\xa7\x00\x00\x00R#\x00\x00W\x00\x00\x00\xfa#\x00\x00\x96\x00\x00\x00R$\x00\x00=\x01\x00\x00\xe9$\x00\x002\x00\x00\x00\'&\x00\x00\x01\x00\x00\x00Z&\x00\x00X\x00\x00\x00\\&\x00\x00\r\x00\x00\x00\xb5&\x00\x00\x0f\x00\x00\x00\xc3&\x00\x00\x0b\x00\x00\x00\xd3&\x00\x00\x0b\x00\x00\x00\xdf&\x00\x00\x18\x00\x00\x00\xeb&\x00\x007\x00\x00\x00\x04\'\x00\x004\x00\x00\x00<\'\x00\x00.\x00\x00\x00q\'\x00\x00\t\x00\x00\x00\xa0\'\x00\x00!\x00\x00\x00\xaa\'\x00\x00b\x00\x00\x00\xcc\'\x00\x00o\x00\x00\x00/(\x00\x00\x16\x00\x00\x00\x9f(\x00\x00\x13\x00\x00\x00\xb6(\x00\x006\x00\x00\x00\xca(\x00\x00\x13\x00\x00\x00\x01)\x00\x00m\x00\x00\x00\x15)\x00\x00\x08\x00\x00\x00\x83)\x00\x00\x0f\x00\x00\x00\x8c)\x00\x00\x0f\x00\x00\x00\x9c)\x00\x00\x05\x00\x00\x00\xac)\x00\x00\x03\x00\x00\x00\xb2)\x00\x00\x19\x00\x00\x00\xb6)\x00\x00\x1b\x00\x00\x00\xd0)\x00\x00\x16\x00\x00\x00\xec)\x00\x00\x06\x00\x00\x00\x03*\x00\x00\x0e\x00\x00\x00\n*\x00\x00\r\x00\x00\x00\x19*\x00\x00\t\x00\x00\x00\'*\x00\x00\x08\x00\x00\x001*\x00\x00\x11\x00\x00\x00:*\x00\x00\x17\x00\x00\x00L*\x00\x00\x04\x00\x00\x00d*\x00\x00\x10\x00\x00\x00i*\x00\x00\x05\x00\x00\x00z*\x00\x00!\x00\x00\x00\x80*\x00\x00\x10\x00\x00\x00\xa2*\x00\x00\x05\x00\x00\x00\xb3*\x00\x00(\x00\x00\x00\xb9*\x00\x00\n\x00\x00\x00\xe2*\x00\x00.\x00\x00\x00\xed*\x00\x005\x00\x00\x00\x1c+\x00\x00$\x00\x00\x00R+\x00\x00\x0c\x00\x00\x00w+\x00\x00\x1a\x00\x00\x00\x84+\x00\x00\x10\x00\x00\x00\x9f+\x00\x00.\x00\x00\x00\xb0+\x00\x00\x0e\x00\x00\x00\xdf+\x00\x00\x0e\x00\x00\x00\xee+\x00\x007\x00\x00\x00\xfd+\x00\x00\x14\x00\x00\x005,\x00\x00\x12\x00\x00\x00J,\x00\x00#\x00\x00\x00],\x00\x00\x0f\x00\x00\x00\x81,\x00\x00Z\x00\x00\x00\x91,\x00\x00\x19\x00\x00\x00\xec,\x00\x00\x0b\x00\x00\x00\x06-\x00\x00\x13\x00\x00\x00\x12-\x00\x00\x0b\x00\x00\x00&-\x00\x00\x11\x00\x00\x002-\x00\x00\x08\x00\x00\x00D-\x00\x00\x14\x00\x00\x00M-\x00\x00\x0f\x00\x00\x00b-\x00\x00R\x00\x00\x00r-\x00\x00!\x00\x00\x00\xc5-\x00\x00\x1d\x00\x00\x00\xe7-\x00\x00H\x00\x00\x00\x05.\x00\x00\x11\x00\x00\x00N.\x00\x00\r\x00\x00\x00`.\x00\x00%\x00\x00\x00n.\x00\x00\x19\x00\x00\x00\x94.\x00\x00!\x00\x00\x00\xae.\x00\x007\x00\x00\x00\xd0.\x00\x00\x08\x00\x00\x00\x08/\x00\x00\r\x00\x00\x00\x11/\x00\x00\t\x00\x00\x00\x1f/\x00\x00\x10\x00\x00\x00)/\x00\x00\x11\x00\x00\x00:/\x00\x00\x0f\x00\x00\x00L/\x00\x00\x14\x00\x00\x00\\/\x00\x00\x0e\x00\x00\x00q/\x00\x00\x1c\x00\x00\x00\x80/\x00\x00;\x00\x00\x00\x9d/\x00\x00\x15\x00\x00\x00\xd9/\x00\x00R\x00\x00\x00\xef/\x00\x00\x17\x00\x00\x00B0\x00\x00\x18\x00\x00\x00Z0\x00\x00\x0b\x00\x00\x00s0\x00\x00\x13\x00\x00\x00\x7f0\x00\x00\x04\x00\x00\x00\x930\x00\x00\x19\x00\x00\x00\x980\x00\x00\x03\x00\x00\x00\xb20\x00\x00h\x00\x00\x00\xb60\x00\x00\x0e\x00\x00\x00\x1f1\x00\x00\x1b\x00\x00\x00.1\x00\x00\x1a\x00\x00\x00J1\x00\x00\x11\x00\x00\x00e1\x00\x00\x19\x00\x00\x00w1\x00\x00\x11\x00\x00\x00\x911\x00\x00\x01\x00\x00\x00\xa31\x00\x00\x05\x00\x00\x00\xa51\x00\x00\x15\x00\x00\x00\xab1\x00\x00\x15\x00\x00\x00\xc11\x00\x00\x15\x00\x00\x00\xd71\x00\x00\x15\x00\x00\x00\xed1\x00\x00\x1a\x00\x00\x00\x032\x00\x00\x0e\x00\x00\x00\x1e2\x00\x00\x1f\x00\x00\x00-2\x00\x00C\x00\x00\x00M2\x00\x00\x05\x00\x00\x00\x912\x00\x00\x1f\x00\x00\x00\x972\x00\x00\x12\x00\x00\x00\xb72\x00\x00\x17\x00\x00\x00\xca2\x00\x00\x1f\x00\x00\x00\xe22\x00\x00\'\x00\x00\x00\x023\x00\x003\x00\x00\x00*3\x00\x00*\x00\x00\x00^3\x00\x00\n\x00\x00\x00\x893\x00\x00\x16\x00\x00\x00\x943\x00\x00\x10\x00\x00\x00\xab3\x00\x00\x05\x00\x00\x00\xbc3\x00\x00\x1d\x00\x00\x00\xc23\x00\x00\x0e\x00\x00\x00\xe03\x00\x00\x1a\x00\x00\x00\xef3\x00\x00\n\x00\x00\x00\n4\x00\x00\x10\x00\x00\x00\x154\x00\x00\r\x00\x00\x00&4\x00\x00\x11\x00\x00\x0044\x00\x00\x1f\x00\x00\x00F4\x00\x00\x13\x00\x00\x00f4\x00\x00\x1b\x00\x00\x00z4\x00\x00\x05\x00\x00\x00\x964\x00\x00\x0b\x00\x00\x00\x9c4\x00\x008\x00\x00\x00\xa84\x00\x00\x08\x00\x00\x00\xe14\x00\x00\x1d\x01\x00\x00\xea4\x00\x00J\x00\x00\x00\x086\x00\x00#\x00\x00\x00S6\x00\x00\x04\x00\x00\x00w6\x00\x00\x06\x00\x00\x00|6\x00\x00\x07\x00\x00\x00\x836\x00\x00\x07\x00\x00\x00\x8b6\x00\x00\'\x00\x00\x00\x936\x00\x00\x1b\x00\x00\x00\xbb6\x00\x00\x19\x00\x00\x00\xd76\x00\x00\x06\x00\x00\x00\xf16\x00\x00\x0c\x00\x00\x00\xf86\x00\x00\t\x00\x00\x00\x057\x00\x00\x06\x00\x00\x00\x0f7\x00\x00\xdc\x01\x00\x00\x167\x00\x00n\x00\x00\x00\xf38\x00\x00a\x00\x00\x00b9\x00\x00\x0e\x00\x00\x00\xc49\x00\x00\x0e\x00\x00\x00\xd39\x00\x00\xa8\x00\x00\x00\xe29\x00\x00&\x00\x00\x00\x8b:\x00\x00\x10\x00\x00\x00\xb2:\x00\x00\x19\x00\x00\x00\xc3:\x00\x00\x1a\x00\x00\x00\xdd:\x00\x00.\x00\x00\x00\xf8:\x00\x00\x1a\x00\x00\x00\';\x00\x00\x1e\x00\x00\x00B;\x00\x00\x03\x00\x00\x00a;\x00\x00\x12\x00\x00\x00e;\x00\x00\x05\x00\x00\x00x;\x00\x00\n\x00\x00\x00~;\x00\x00,\x00\x00\x00\x89;\x00\x00\x07\x00\x00\x00\xb6;\x00\x00-\x00\x00\x00\xbe;\x00\x00\x0b\x00\x00\x00\xec;\x00\x00$\x00\x00\x00\xf8;\x00\x00$\x00\x00\x00\x1d<\x00\x00\x07\x00\x00\x00B<\x00\x000\x00\x00\x00J<\x00\x00\x10\x00\x00\x00{<\x00\x00\x08\x00\x00\x00\x8c<\x00\x00y\x00\x00\x00\x95<\x00\x00\x10\x00\x00\x00\x0f=\x00\x00\x04\x00\x00\x00 =\x00\x00\x06\x00\x00\x00%=\x00\x00"\x00\x00\x00,=\x00\x00\t\x00\x00\x00O=\x00\x00\n\x00\x00\x00Y=\x00\x00\x14\x00\x00\x00d=\x00\x00\x10\x00\x00\x00y=\x00\x00\x11\x00\x00\x00\x8a=\x00\x00\x08\x00\x00\x00\x9c=\x00\x00\x10\x00\x00\x00\xa5=\x00\x00\x12\x00\x00\x00\xb6=\x00\x00\x04\x00\x00\x00\xc9=\x00\x00^\x00\x00\x00\xce=\x00\x00\x0f\x00\x00\x00->\x00\x00\n\x00\x00\x00=>\x00\x00\x07\x00\x00\x00H>\x00\x00-\x00\x00\x00P>\x00\x00+\x00\x00\x00~>\x00\x00F\x00\x00\x00\xaa>\x00\x008\x00\x00\x00\xf1>\x00\x00s\x00\x00\x00*?\x00\x00\x0f\x00\x00\x00\x9e?\x00\x00\n\x00\x00\x00\xae?\x00\x00\x10\x00\x00\x00\xb9?\x00\x00:\x00\x00\x00\xca?\x00\x00\x0f\x00\x00\x00\x05@\x00\x00\x04\x00\x00\x00\x15@\x00\x00;\x00\x00\x00\x1a@\x00\x00G\x00\x00\x00V@\x00\x001\x00\x00\x00\x9e@\x00\x00Y\x00\x00\x00\xd0@\x00\x004\x00\x00\x00*A\x00\x00\x80\x00\x00\x00_A\x00\x00H\x00\x00\x00\xe0A\x00\x00\r\x00\x00\x00)B\x00\x00\x0f\x00\x00\x007B\x00\x00\xbc\x00\x00\x00GB\x00\x00\x1c\x00\x00\x00\x04C\x00\x00\x08\x00\x00\x00!C\x00\x00\t\x00\x00\x00*C\x00\x00\x06\x00\x00\x004C\x00\x00\x1e\x00\x00\x00;C\x00\x00\x13\x00\x00\x00ZC\x00\x00\x13\x00\x00\x00nC\x00\x00+\x00\x00\x00\x82C\x00\x00*\x00\x00\x00\xaeC\x00\x000\x00\x00\x00\xd9C\x00\x00)\x00\x00\x00\nD\x00\x00<\x00\x00\x004D\x00\x00\x0c\x00\x00\x00qD\x00\x00\x18\x00\x00\x00~D\x00\x00<\x00\x00\x00\x97D\x00\x000\x00\x00\x00\xd4D\x00\x00\x84\x00\x00\x00\x05E\x00\x00X\x00\x00\x00\x8aE\x00\x00\x12\x00\x00\x00\xe3E\x00\x00-\x00\x00\x00\xf6E\x00\x00\x0c\x00\x00\x00$F\x00\x00\x0c\x00\x00\x001F\x00\x00\x0c\x00\x00\x00>F\x00\x00"\x00\x00\x00KF\x00\x009\x00\x00\x00nF\x00\x00\x0f\x00\x00\x00\xa8F\x00\x00V\x00\x00\x00\xb8F\x00\x00r\x00\x00\x00\x0fG\x00\x00G\x00\x00\x00\x82G\x00\x00\'\x00\x00\x00\xcaG\x00\x00\x0e\x00\x00\x00\xf2G\x00\x00\x13\x00\x00\x00\x01H\x00\x00\x14\x00\x00\x00\x15H\x00\x00#\x00\x00\x00*H\x00\x00\x06\x00\x00\x00NH\x00\x00\r\x00\x00\x00UH\x00\x00\r\x00\x00\x00cH\x00\x00\x07\x00\x00\x00qH\x00\x00\x1e\x00\x00\x00yH\x00\x00\x0b\x00\x00\x00\x98H\x00\x00\x17\x00\x00\x00\xa4H\x00\x00\x1b\x00\x00\x00\xbcH\x00\x00\x1a\x00\x00\x00\xd8H\x00\x00\x0e\x00\x00\x00\xf3H\x00\x00^\x00\x00\x00\x02I\x00\x00\x12\x00\x00\x00aI\x00\x00\x10\x00\x00\x00tI\x00\x00\x10\x00\x00\x00\x85I\x00\x00g\x00\x00\x00\x96I\x00\x00c\x00\x00\x00\xfeI\x00\x007\x00\x00\x00bJ\x00\x00!\x00\x00\x00\x9aJ\x00\x00d\x00\x00\x00\xbcJ\x00\x00\t\x00\x00\x00!K\x00\x00\x17\x00\x00\x00+K\x00\x00\x16\x00\x00\x00CK\x00\x00\x11\x00\x00\x00ZK\x00\x00\x04\x01\x00\x00lK\x00\x00z\x00\x00\x00qL\x00\x00\x85\x00\x00\x00\xecL\x00\x00\xb6\x00\x00\x00rM\x00\x00P\x00\x00\x00)N\x00\x00+\x01\x00\x00zN\x00\x00#\x00\x00\x00\xa6O\x00\x00\x06\x00\x00\x00\xcaO\x00\x00\x17\x00\x00\x00\xd1O\x00\x00\x07\x00\x00\x00\xe9O\x00\x00\x03\x00\x00\x00\xf1O\x00\x00\n\x00\x00\x00\xf5O\x00\x00\x13\x00\x00\x00\x00P\x00\x00\x04\x00\x00\x00\x14P\x00\x00\x85\x00\x00\x00\x19P\x00\x00\x04\x00\x00\x00\x9fP\x00\x00\t\x00\x00\x00\xa4P\x00\x000\x00\x00\x00\xaeP\x00\x00X\x00\x00\x00\xdfP\x00\x00\x9d\x00\x00\x008Q\x00\x00&\x00\x00\x00\xd6Q\x00\x00\x1e\x00\x00\x00\xfdQ\x00\x00v\x00\x00\x00\x1cR\x00\x00\'\x00\x00\x00\x93R\x00\x00"\x00\x00\x00\xbbR\x00\x00B\x00\x00\x00\xdeR\x00\x00^\x00\x00\x00!S\x00\x00h\x00\x00\x00\x80S\x00\x00\t\x00\x00\x00\xe9S\x00\x00\x05\x00\x00\x00\xf3S\x00\x00\x15\x00\x00\x00\xf9S\x00\x00\x06\x00\x00\x00\x0fT\x00\x00+\x00\x00\x00\x16T\x00\x00\x1b\x00\x00\x00BT\x00\x00&\x00\x00\x00^T\x00\x00\x0b\x00\x00\x00\x85T\x00\x00\x07\x00\x00\x00\x91T\x00\x00\x13\x00\x00\x00\x99T\x00\x00\x0c\x00\x00\x00\xadT\x00\x00\x10\x00\x00\x00\xbaT\x00\x00\x10\x00\x00\x00\xcbT\x00\x00%\x00\x00\x00\xdcT\x00\x00\x1b\x00\x00\x00\x02U\x00\x00\xb4\x00\x00\x00\x1eU\x00\x002\x00\x00\x00\xd3U\x00\x00\x14\x00\x00\x00\x06V\x00\x00_\x00\x00\x00\x1bV\x00\x00:\x00\x00\x00{V\x00\x00*\x00\x00\x00\xb6V\x00\x00\x04\x00\x00\x00\xe1V\x00\x00\x14\x00\x00\x00\xe6V\x00\x00\x07\x00\x00\x00\xfbV\x00\x00\x07\x00\x00\x00\x03W\x00\x00-\x00\x00\x00\x0bW\x00\x00d\x00\x00\x009W\x00\x00#\x00\x00\x00\x9eW\x00\x002\x00\x00\x00\xc2W\x00\x003\x00\x00\x00\xf5W\x00\x00\x08\x00\x00\x00)X\x00\x00\t\x00\x00\x002X\x00\x00%\x01\x00\x00<X\x00\x00 \x00\x00\x00bY\x00\x00\x1d\x00\x00\x00\x83Y\x00\x00\x05\x00\x00\x00\xa1Y\x00\x00\x04\x00\x00\x00\xa7Y\x00\x00\x19\x00\x00\x00\xacY\x00\x00\r\x00\x00\x00\xc6Y\x00\x00\x07\x00\x00\x00\xd4Y\x00\x00\t\x00\x00\x00\xdcY\x00\x00\t\x00\x00\x00\xe6Y\x00\x00\n\x00\x00\x00\xf0Y\x00\x00"\x00\x00\x00\xfbY\x00\x00\x12\x00\x00\x00\x1eZ\x00\x00\x11\x00\x00\x001Z\x00\x00\x0e\x00\x00\x00CZ\x00\x00\x0f\x00\x00\x00RZ\x00\x00\x0b\x00\x00\x00bZ\x00\x00\x11\x00\x00\x00nZ\x00\x00\x15\x00\x00\x00\x80Z\x00\x00$\x00\x00\x00\x96Z\x00\x00\x0c\x00\x00\x00\xbbZ\x00\x000\x00\x00\x00\xc8Z\x00\x00\x18\x00\x00\x00\xf9Z\x00\x00\x12\x00\x00\x00\x12[\x00\x00-\x00\x00\x00%[\x00\x00&\x00\x00\x00S[\x00\x00\x1e\x00\x00\x00z[\x00\x00\x0b\x00\x00\x00\x99[\x00\x00\x13\x00\x00\x00\xa5[\x00\x001\x00\x00\x00\xb9[\x00\x00\r\x00\x00\x00\xeb[\x00\x00\x12\x00\x00\x00\xf9[\x00\x00+\x00\x00\x00\x0c\\\x00\x00\x08\x00\x00\x008\\\x00\x00\x0b\x00\x00\x00A\\\x00\x00\r\x00\x00\x00M\\\x00\x00\x14\x00\x00\x00[\\\x00\x00\x11\x00\x00\x00p\\\x00\x00\x1a\x00\x00\x00\x82\\\x00\x00\x10\x00\x00\x00\x9d\\\x00\x00\x08\x00\x00\x00\xae\\\x00\x00\x08\x00\x00\x00\xb7\\\x00\x00\x07\x00\x00\x00\xc0\\\x00\x00\x13\x00\x00\x00\xc8\\\x00\x00\x18\x00\x00\x00\xdc\\\x00\x00\x1e\x00\x00\x00\xf5\\\x00\x00\x05\x00\x00\x00\x14]\x00\x00\t\x00\x00\x00\x1a]\x00\x00\x11\x00\x00\x00$]\x00\x00\t\x00\x00\x006]\x00\x00\x17\x00\x00\x00@]\x00\x00\x03\x00\x00\x00X]\x00\x00/\x00\x00\x00\\]\x00\x00-\x00\x00\x00\x8c]\x00\x00;\x00\x00\x00\xba]\x00\x00\x1b\x00\x00\x00\xf6]\x00\x00-\x00\x00\x00\x12^\x00\x00\xa3\x01\x00\x00@^\x00\x00\x8c\x02\x00\x00\xe4_\x00\x00?\x00\x00\x00qb\x00\x00K\x00\x00\x00\xb1b\x00\x004\x00\x00\x00\xfdb\x00\x00\x8f\x00\x00\x002c\x00\x00j\x00\x00\x00\xc2c\x00\x00K\x00\x00\x00-d\x00\x00\xd5\x00\x00\x00yd\x00\x00\x7f\x00\x00\x00Oe\x00\x00\xcd\x00\x00\x00\xcfe\x00\x00\xa4\x01\x00\x00\x9df\x00\x00.\x00\x00\x00Bh\x00\x00\x01\x00\x00\x00qh\x00\x00e\x00\x00\x00sh\x00\x00\n\x00\x00\x00\xd9h\x00\x00\x16\x00\x00\x00\xe4h\x00\x00\x10\x00\x00\x00\xfbh\x00\x00\x18\x00\x00\x00\x0ci\x00\x00/\x00\x00\x00%i\x00\x007\x00\x00\x00Ui\x00\x00H\x00\x00\x00\x8di\x00\x00<\x00\x00\x00\xd6i\x00\x00\x0e\x00\x00\x00\x13j\x00\x003\x00\x00\x00"j\x00\x00}\x00\x00\x00Vj\x00\x00\x98\x00\x00\x00\xd4j\x00\x00$\x00\x00\x00mk\x00\x00!\x00\x00\x00\x92k\x00\x00M\x00\x00\x00\xb4k\x00\x00!\x00\x00\x00\x02l\x00\x00r\x00\x00\x00$l\x00\x00\t\x00\x00\x00\x97l\x00\x00\x10\x00\x00\x00\xa1l\x00\x00\x10\x00\x00\x00\xb2l\x00\x00\x05\x00\x00\x00\xc3l\x00\x00\t\x00\x00\x00\xc9l\x00\x00\'\x00\x00\x00\xd3l\x00\x00!\x00\x00\x00\xfbl\x00\x00\x13\x00\x00\x00\x1dm\x00\x00\x05\x00\x00\x001m\x00\x00\x11\x00\x00\x007m\x00\x00\x12\x00\x00\x00Im\x00\x00\t\x00\x00\x00\\m\x00\x00\x08\x00\x00\x00fm\x00\x00\x14\x00\x00\x00om\x00\x00\x1b\x00\x00\x00\x84m\x00\x00\x06\x00\x00\x00\xa0m\x00\x00\x1b\x00\x00\x00\xa7m\x00\x00\x07\x00\x00\x00\xc3m\x00\x003\x00\x00\x00\xcbm\x00\x00\x16\x00\x00\x00\xffm\x00\x00\x06\x00\x00\x00\x16n\x00\x00)\x00\x00\x00\x1dn\x00\x00\x07\x00\x00\x00Gn\x00\x008\x00\x00\x00On\x00\x00;\x00\x00\x00\x88n\x00\x001\x00\x00\x00\xc4n\x00\x00\x13\x00\x00\x00\xf6n\x00\x00%\x00\x00\x00\no\x00\x00\x16\x00\x00\x000o\x00\x00/\x00\x00\x00Go\x00\x00\x14\x00\x00\x00wo\x00\x00\x15\x00\x00\x00\x8co\x00\x00=\x00\x00\x00\xa2o\x00\x00!\x00\x00\x00\xe0o\x00\x00 \x00\x00\x00\x02p\x00\x005\x00\x00\x00#p\x00\x00\x1d\x00\x00\x00Yp\x00\x00g\x00\x00\x00wp\x00\x00-\x00\x00\x00\xdfp\x00\x00\x10\x00\x00\x00\rq\x00\x00\x1c\x00\x00\x00\x1eq\x00\x00\x16\x00\x00\x00;q\x00\x00\x15\x00\x00\x00Rq\x00\x00\n\x00\x00\x00hq\x00\x00\x1d\x00\x00\x00sq\x00\x00\x17\x00\x00\x00\x91q\x00\x00S\x00\x00\x00\xa9q\x00\x00\x1d\x00\x00\x00\xfdq\x00\x00\x1c\x00\x00\x00\x1br\x00\x00V\x00\x00\x008r\x00\x00\x18\x00\x00\x00\x8fr\x00\x00\x0e\x00\x00\x00\xa8r\x00\x00#\x00\x00\x00\xb7r\x00\x00\x1b\x00\x00\x00\xdbr\x00\x00&\x00\x00\x00\xf7r\x00\x00E\x00\x00\x00\x1es\x00\x00\x0b\x00\x00\x00ds\x00\x00\x0e\x00\x00\x00ps\x00\x00\n\x00\x00\x00\x7fs\x00\x00\x13\x00\x00\x00\x8as\x00\x00\x12\x00\x00\x00\x9es\x00\x00\x10\x00\x00\x00\xb1s\x00\x00\x19\x00\x00\x00\xc2s\x00\x00\x0f\x00\x00\x00\xdcs\x00\x00#\x00\x00\x00\xecs\x00\x00W\x00\x00\x00\x10t\x00\x00!\x00\x00\x00ht\x00\x00}\x00\x00\x00\x8at\x00\x00"\x00\x00\x00\x08u\x00\x00"\x00\x00\x00+u\x00\x00\x0b\x00\x00\x00Nu\x00\x00\x1f\x00\x00\x00Zu\x00\x00\x05\x00\x00\x00zu\x00\x002\x00\x00\x00\x80u\x00\x00\x06\x00\x00\x00\xb3u\x00\x00\x8f\x00\x00\x00\xbau\x00\x00\x14\x00\x00\x00Jv\x00\x00\x1b\x00\x00\x00_v\x00\x00!\x00\x00\x00{v\x00\x00\x10\x00\x00\x00\x9dv\x00\x00\x18\x00\x00\x00\xaev\x00\x00#\x00\x00\x00\xc7v\x00\x00\x01\x00\x00\x00\xebv\x00\x00\x05\x00\x00\x00\xedv\x00\x00\x18\x00\x00\x00\xf3v\x00\x00\x18\x00\x00\x00\x0cw\x00\x00\x1b\x00\x00\x00%w\x00\x00\x19\x00\x00\x00Aw\x00\x00 \x00\x00\x00[w\x00\x00\x13\x00\x00\x00|w\x00\x00-\x00\x00\x00\x90w\x00\x00V\x00\x00\x00\xbew\x00\x00\x06\x00\x00\x00\x15x\x00\x00,\x00\x00\x00\x1cx\x00\x00\x15\x00\x00\x00Ix\x00\x00)\x00\x00\x00_x\x00\x00$\x00\x00\x00\x89x\x00\x00,\x00\x00\x00\xaex\x00\x00:\x00\x00\x00\xdbx\x00\x00/\x00\x00\x00\x16y\x00\x00\n\x00\x00\x00Fy\x00\x00$\x00\x00\x00Qy\x00\x00\x0f\x00\x00\x00vy\x00\x00\x06\x00\x00\x00\x86y\x00\x00\x1d\x00\x00\x00\x8dy\x00\x00\x10\x00\x00\x00\xaby\x00\x00\x1f\x00\x00\x00\xbcy\x00\x00\x18\x00\x00\x00\xdcy\x00\x00\x17\x00\x00\x00\xf5y\x00\x00\x0c\x00\x00\x00\rz\x00\x00\x10\x00\x00\x00\x1az\x00\x00!\x00\x00\x00+z\x00\x00\x17\x00\x00\x00Mz\x00\x00\x1d\x00\x00\x00ez\x00\x00\x07\x00\x00\x00\x83z\x00\x00\x0b\x00\x00\x00\x8bz\x00\x00/\x00\x00\x00\x97z\x00\x00\x06\x00\x00\x00\xc7z\x00\x00"\x01\x00\x00\xcez\x00\x00^\x00\x00\x00\xf1{\x00\x001\x00\x00\x00P|\x00\x00\x03\x00\x00\x00\x82|\x00\x00\x07\x00\x00\x00\x86|\x00\x00\x08\x00\x00\x00\x8e|\x00\x00\t\x00\x00\x00\x97|\x00\x004\x00\x00\x00\xa1|\x00\x00!\x00\x00\x00\xd6|\x00\x00\x1e\x00\x00\x00\xf8|\x00\x00\n\x00\x00\x00\x17}\x00\x00\x12\x00\x00\x00"}\x00\x00\x16\x00\x00\x005}\x00\x00\x06\x00\x00\x00L}\x00\x00\xe2\x01\x00\x00S}\x00\x00\x8f\x00\x00\x006\x7f\x00\x00r\x00\x00\x00\xc6\x7f\x00\x00\x16\x00\x00\x009\x80\x00\x00\x12\x00\x00\x00P\x80\x00\x00\xc7\x00\x00\x00c\x80\x00\x00*\x00\x00\x00+\x81\x00\x00\x19\x00\x00\x00V\x81\x00\x00\x15\x00\x00\x00p\x81\x00\x00\x15\x00\x00\x00\x86\x81\x00\x000\x00\x00\x00\x9c\x81\x00\x00\x1f\x00\x00\x00\xcd\x81\x00\x00#\x00\x00\x00\xed\x81\x00\x00\x07\x00\x00\x00\x11\x82\x00\x00"\x00\x00\x00\x19\x82\x00\x00\t\x00\x00\x00<\x82\x00\x00\t\x00\x00\x00F\x82\x00\x009\x00\x00\x00P\x82\x00\x00\n\x00\x00\x00\x8a\x82\x00\x00<\x00\x00\x00\x95\x82\x00\x00\n\x00\x00\x00\xd2\x82\x00\x003\x00\x00\x00\xdd\x82\x00\x009\x00\x00\x00\x11\x83\x00\x00\r\x00\x00\x00K\x83\x00\x001\x00\x00\x00Y\x83\x00\x00\x11\x00\x00\x00\x8b\x83\x00\x00\t\x00\x00\x00\x9d\x83\x00\x00|\x00\x00\x00\xa7\x83\x00\x00\x17\x00\x00\x00$\x84\x00\x00\x04\x00\x00\x00<\x84\x00\x00\n\x00\x00\x00A\x84\x00\x006\x00\x00\x00L\x84\x00\x00\x11\x00\x00\x00\x83\x84\x00\x00\x16\x00\x00\x00\x95\x84\x00\x00\x17\x00\x00\x00\xac\x84\x00\x00\x13\x00\x00\x00\xc4\x84\x00\x00\x1b\x00\x00\x00\xd8\x84\x00\x00\x0c\x00\x00\x00\xf4\x84\x00\x00"\x00\x00\x00\x01\x85\x00\x00 \x00\x00\x00$\x85\x00\x00\x07\x00\x00\x00E\x85\x00\x00_\x00\x00\x00M\x85\x00\x00\x1e\x00\x00\x00\xad\x85\x00\x00\x0b\x00\x00\x00\xcc\x85\x00\x00\x08\x00\x00\x00\xd8\x85\x00\x00\x1d\x00\x00\x00\xe1\x85\x00\x00\x1b\x00\x00\x00\xff\x85\x00\x00H\x00\x00\x00\x1b\x86\x00\x00K\x00\x00\x00d\x86\x00\x00\x93\x00\x00\x00\xb0\x86\x00\x00\x11\x00\x00\x00D\x87\x00\x00\x19\x00\x00\x00V\x87\x00\x00\x19\x00\x00\x00p\x87\x00\x00J\x00\x00\x00\x8a\x87\x00\x00\x18\x00\x00\x00\xd5\x87\x00\x00\x04\x00\x00\x00\xee\x87\x00\x00:\x00\x00\x00\xf3\x87\x00\x00J\x00\x00\x00.\x88\x00\x001\x00\x00\x00y\x88\x00\x00r\x00\x00\x00\xab\x88\x00\x00G\x00\x00\x00\x1e\x89\x00\x00w\x00\x00\x00f\x89\x00\x00Z\x00\x00\x00\xde\x89\x00\x00\x10\x00\x00\x009\x8a\x00\x00\r\x00\x00\x00J\x8a\x00\x00\xc8\x00\x00\x00X\x8a\x00\x00\x19\x00\x00\x00!\x8b\x00\x00\x08\x00\x00\x00;\x8b\x00\x00\t\x00\x00\x00D\x8b\x00\x00\x0b\x00\x00\x00N\x8b\x00\x00 \x00\x00\x00Z\x8b\x00\x00\x19\x00\x00\x00{\x8b\x00\x00\x14\x00\x00\x00\x95\x8b\x00\x00-\x00\x00\x00\xaa\x8b\x00\x00-\x00\x00\x00\xd8\x8b\x00\x002\x00\x00\x00\x06\x8c\x00\x00+\x00\x00\x009\x8c\x00\x008\x00\x00\x00e\x8c\x00\x00\x0f\x00\x00\x00\x9e\x8c\x00\x00\x1e\x00\x00\x00\xae\x8c\x00\x00G\x00\x00\x00\xcd\x8c\x00\x001\x00\x00\x00\x15\x8d\x00\x00\x95\x00\x00\x00G\x8d\x00\x00N\x00\x00\x00\xdd\x8d\x00\x00\x1f\x00\x00\x00,\x8e\x00\x007\x00\x00\x00L\x8e\x00\x00\x08\x00\x00\x00\x84\x8e\x00\x00\x0c\x00\x00\x00\x8d\x8e\x00\x00\x13\x00\x00\x00\x9a\x8e\x00\x004\x00\x00\x00\xae\x8e\x00\x00=\x00\x00\x00\xe3\x8e\x00\x00\r\x00\x00\x00!\x8f\x00\x00\\\x00\x00\x00/\x8f\x00\x00~\x00\x00\x00\x8c\x8f\x00\x00C\x00\x00\x00\x0b\x90\x00\x000\x00\x00\x00O\x90\x00\x00\x15\x00\x00\x00\x80\x90\x00\x00\x1b\x00\x00\x00\x96\x90\x00\x00\x1d\x00\x00\x00\xb2\x90\x00\x000\x00\x00\x00\xd0\x90\x00\x00\x06\x00\x00\x00\x01\x91\x00\x00\x11\x00\x00\x00\x08\x91\x00\x00\r\x00\x00\x00\x1a\x91\x00\x00\x07\x00\x00\x00(\x91\x00\x001\x00\x00\x000\x91\x00\x00\x18\x00\x00\x00b\x91\x00\x00(\x00\x00\x00{\x91\x00\x00$\x00\x00\x00\xa4\x91\x00\x00&\x00\x00\x00\xc9\x91\x00\x00\x11\x00\x00\x00\xf0\x91\x00\x00`\x00\x00\x00\x02\x92\x00\x00\x1c\x00\x00\x00c\x92\x00\x00\x16\x00\x00\x00\x80\x92\x00\x00\x15\x00\x00\x00\x97\x92\x00\x00\x95\x00\x00\x00\xad\x92\x00\x00n\x00\x00\x00C\x93\x00\x00?\x00\x00\x00\xb2\x93\x00\x002\x00\x00\x00\xf2\x93\x00\x00m\x00\x00\x00%\x94\x00\x00\x0c\x00\x00\x00\x93\x94\x00\x00\x18\x00\x00\x00\xa0\x94\x00\x00\x1d\x00\x00\x00\xb9\x94\x00\x00\x1c\x00\x00\x00\xd7\x94\x00\x00\x1c\x01\x00\x00\xf4\x94\x00\x00y\x00\x00\x00\x11\x96\x00\x00\x88\x00\x00\x00\x8b\x96\x00\x00\xc5\x00\x00\x00\x14\x97\x00\x00M\x00\x00\x00\xda\x97\x00\x00V\x01\x00\x00(\x98\x00\x00%\x00\x00\x00\x7f\x99\x00\x00\x06\x00\x00\x00\xa5\x99\x00\x00\x1f\x00\x00\x00\xac\x99\x00\x00\x0b\x00\x00\x00\xcc\x99\x00\x00\x07\x00\x00\x00\xd8\x99\x00\x00\x15\x00\x00\x00\xe0\x99\x00\x00\x1e\x00\x00\x00\xf6\x99\x00\x00\t\x00\x00\x00\x15\x9a\x00\x00\x89\x00\x00\x00\x1f\x9a\x00\x00\x04\x00\x00\x00\xa9\x9a\x00\x00\t\x00\x00\x00\xae\x9a\x00\x00<\x00\x00\x00\xb8\x9a\x00\x00l\x00\x00\x00\xf5\x9a\x00\x00\x98\x00\x00\x00b\x9b\x00\x00-\x00\x00\x00\xfb\x9b\x00\x00#\x00\x00\x00)\x9c\x00\x00\x89\x00\x00\x00M\x9c\x00\x00*\x00\x00\x00\xd7\x9c\x00\x00)\x00\x00\x00\x02\x9d\x00\x00^\x00\x00\x00,\x9d\x00\x00s\x00\x00\x00\x8b\x9d\x00\x00z\x00\x00\x00\xff\x9d\x00\x00\x0f\x00\x00\x00z\x9e\x00\x00\x07\x00\x00\x00\x8a\x9e\x00\x00\x1f\x00\x00\x00\x92\x9e\x00\x00\x06\x00\x00\x00\xb2\x9e\x00\x008\x00\x00\x00\xb9\x9e\x00\x00!\x00\x00\x00\xf2\x9e\x00\x00%\x00\x00\x00\x14\x9f\x00\x00\r\x00\x00\x00:\x9f\x00\x00\x0b\x00\x00\x00H\x9f\x00\x00\x1b\x00\x00\x00T\x9f\x00\x00\x0e\x00\x00\x00p\x9f\x00\x00\x12\x00\x00\x00\x7f\x9f\x00\x00\x12\x00\x00\x00\x92\x9f\x00\x00;\x00\x00\x00\xa5\x9f\x00\x000\x00\x00\x00\xe1\x9f\x00\x00\xbc\x00\x00\x00\x12\xa0\x00\x00:\x00\x00\x00\xcf\xa0\x00\x00\x15\x00\x00\x00\n\xa1\x00\x00i\x00\x00\x00 \xa1\x00\x00N\x00\x00\x00\x8a\xa1\x00\x007\x00\x00\x00\xd9\xa1\x00\x00\x07\x00\x00\x00\x11\xa2\x00\x00\x19\x00\x00\x00\x19\xa2\x00\x00\x0c\x00\x00\x003\xa2\x00\x00\r\x00\x00\x00@\xa2\x00\x00,\x00\x00\x00N\xa2\x00\x00n\x00\x00\x00{\xa2\x00\x001\x00\x00\x00\xea\xa2\x00\x006\x00\x00\x00\x1c\xa3\x00\x002\x00\x00\x00S\xa3\x00\x00\n\x00\x00\x00\x86\xa3\x00\x00\t\x00\x00\x00\x91\xa3\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 profile\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="-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>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 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 profile\x00Add tag to available tags and apply it to current book\x00Add/Update &profile\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\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 profiles\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:\x00Feeds downloaded to %s\x00Feeds in profile\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\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 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 &title:\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: \x00Profile source code (python)\x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Reader\n%s available\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 profile\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.\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\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 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.\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-24 15:10+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:\x00Profil 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="-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>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\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\x00Neuen Feed zum Profil hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Profil 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\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 Benutzerprofile\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:\x00Feeds wurden nach %s heruntergeladen\x00Feeds im Profil\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\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\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\x00Profil&titel:\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:\x00Profil-Quellcode (Python)\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Sony Reader\n%s disponible\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\x00Feeds aus dem Profil 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.\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\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.\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.\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 4a0b1c37e2..9ddb7df78c 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-23 16:46+PDT\n" +"POT-Creation-Date: 2008-03-24 15:10+PDT\n" "PO-Revision-Date: 2008-03-21 11:00+0100\n" "Last-Translator: S. Dorscht <stdoonline@googlemail.com>\n" "Language-Team: de\n" @@ -464,7 +464,7 @@ msgstr "Zu einem neuen Ort der Datenbank wechseln" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:146 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:149 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:153 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:256 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:185 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:186 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:187 @@ -1263,27 +1263,76 @@ msgstr "" "Etikett zu den verfügbaren Etiketten hinzufügen und dem aktuellen Buch " "zuweisen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 -msgid "Add custom news source" -msgstr "Eigene Nachrichtenquelle hinzufügen" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -msgid "Available user profiles" -msgstr "Verfügbare Benutzerprofile" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 -msgid "Add/Update &profile" -msgstr "&Profil hinzufügen/aktualisieren" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 -msgid "&Remove profile" -msgstr "Profil entfe&rnen" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:60 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:70 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 msgid "Switch to Advanced mode" msgstr "In erweiterten Modus umschalten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:65 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:73 +msgid "Switch to Basic mode" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +msgid "Feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:84 +msgid "The feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:88 +msgid "Feed must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:89 +msgid "The feed %s must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:94 +msgid "Already exists" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:95 +msgid "This feed has already been added to the recipe" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:136 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:145 +msgid "Invalid input" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:137 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:146 +msgid "<p>Could not create recipe. Error:<br>%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:152 +msgid "Replace recipe?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:153 +msgid "A custom recipe named %s already exists. Do you want to replace it?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +msgid "Add custom news source" +msgstr "Eigene Nachrichtenquelle hinzufügen" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +msgid "Available user profiles" +msgstr "Verfügbare Benutzerprofile" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +msgid "Add/Update &profile" +msgstr "&Profil hinzufügen/aktualisieren" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +msgid "&Remove profile" +msgstr "Profil entfe&rnen" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:224 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1292,105 +1341,67 @@ msgid "" "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 " -"profile, by adding RSS feeds to it. <br />For most feeds, you will have to " -"use the \"Advanced\" setting to further customize the fetch process.<br /" -">The Basic tab is useful mainly for feeds that have the full article content " -"embedded within them.</p></body></html>" +"recipe, by adding RSS feeds to it. <br />For most feeds, you will have to " +"use the \"Advanced\" setting to further customize the fetch process.</p></" +"body></html>" msgstr "" -"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" -"\">\n" -"p, li { white-space: pre-wrap; }\n" -"</style></head><body style=\" font-family:'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 " -"Nachrichten-Grundprofil, indem Sie RSS Feeds hinzufügen. <br />Für die " -"meisten Feeds müssen Sie die \"Erweitert\" Einstellung verwenden, um den " -"Abruf weiter anzupassen.<br />Die Einstellung \"Einfach\" ist für Feeds " -"ausreichend, die den vollständigen Nachrichten-Inhalt im Feed schon " -"eingebettet haben.</p></body></html>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:244 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 msgid "Profile &title:" msgstr "Profil&titel:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:245 -msgid "&Summary length:" -msgstr "Länge der Zu&sammenfassung:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:246 -msgid " characters" -msgstr " Zeichen" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:247 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 msgid "&Oldest article:" msgstr "Ä<ester Artikel:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:248 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 msgid "The oldest article to download" msgstr "Ältester Artikel, der geladen wird" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:249 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 msgid " days" msgstr " Tage" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:250 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 msgid "&Max. number of articles per feed:" msgstr "&Maximale Anzahl der Artikel pro feed:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:251 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 msgid "Maximum number of articles to download per feed." msgstr "Maximale Anzahl der zu ladenden Artikel pro feed." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:252 -msgid "" -"Try to follow links in the RSS feed to full articles on the web. If you " -"enable this option, you're probably going to end up having to use the " -"advanced mode." -msgstr "" -"Verknüpfungen im RSS Feed bis zu den vollständigen Artikeln im Netz " -"verfolgen. Falls Sie diese Option wählen, müssen Sie in den meisten Fällen " -"den erweiterten Modus zur Konfiguration benutzen." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:253 -msgid "Try to download &full articles" -msgstr "Versuche &vollständige Artikel zu laden" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:254 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 msgid "Feeds in profile" msgstr "Feeds im Profil" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:255 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 msgid "Remove feed from profile" msgstr "Feeds aus dem Profil entfernen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:257 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:260 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 msgid "Add feed to profile" msgstr "Neuen Feed zum Profil hinzufügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:258 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 msgid "&Feed title:" msgstr "&Feed Titel:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:259 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 msgid "Feed &URL:" msgstr "Feed &URL:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:261 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 msgid "&Add feed" msgstr "Feed &anfügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:262 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:242 msgid "" -"For help with writing advanced news profiles, please visit <a href=\"https://" -"libprs500.kovidgoyal.net/wiki/UserProfiles\">UserProfiles</a>" +"For help with writing advanced news recipes, please visit <a href=\"http://" +"libprs500.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" msgstr "" -"Benötigen Sie Hilfe beim Erstellen von weiteren Nachrichten-Profilen? " -"Schauen Sie hier vorbei: <a href=\"https://libprs500.kovidgoyal.net/wiki/" -"UserProfiles\">UserProfiles</a>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:263 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:243 msgid "Profile source code (python)" msgstr "Profil-Quellcode (Python)" @@ -2062,7 +2073,7 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:91 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:512 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:511 msgid "Fetching feeds..." msgstr "Rufe Feeds ab..." @@ -2070,62 +2081,62 @@ msgstr "Rufe Feeds ab..." msgid "Unknown News Source" msgstr "Nachrichtenquelle unbekannt" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:413 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:412 msgid "Download finished" msgstr "Download beendet" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:415 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:414 msgid "Failed to download the following articles:" msgstr "Der Download der folgenden Artikel schlug fehl:" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:417 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:423 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:416 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:422 msgid " from " msgstr " von" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:421 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:420 msgid "Failed to download parts of the following articles:" msgstr "Der Download von Teilen der folgenden Artikel schlug fehl:" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:425 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:424 msgid "\tFailed links:" msgstr "\tFehlgeschlagene Verknüpfungen:" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:494 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:493 msgid "Could not fetch article. Run with --debug to see the reason" msgstr "" "Konnte Artikel nicht abrufen. Der erneute Start mit --debug zeigt mögliche " "Gründe an " -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:516 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:515 msgid "Got feeds from index page" msgstr "Feeds der Index Seite erhalten" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:520 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:519 msgid "Trying to download cover..." msgstr "Versuche Umschlagbild zu laden..." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:570 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:569 msgid "Starting download [%d thread(s)]..." msgstr "Starte Download von [%d Thread(s)]..." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:584 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:583 msgid "Feeds downloaded to %s" msgstr "Feeds wurden nach %s heruntergeladen" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:593 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:592 msgid "Could not download cover: %s" msgstr "Konnte Umschlagbild nicht laden: %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:598 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:597 msgid "Downloading cover from %s" msgstr "Lade Umschlagbild von %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:633 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:632 msgid "Untitled Article" msgstr "Artikel ohne Titel" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:674 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:673 msgid "" "\n" "Downloaded article %s from %s\n" @@ -2135,22 +2146,74 @@ msgstr "" "Artikel %s von %s geladen\n" "%s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:680 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:679 msgid "Article downloaded: %s" msgstr "Artikel geladen: %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:686 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:685 msgid "Failed to download article: %s from %s\n" msgstr "Laden der Artikel fehlgeschlagen: %s von %s\n" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:691 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:690 msgid "Article download failed: %s" msgstr "Laden der Artikel schlug fehl: %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:707 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:706 msgid "Fetching feed" msgstr "Rufe Feed ab" +#~ msgid "" +#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/" +#~ "css\">\n" +#~ "p, li { white-space: pre-wrap; }\n" +#~ "</style></head><body style=\" font-family:'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 " +#~ "profile, by adding RSS feeds to it. <br />For most feeds, you will have " +#~ "to use the \"Advanced\" setting to further customize the fetch process." +#~ "<br />The Basic tab is useful mainly for feeds that have the full article " +#~ "content embedded within them.</p></body></html>" +#~ msgstr "" +#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/" +#~ "css\">\n" +#~ "p, li { white-space: pre-wrap; }\n" +#~ "</style></head><body style=\" font-family:'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 " +#~ "Nachrichten-Grundprofil, indem Sie RSS Feeds hinzufügen. <br />Für die " +#~ "meisten Feeds müssen Sie die \"Erweitert\" Einstellung verwenden, um den " +#~ "Abruf weiter anzupassen.<br />Die Einstellung \"Einfach\" ist für Feeds " +#~ "ausreichend, die den vollständigen Nachrichten-Inhalt im Feed schon " +#~ "eingebettet haben.</p></body></html>" + +#~ msgid "&Summary length:" +#~ msgstr "Länge der Zu&sammenfassung:" + +#~ msgid " characters" +#~ msgstr " Zeichen" + +#~ msgid "" +#~ "Try to follow links in the RSS feed to full articles on the web. If you " +#~ "enable this option, you're probably going to end up having to use the " +#~ "advanced mode." +#~ msgstr "" +#~ "Verknüpfungen im RSS Feed bis zu den vollständigen Artikeln im Netz " +#~ "verfolgen. Falls Sie diese Option wählen, müssen Sie in den meisten " +#~ "Fällen den erweiterten Modus zur Konfiguration benutzen." + +#~ msgid "Try to download &full articles" +#~ msgstr "Versuche &vollständige Artikel zu laden" + +#~ msgid "" +#~ "For help with writing advanced news profiles, please visit <a href=" +#~ "\"https://libprs500.kovidgoyal.net/wiki/UserProfiles\">UserProfiles</a>" +#~ msgstr "" +#~ "Benötigen Sie Hilfe beim Erstellen von weiteren Nachrichten-Profilen? " +#~ "Schauen Sie hier vorbei: <a href=\"https://libprs500.kovidgoyal.net/wiki/" +#~ "UserProfiles\">UserProfiles</a>" + #~ msgid "Add custom RSS feed" #~ msgstr "Individuellen RSS feed hinzufügen" diff --git a/src/libprs500/translations/es.po b/src/libprs500/translations/es.po index 07d8bbe47a..a2ddff97a3 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-23 16:44+PDT\n" +"POT-Creation-Date: 2008-03-24 15:10+PDT\n" "PO-Revision-Date: 2007-11-16 09:21+0100\n" "Last-Translator: libprs500\n" "Language-Team: Spanish\n" @@ -453,7 +453,7 @@ msgstr "Navegar a la nueva ubicación de la base de datos" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:146 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:149 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:153 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:256 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:185 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:186 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:187 @@ -1216,27 +1216,76 @@ msgstr "" msgid "Add tag to available tags and apply it to current book" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 -msgid "Add custom news source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -msgid "Available user profiles" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 -msgid "Add/Update &profile" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 -msgid "&Remove profile" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:60 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:70 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 msgid "Switch to Advanced mode" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:65 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:73 +msgid "Switch to Basic mode" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +msgid "Feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:84 +msgid "The feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:88 +msgid "Feed must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:89 +msgid "The feed %s must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:94 +msgid "Already exists" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:95 +msgid "This feed has already been added to the recipe" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:136 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:145 +msgid "Invalid input" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:137 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:146 +msgid "<p>Could not create recipe. Error:<br>%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:152 +msgid "Replace recipe?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:153 +msgid "A custom recipe named %s already exists. Do you want to replace it?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +msgid "Add custom news source" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +msgid "Available user profiles" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +msgid "Add/Update &profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +msgid "&Remove profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:224 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1245,87 +1294,67 @@ msgid "" "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 " -"profile, by adding RSS feeds to it. <br />For most feeds, you will have to " -"use the \"Advanced\" setting to further customize the fetch process.<br /" -">The Basic tab is useful mainly for feeds that have the full article content " -"embedded within them.</p></body></html>" +"recipe, by adding RSS feeds to it. <br />For most feeds, you will have to " +"use the \"Advanced\" setting to further customize the fetch process.</p></" +"body></html>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:244 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 msgid "Profile &title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:245 -msgid "&Summary length:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:246 -msgid " characters" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:247 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 msgid "&Oldest article:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:248 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 msgid "The oldest article to download" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:249 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 msgid " days" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:250 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 msgid "&Max. number of articles per feed:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:251 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 msgid "Maximum number of articles to download per feed." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:252 -msgid "" -"Try to follow links in the RSS feed to full articles on the web. If you " -"enable this option, you're probably going to end up having to use the " -"advanced mode." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:253 -msgid "Try to download &full articles" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:254 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 msgid "Feeds in profile" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:255 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 msgid "Remove feed from profile" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:257 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:260 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 msgid "Add feed to profile" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:258 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 msgid "&Feed title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:259 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 msgid "Feed &URL:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:261 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 msgid "&Add feed" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:262 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:242 msgid "" -"For help with writing advanced news profiles, please visit <a href=\"https://" -"libprs500.kovidgoyal.net/wiki/UserProfiles\">UserProfiles</a>" +"For help with writing advanced news recipes, please visit <a href=\"http://" +"libprs500.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:263 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:243 msgid "Profile source code (python)" msgstr "" @@ -1948,7 +1977,7 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:91 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:512 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:511 msgid "Fetching feeds..." msgstr "" @@ -1956,79 +1985,79 @@ msgstr "" msgid "Unknown News Source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:413 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:412 msgid "Download finished" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:415 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:414 msgid "Failed to download the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:417 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:423 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:416 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:422 msgid " from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:421 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:420 msgid "Failed to download parts of the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:425 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:424 msgid "\tFailed links:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:494 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:493 msgid "Could not fetch article. Run with --debug to see the reason" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:516 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:515 msgid "Got feeds from index page" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:520 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:519 msgid "Trying to download cover..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:570 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:569 msgid "Starting download [%d thread(s)]..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:584 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:583 msgid "Feeds downloaded to %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:593 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:592 msgid "Could not download cover: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:598 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:597 msgid "Downloading cover from %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:633 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:632 msgid "Untitled Article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:674 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:673 msgid "" "\n" "Downloaded article %s from %s\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:680 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:679 msgid "Article downloaded: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:686 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:685 msgid "Failed to download article: %s from %s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:691 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:690 msgid "Article download failed: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:707 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:706 msgid "Fetching feed" msgstr "" diff --git a/src/libprs500/translations/fr.po b/src/libprs500/translations/fr.po index 7bc7a96945..5cde22c351 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-23 16:44+PDT\n" +"POT-Creation-Date: 2008-03-24 15:10+PDT\n" "PO-Revision-Date: 2008-01-20 09:59+0100\n" "Last-Translator: FixB <fix.bornes@free.fr>\n" "Language-Team: fr\n" @@ -455,7 +455,7 @@ msgstr "Choisir un nouvel emplacement pour la base de données" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:146 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:149 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:153 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:256 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:185 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:186 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:187 @@ -1231,27 +1231,76 @@ msgid "Add tag to available tags and apply it to current book" msgstr "" "Ajoute le mot-clef à la liste des mots-clefs et l'applique au livre en cours" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 -msgid "Add custom news source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -msgid "Available user profiles" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 -msgid "Add/Update &profile" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 -msgid "&Remove profile" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:60 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:70 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 msgid "Switch to Advanced mode" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:65 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:73 +msgid "Switch to Basic mode" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +msgid "Feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:84 +msgid "The feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:88 +msgid "Feed must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:89 +msgid "The feed %s must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:94 +msgid "Already exists" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:95 +msgid "This feed has already been added to the recipe" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:136 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:145 +msgid "Invalid input" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:137 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:146 +msgid "<p>Could not create recipe. Error:<br>%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:152 +msgid "Replace recipe?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:153 +msgid "A custom recipe named %s already exists. Do you want to replace it?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +msgid "Add custom news source" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +msgid "Available user profiles" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +msgid "Add/Update &profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +msgid "&Remove profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:224 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1260,87 +1309,67 @@ msgid "" "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 " -"profile, by adding RSS feeds to it. <br />For most feeds, you will have to " -"use the \"Advanced\" setting to further customize the fetch process.<br /" -">The Basic tab is useful mainly for feeds that have the full article content " -"embedded within them.</p></body></html>" +"recipe, by adding RSS feeds to it. <br />For most feeds, you will have to " +"use the \"Advanced\" setting to further customize the fetch process.</p></" +"body></html>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:244 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 msgid "Profile &title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:245 -msgid "&Summary length:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:246 -msgid " characters" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:247 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 msgid "&Oldest article:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:248 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 msgid "The oldest article to download" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:249 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 msgid " days" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:250 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 msgid "&Max. number of articles per feed:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:251 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 msgid "Maximum number of articles to download per feed." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:252 -msgid "" -"Try to follow links in the RSS feed to full articles on the web. If you " -"enable this option, you're probably going to end up having to use the " -"advanced mode." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:253 -msgid "Try to download &full articles" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:254 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 msgid "Feeds in profile" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:255 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 msgid "Remove feed from profile" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:257 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:260 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 msgid "Add feed to profile" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:258 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 msgid "&Feed title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:259 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 msgid "Feed &URL:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:261 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 msgid "&Add feed" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:262 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:242 msgid "" -"For help with writing advanced news profiles, please visit <a href=\"https://" -"libprs500.kovidgoyal.net/wiki/UserProfiles\">UserProfiles</a>" +"For help with writing advanced news recipes, please visit <a href=\"http://" +"libprs500.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:263 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:243 msgid "Profile source code (python)" msgstr "" @@ -1971,7 +2000,7 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:91 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:512 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:511 msgid "Fetching feeds..." msgstr "" @@ -1979,79 +2008,79 @@ msgstr "" msgid "Unknown News Source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:413 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:412 msgid "Download finished" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:415 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:414 msgid "Failed to download the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:417 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:423 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:416 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:422 msgid " from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:421 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:420 msgid "Failed to download parts of the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:425 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:424 msgid "\tFailed links:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:494 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:493 msgid "Could not fetch article. Run with --debug to see the reason" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:516 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:515 msgid "Got feeds from index page" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:520 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:519 msgid "Trying to download cover..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:570 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:569 msgid "Starting download [%d thread(s)]..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:584 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:583 msgid "Feeds downloaded to %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:593 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:592 msgid "Could not download cover: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:598 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:597 msgid "Downloading cover from %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:633 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:632 msgid "Untitled Article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:674 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:673 msgid "" "\n" "Downloaded article %s from %s\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:680 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:679 msgid "Article downloaded: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:686 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:685 msgid "Failed to download article: %s from %s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:691 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:690 msgid "Article download failed: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:707 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:706 msgid "Fetching feed" msgstr "" diff --git a/src/libprs500/translations/it.po b/src/libprs500/translations/it.po index 89e55b93cf..f3a12d4089 100644 --- a/src/libprs500/translations/it.po +++ b/src/libprs500/translations/it.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: libprs500 0.4.43\n" -"POT-Creation-Date: 2008-03-23 16:44+PDT\n" +"POT-Creation-Date: 2008-03-24 15:10+PDT\n" "PO-Revision-Date: 2008-03-23 16:44+PDT\n" "Last-Translator: Automatically generated\n" "Language-Team: it\n" @@ -14,10 +14,8 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" - #: /home/kovid/work/libprs500/src/libprs500/__init__.py:95 -msgid "" -"%sUsage%s: %s\n" +msgid "%sUsage%s: %s\n" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/__init__.py:132 @@ -29,7 +27,9 @@ msgid "Set the title. Default: filename." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:102 -msgid "Set the author(s). Multiple authors should be set as a comma separated list. Default: %default" +msgid "" +"Set the author(s). Multiple authors should be set as a comma separated list. " +"Default: %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:103 @@ -64,7 +64,9 @@ msgid "Path to file containing image to be used as cover" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:117 -msgid "If there is a cover graphic detected in the source file, use that instead of the specified cover." +msgid "" +"If there is a cover graphic detected in the source file, use that instead of " +"the specified cover." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:120 @@ -72,11 +74,16 @@ msgid "Output file name. Default is derived from input filename" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:122 -msgid "Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables." +msgid "" +"Render HTML tables as blocks of text instead of actual tables. This is " +"neccessary if the HTML contains very large or complex tables." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:125 -msgid "Specify 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." +msgid "" +"Specify 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." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:127 @@ -96,27 +103,42 @@ msgid "Add a header to all the pages with title and author." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:136 -msgid "Set the format of the header. %a is replaced by the author and %t by the title. Default is %default" +msgid "" +"Set the format of the header. %a is replaced by the author and %t by the " +"title. Default is %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:138 -msgid "Override the CSS. Can be either a path to a CSS stylesheet or a string. If it is a string it is interpreted as CSS." +msgid "" +"Override the CSS. Can be either a path to a CSS stylesheet or a string. If " +"it is a string it is interpreted as CSS." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:140 -msgid "Use the <spine> element from the OPF file to determine the order in which the HTML files are appended to the LRF. The .opf file must be in the same directory as the base HTML file." +msgid "" +"Use the <spine> element from the OPF file to determine the order in which " +"the HTML files are appended to the LRF. The .opf file must be in the same " +"directory as the base HTML file." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:144 -msgid "Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased." +msgid "" +"Increase the font size by 2 * FONT_DELTA pts and the line spacing by " +"FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the " +"font size is decreased." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:149 -msgid "Render all content as black on white instead of the colors specified by the HTML or CSS." +msgid "" +"Render all content as black on white instead of the colors specified by the " +"HTML or CSS." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:156 -msgid "Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: " +msgid "" +"Profile of the target device for which this LRF is being generated. The " +"profile determines things like the resolution and screen size of the target " +"device. Default: %s Supported profiles: " msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:162 @@ -136,31 +158,51 @@ msgid "Bottom margin of page. Default is %default px." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:172 -msgid "The maximum number of levels to recursively process links. A value of 0 means thats links are not followed. A negative value means that <a> tags are ignored." +msgid "" +"The maximum number of levels to recursively process links. A value of 0 " +"means thats links are not followed. A negative value means that <a> tags are " +"ignored." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:176 -msgid "A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default" +msgid "" +"A regular expression. <a> tags whoose href matches will be ignored. Defaults " +"to %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:181 -msgid "Prevent the automatic insertion of page breaks before detected chapters." +msgid "" +"Prevent the automatic insertion of page breaks before detected chapters." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:185 -msgid "The regular expression used to detect chapter titles. It is searched for in heading tags (h1-h6). Defaults to %default" +msgid "" +"The regular expression used to detect chapter titles. It is searched for in " +"heading tags (h1-h6). Defaults to %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:188 -msgid "If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to \"$\". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements." +msgid "" +"If html2lrf does not find any page breaks in the html file and cannot detect " +"chapter headings, it will automatically insert page-breaks before the tags " +"whose names match this regular expression. Defaults to %default. You can " +"disable it by setting the regexp to \"$\". The purpose of this option is to " +"try to ensure that there are no really long pages as this degrades the page " +"turn performance of the LRF. Thus this option is ignored if the current page " +"has only a few elements." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:198 -msgid "Force a page break before tags whoose names match this regular expression." +msgid "" +"Force a page break before tags whoose names match this regular expression." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:200 -msgid "Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class=\"chapter\" you would use \"h\\d,class,chapter\". Default is %default" +msgid "" +"Force a page break before an element having the specified attribute. The " +"format for this option is tagname regexp,attribute name,attribute value " +"regexp. For example to match all heading tags that have the attribute class=" +"\"chapter\" you would use \"h\\d,class,chapter\". Default is %default" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:203 @@ -168,7 +210,9 @@ msgid "Preprocess Baen HTML files to improve generated LRF." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:205 -msgid "You must add this option if processing files generated by pdftohtml, otherwise conversion will fail." +msgid "" +"You must add this option if processing files generated by pdftohtml, " +"otherwise conversion will fail." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:207 @@ -177,7 +221,10 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:210 msgid "" -"Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: \"path to fonts directory, family\" For example: --serif-family \"%s, Times New Roman\"\n" +"Specify trutype font families for serif, sans-serif and monospace fonts. " +"These fonts will be embedded in the LRF file. Note that custom fonts lead to " +"slower page turns. Each family specification is of the form: \"path to fonts " +"directory, family\" For example: --serif-family \"%s, Times New Roman\"\n" " " msgstr "" @@ -194,25 +241,23 @@ msgid "The monospace family of fonts to embed" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:233 -msgid "Minimize memory usage at the cost of longer processing times. Use this option if you are on a memory constrained machine." +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/feeds/convert_from.py:32 msgid "Options to control the behavior of feeds2disk" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:34 msgid "Options to control the behavior of html2lrf" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:56 msgid "Fetching of recipe failed: " msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:515 #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:522 msgid "Could not parse file: %s" @@ -259,7 +304,9 @@ msgid "Don't know what this is for" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:414 -msgid "Path to output directory in which to create the HTML file. Defaults to current directory." +msgid "" +"Path to output directory in which to create the HTML file. Defaults to " +"current directory." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:416 @@ -270,27 +317,24 @@ msgstr "" msgid "You must specify a single PDF file." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:58 -msgid "Could not fetch cover as server is experiencing high load. Please try again later." +msgid "" +"Could not fetch cover as server is experiencing high load. Please try again " +"later." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 msgid " not found." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:62 msgid "Server error. Try again later." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:43 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:62 msgid "TextLabel" @@ -346,7 +390,7 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:146 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:149 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:153 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:256 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:185 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:186 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:187 @@ -368,7 +412,9 @@ msgid "Default network &timeout:" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:225 -msgid "Set the default timeout for network fetches (i.e. anytime we go out to the internet to get information)" +msgid "" +"Set the default timeout for network fetches (i.e. anytime we go out to the " +"internet to get information)" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:226 @@ -407,7 +453,6 @@ msgstr "" msgid "&Metadata from file name" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/conversion_error_ui.py:37 msgid "ERROR" msgstr "" @@ -420,37 +465,32 @@ msgstr "" msgid "You must specify a valid access key for isbndb.com" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:89 msgid "Fetch metadata" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:90 msgid "Fetching metadata for <b>%1</b>" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:91 -msgid "Sign up for a free account from <a href=\"http://www.isbndb.com\">ISBNdb.com</a> to get an access key." +msgid "" +"Sign up for a free account from <a href=\"http://www.isbndb.com\">ISBNdb." +"com</a> to get an access key." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:92 msgid "&Access Key;" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:93 msgid "Fetch" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:94 msgid "Matches" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:95 msgid "Select the book that most closely matches your copy from the list below" msgstr "" @@ -513,7 +553,9 @@ msgid " is not a valid picture" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:257 -msgid "Preprocess the file before converting to LRF. This is useful if you know that the file is from a specific source. Known sources:" +msgid "" +"Preprocess the file before converting to LRF. This is useful if you know " +"that the file is from a specific source. Known sources:" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:258 @@ -521,7 +563,9 @@ msgid "<ol><li><b>baen</b> - Books from BAEN Publishers</li>" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:259 -msgid "<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>" +msgid "" +"<li><b>pdftohtml</b> - HTML files that are the output of the program " +"pdftohtml</li>" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:260 @@ -529,7 +573,9 @@ msgid "<li><b>book-designer</b> - HTML0 files from Book Designer</li>" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:293 -msgid "Specify metadata such as title and author for the book.<p>Metadata will be updated in the database as well as the generated LRF file." +msgid "" +"Specify metadata such as title and author for the book.<p>Metadata will be " +"updated in the database as well as the generated LRF file." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:293 @@ -538,7 +584,9 @@ msgid "Metadata" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:294 -msgid "Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words." +msgid "" +"Adjust the look of the generated LRF file by specifying things like font " +"sizes and the spacing between words." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:294 @@ -547,7 +595,9 @@ msgid "Look & Feel" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:295 -msgid "Specify the page settings like margins and the screen size of the target device." +msgid "" +"Specify the page settings like margins and the screen size of the target " +"device." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:295 @@ -623,7 +673,9 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:617 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:130 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:303 -msgid "Change the author(s) of this book. Multiple authors should be separated by a comma" +msgid "" +"Change the author(s) of this book. Multiple authors should be separated by a " +"comma" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:616 @@ -650,7 +702,9 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:621 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:140 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:313 -msgid "Tags categorize the book. This is particularly useful while searching. <br><br>They can be any words or phrases, separated by commas." +msgid "" +"Tags categorize the book. This is particularly useful while searching. " +"<br><br>They can be any words or phrases, separated by commas." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:622 @@ -821,42 +875,42 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:666 msgid "" -"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n" +"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" +"\">\n" "p, li { white-space: pre-wrap; }\n" -"</style></head><body style=\" font-family:'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>" +"</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>" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:127 msgid "Edit Meta information" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:128 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:299 msgid "Meta information" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:131 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:304 msgid "Author S&ort: " msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:132 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:305 -msgid "Specify how the author(s) of this book should be sorted. For example Charles Dickens should be sorted as Dickens, Charles." +msgid "" +"Specify how the author(s) of this book should be sorted. For example Charles " +"Dickens should be sorted as Dickens, Charles." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:133 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:306 msgid "&Rating:" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:134 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:135 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:307 @@ -864,104 +918,88 @@ msgstr "" msgid "Rating of this book. 0-5 stars" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:136 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:309 msgid " stars" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:139 msgid "Add Ta&gs: " msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:141 msgid "&Remove tags:" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:142 msgid "Comma separated list of tags to remove from the books. " msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:236 -msgid "<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>" +msgid "" +"<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>" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:266 msgid "<b>Could not fetch cover.</b><br/>" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:266 msgid "Could not fetch cover" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:272 msgid "Cannot fetch cover" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:272 msgid "You must specify the ISBN identifier for this book." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:298 msgid "Edit Meta Information" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:314 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:315 msgid "Open Tag Editor" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:319 msgid "Remove unused series (Series that have no books)" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:324 msgid "IS&BN:" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:326 msgid "Fetch metadata from server" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:327 msgid "Available Formats" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:328 msgid "Add a new format for this book to the database" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:330 msgid "Remove the selected formats for this book from the database." msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:336 msgid "Fetch cover image from server" msgstr "" -#: #: /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" +msgid "" +"Change the username and/or password for your account at LibraryThing.com" msgstr "" -#: #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:338 msgid "Change password" msgstr "" @@ -1025,7 +1063,9 @@ msgid "The text to search for. It is interpreted as a regular expression." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:43 -msgid "<p>Negate this match. That is, only return results that <b>do not</b> match this query." +msgid "" +"<p>Negate this match. That is, only return results that <b>do not</b> match " +"this query." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:44 @@ -1065,7 +1105,9 @@ msgid "A&vailable tags" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:143 -msgid "Delete tag from database. This will unapply the tag from all books and then remove it from the database." +msgid "" +"Delete tag from database. This will unapply the tag from all books and then " +"remove it from the database." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:145 @@ -1085,140 +1127,164 @@ msgid "&Add tag:" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:151 -msgid "If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags." +msgid "" +"If the tag you want is not in the available list, you can add it here. " +"Accepts a comma separated list of tags." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:152 msgid "Add tag to available tags and apply it to current book" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 -msgid "Add custom news source" -msgstr "" - -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -msgid "Available user profiles" -msgstr "" - -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 -msgid "Add/Update &profile" -msgstr "" - -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 -msgid "&Remove profile" -msgstr "" - -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:60 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:70 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 msgid "Switch to Advanced mode" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 -msgid "" -"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n" -"p, li { white-space: pre-wrap; }\n" -"</style></head><body style=\" font-family:'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 profile, by adding RSS feeds to it. <br />For most feeds, you will have to use the \"Advanced\" setting to further customize the fetch process.<br />The Basic tab is useful mainly for feeds that have the full article content embedded within them.</p></body></html>" +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:65 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:73 +msgid "Switch to Basic mode" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:244 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +msgid "Feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:84 +msgid "The feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:88 +msgid "Feed must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:89 +msgid "The feed %s must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:94 +msgid "Already exists" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:95 +msgid "This feed has already been added to the recipe" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:136 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:145 +msgid "Invalid input" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:137 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:146 +msgid "<p>Could not create recipe. Error:<br>%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:152 +msgid "Replace recipe?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:153 +msgid "A custom recipe named %s already exists. Do you want to replace it?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +msgid "Add custom news source" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +msgid "Available user profiles" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +msgid "Add/Update &profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +msgid "&Remove profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:224 +msgid "" +"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" +"\">\n" +"p, li { white-space: pre-wrap; }\n" +"</style></head><body style=\" font-family:'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\" setting to further customize the fetch process.</p></" +"body></html>" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 msgid "Profile &title:" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:245 -msgid "&Summary length:" -msgstr "" - -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:246 -msgid " characters" -msgstr "" - -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:247 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 msgid "&Oldest article:" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:248 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 msgid "The oldest article to download" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:249 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 msgid " days" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:250 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 msgid "&Max. number of articles per feed:" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:251 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 msgid "Maximum number of articles to download per feed." msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:252 -msgid "Try to follow links in the RSS feed to full articles on the web. If you enable this option, you're probably going to end up having to use the advanced mode." -msgstr "" - -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:253 -msgid "Try to download &full articles" -msgstr "" - -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:254 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 msgid "Feeds in profile" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:255 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 msgid "Remove feed from profile" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:257 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:260 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 msgid "Add feed to profile" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:258 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 msgid "&Feed title:" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:259 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 msgid "Feed &URL:" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:261 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 msgid "&Add feed" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:262 -msgid "For help with writing advanced news profiles, please visit <a href=\"https://libprs500.kovidgoyal.net/wiki/UserProfiles\">UserProfiles</a>" +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:242 +msgid "" +"For help with writing advanced news recipes, please visit <a href=\"http://" +"libprs500.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" msgstr "" -#: -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:263 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:243 msgid "Profile source code (python)" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:114 -msgid "<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." +msgid "" +"<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." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:115 @@ -1323,7 +1389,9 @@ msgid "Cannot kill job" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:356 -msgid "Cannot kill jobs that are communicating with the device as this may cause data corruption." +msgid "" +"Cannot kill jobs that are communicating with the device as this may cause " +"data corruption." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:360 @@ -1471,11 +1539,15 @@ msgid "Add books from a single directory" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:123 -msgid "Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)" +msgid "" +"Add books recursively (One book per directory, assumes every ebook file is " +"the same book in a different format)" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:124 -msgid "Add books recursively (Multiple books per directory, assumes every ebook file is a different book)" +msgid "" +"Add books recursively (Multiple books per directory, assumes every ebook " +"file is a different book)" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:138 @@ -1506,7 +1578,9 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:315 #: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:381 -msgid "<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>" +msgid "" +"<p>Books with the same title as the following already exist in the database. " +"Add them anyway?<ul>" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:318 @@ -1589,7 +1663,9 @@ msgid "Invalid database" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:865 -msgid "<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s" +msgid "" +"<p>An invalid database already exists at %s, delete it before trying to move " +"the existing database.<br>Error: %s" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:873 @@ -1601,7 +1677,9 @@ msgid "Error talking to device" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:924 -msgid "There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot." +msgid "" +"There was a temporary error talking to the device. Please unplug and " +"reconnect the device and or reboot." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:266 @@ -1610,10 +1688,18 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:267 msgid "" -"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css\">\n" +"<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" +"\">\n" "p, li { white-space: pre-wrap; }\n" -"</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;\">\n" -"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href=\"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>" +"</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>" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:271 @@ -1629,11 +1715,15 @@ msgid "&Search:" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:275 -msgid "Search the list of books by title or author<br><br>Words separated by spaces are ANDed" +msgid "" +"Search the list of books by title or author<br><br>Words separated by spaces " +"are ANDed" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:276 -msgid "Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed" +msgid "" +"Search the list of books by title, author, publisher, tags and " +"comments<br><br>Words separated by spaces are ANDed" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:277 @@ -1682,7 +1772,9 @@ msgid "Add a custom news source" msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:65 -msgid "<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." +msgid "" +"<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." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:91 @@ -1742,8 +1834,10 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 msgid "" "Specify a list of feeds to download. For example: \n" -"\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/headlines/politics']\"\n" -"If you specify this option, any argument to %prog is ignored and a default recipe is used to download the feeds." +"\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" +"headlines/politics']\"\n" +"If you specify this option, any argument to %prog is ignored and a default " +"recipe is used to download the feeds." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 @@ -1751,7 +1845,9 @@ msgid "Be more verbose while processing." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 -msgid "The title for this recipe. Used as the title for any ebooks created from the downloaded feeds." +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:54 @@ -1763,11 +1859,15 @@ msgid "Password for sites that require a login to access content." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:58 -msgid "Number of levels of links to follow on webpages that are linked to from feeds. Defaul %default" +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:60 -msgid "The directory in which to store the downloaded feeds. Defaults to the current directory." +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:62 @@ -1779,12 +1879,14 @@ msgid "Very verbose output, useful for debugging." msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:66 -msgid "Useful for recipe development. Forces max_articles_per_feed to 2 and downloads at most 2 feeds." +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:91 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:512 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:511 msgid "Fetching feeds..." msgstr "" @@ -1792,80 +1894,78 @@ msgstr "" msgid "Unknown News Source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:413 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:412 msgid "Download finished" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:415 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:414 msgid "Failed to download the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:417 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:423 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:416 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:422 msgid " from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:421 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:420 msgid "Failed to download parts of the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:425 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:424 msgid "\tFailed links:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:494 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:493 msgid "Could not fetch article. Run with --debug to see the reason" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:516 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:515 msgid "Got feeds from index page" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:520 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:519 msgid "Trying to download cover..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:570 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:569 msgid "Starting download [%d thread(s)]..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:584 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:583 msgid "Feeds downloaded to %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:593 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:592 msgid "Could not download cover: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:598 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:597 msgid "Downloading cover from %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:633 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:632 msgid "Untitled Article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:674 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:673 msgid "" "\n" "Downloaded article %s from %s\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:680 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:679 msgid "Article downloaded: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:686 -msgid "" -"Failed to download article: %s from %s\n" +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:685 +msgid "Failed to download article: %s from %s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:691 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:690 msgid "Article download failed: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:707 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:706 msgid "Fetching feed" msgstr "" - diff --git a/src/libprs500/translations/sl.po b/src/libprs500/translations/sl.po index 05ca68ceba..9b69f08868 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-23 16:44+PDT\n" +"POT-Creation-Date: 2008-03-24 15:10+PDT\n" "PO-Revision-Date: 2007-11-08 14:39+PST\n" "Last-Translator: Automatically generated\n" "Language-Team: sl\n" @@ -390,7 +390,7 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:146 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:149 #: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:153 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:256 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:185 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:186 #: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:187 @@ -1136,27 +1136,76 @@ msgstr "" msgid "Add tag to available tags and apply it to current book" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 -msgid "Add custom news source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -msgid "Available user profiles" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 -msgid "Add/Update &profile" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 -msgid "&Remove profile" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:60 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:70 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 msgid "Switch to Advanced mode" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:65 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:73 +msgid "Switch to Basic mode" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +msgid "Feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:84 +msgid "The feed must have a title" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:88 +msgid "Feed must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:89 +msgid "The feed %s must have a URL" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:94 +msgid "Already exists" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:95 +msgid "This feed has already been added to the recipe" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:136 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:145 +msgid "Invalid input" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:137 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:146 +msgid "<p>Could not create recipe. Error:<br>%s" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:152 +msgid "Replace recipe?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:153 +msgid "A custom recipe named %s already exists. Do you want to replace it?" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +msgid "Add custom news source" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +msgid "Available user profiles" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +msgid "Add/Update &profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +msgid "&Remove profile" +msgstr "" + +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:224 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1165,87 +1214,67 @@ msgid "" "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 " -"profile, by adding RSS feeds to it. <br />For most feeds, you will have to " -"use the \"Advanced\" setting to further customize the fetch process.<br /" -">The Basic tab is useful mainly for feeds that have the full article content " -"embedded within them.</p></body></html>" +"recipe, by adding RSS feeds to it. <br />For most feeds, you will have to " +"use the \"Advanced\" setting to further customize the fetch process.</p></" +"body></html>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:244 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 msgid "Profile &title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:245 -msgid "&Summary length:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:246 -msgid " characters" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:247 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 msgid "&Oldest article:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:248 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 msgid "The oldest article to download" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:249 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 msgid " days" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:250 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 msgid "&Max. number of articles per feed:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:251 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 msgid "Maximum number of articles to download per feed." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:252 -msgid "" -"Try to follow links in the RSS feed to full articles on the web. If you " -"enable this option, you're probably going to end up having to use the " -"advanced mode." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:253 -msgid "Try to download &full articles" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:254 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 msgid "Feeds in profile" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:255 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:235 msgid "Remove feed from profile" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:257 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:260 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 msgid "Add feed to profile" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:258 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 msgid "&Feed title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:259 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 msgid "Feed &URL:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:261 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 msgid "&Add feed" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:262 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:242 msgid "" -"For help with writing advanced news profiles, please visit <a href=\"https://" -"libprs500.kovidgoyal.net/wiki/UserProfiles\">UserProfiles</a>" +"For help with writing advanced news recipes, please visit <a href=\"http://" +"libprs500.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:263 +#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:243 msgid "Profile source code (python)" msgstr "" @@ -1857,7 +1886,7 @@ msgstr "" #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:91 #: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:512 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:511 msgid "Fetching feeds..." msgstr "" @@ -1865,78 +1894,78 @@ msgstr "" msgid "Unknown News Source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:413 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:412 msgid "Download finished" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:415 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:414 msgid "Failed to download the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:417 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:423 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:416 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:422 msgid " from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:421 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:420 msgid "Failed to download parts of the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:425 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:424 msgid "\tFailed links:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:494 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:493 msgid "Could not fetch article. Run with --debug to see the reason" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:516 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:515 msgid "Got feeds from index page" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:520 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:519 msgid "Trying to download cover..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:570 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:569 msgid "Starting download [%d thread(s)]..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:584 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:583 msgid "Feeds downloaded to %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:593 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:592 msgid "Could not download cover: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:598 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:597 msgid "Downloading cover from %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:633 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:632 msgid "Untitled Article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:674 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:673 msgid "" "\n" "Downloaded article %s from %s\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:680 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:679 msgid "Article downloaded: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:686 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:685 msgid "Failed to download article: %s from %s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:691 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:690 msgid "Article download failed: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:707 +#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:706 msgid "Fetching feed" msgstr "" diff --git a/src/libprs500/web/feeds/main.py b/src/libprs500/web/feeds/main.py index fc1d9c8523..521c53c996 100644 --- a/src/libprs500/web/feeds/main.py +++ b/src/libprs500/web/feeds/main.py @@ -25,12 +25,15 @@ from libprs500.ebooks.lrf.web.profiles import DefaultProfile, FullContentProfile def option_parser(usage='''\ %%prog [options] ARG -%%prog parsers an online source of articles, like an RSS or ATOM feed and +%%prog parses an online source of articles, like an RSS or ATOM feed and fetches the article contents organized in a nice hierarchy. ARG can be one of: + file name - %%prog will try to load a recipe from the file + 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" + recipe as a string - %%prog will load the recipe directly from the string arg. Available builtin recipes are: diff --git a/src/libprs500/web/feeds/news.py b/src/libprs500/web/feeds/news.py index 68ca49d5ac..2057608270 100644 --- a/src/libprs500/web/feeds/news.py +++ b/src/libprs500/web/feeds/news.py @@ -14,9 +14,11 @@ ## with this program; if not, write to the Free Software Foundation, Inc., ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ''' -The backend to parse feeds and create HTML that can then be converted -to an ebook. +Defines various abstract base classes that can be subclassed to create powerful news fetching recipes. ''' +__docformat__ = "restructuredtext en" + + import logging, os, cStringIO, time, traceback, re, urlparse from collections import defaultdict @@ -40,57 +42,45 @@ class BasicNewsRecipe(object): ''' #: The title to use for the ebook - #: @type: string title = _('Unknown News Source') #: The author of this recipe __author__ = __appname__ #: Maximum number of articles to download from each feed - #: @type: integer max_articles_per_feed = 100 #: Oldest article to download from this news source. In days. - #: @type: float oldest_article = 7.0 - #: Number of levels of links to follow on webpages that are linked - #: to by the feed. - #: @type: integer + #: Number of levels of links to follow on article webpages recursions = 0 #: Delay between consecutive downloads in seconds - #: @type: integer delay = 0 #: Number of simultaneous downloads. Set to 1 if the server is picky. - #: Automatically reduced to 1 if L{delay} > 0 - #: @type: integer + #: Automatically reduced to 1 if :attr:`BasicNewsRecipe.delay` > 0 simultaneous_downloads = 5 #: Timeout for fetching files from server in seconds - #: @type: integer - timeout = 120 + timeout = 120.0 - #: The format string for the date shown on the first page - #: By default: Day Name Day Number Month Name Year - #: @type: string + #: The format string for the date shown on the first page. + #: By default: Day_Name, Day_Number Month_Name Year timefmt = ' [%a, %d %b %Y]' #: List of feeds to download - #: Can be either C{[url1, url2, ...]} or C{[('title1', url1), ('title2', url2),...]} - #: @type: List of strings or list of 2-tuples + #: Can be either ``[url1, url2, ...]`` or ``[('title1', url1), ('title2', url2),...]`` feeds = None - #: Max number of characters in the short description. - #: @type: integer + #: Max number of characters in the short description summary_length = 500 - #: If True stylesheets are not downloaded and processed #: Convenient flag to disable loading of stylesheets for websites #: that have overly complex stylesheets unsuitable for conversion #: to ebooks formats - #: @type: boolean + #: If True stylesheets are not downloaded and processed no_stylesheets = False #: If True the GUI will ask the user for a username and password @@ -99,94 +89,133 @@ class BasicNewsRecipe(object): needs_subscription = False #: Specify an override encoding for sites that have an incorrect - #: charset specification. The most common being specifying latin1 and - #: using cp1252. If None, try to detect the encoding. + #: charset specification. The most common being specifying ``latin1`` and + #: using ``cp1252``. If None, try to detect the encoding. encoding = None #: Normally we try to guess if a feed has full articles embedded in it - #: based on the length of the embedded content. If C{None}, then the - #: default guessing is used. If C{True} then the we always assume the feeds has - #: embedded content and if False we always assume the feed does not have + #: based on the length of the embedded content. If `None`, then the + #: default guessing is used. If `True` then the we always assume the feeds has + #: embedded content and if `False` we always assume the feed does not have #: embedded content. use_embedded_content = None - #: Specify any extra CSS that should be addded to downloaded HTML files - #: It will be inserted into C{<style></style>} just before the closing - #: C{</head>} tag thereby overrinding all CSS except that which is - #: declared using the style attribute on individual HTML tags. - #: type: string + #: Specify any extra :term:`CSS` that should be addded to downloaded :term:`HTML` files + #: It will be inserted into `<style>` tags, just before the closing + #: `</head>` tag thereby overrinding all :term:`CSS` except that which is + #: declared using the style attribute on individual :term:`HTML` tags. + #: For example:: + #: + #: extra_css = '.heading { font: serif x-large }' + #: extra_css = None #: List of regular expressions that determines which links to follow - #: If empty, it is ignored. - #: Only one of L{match_regexps} or L{filter_regexps} should be defined - #: @type: list of strings + #: If empty, it is ignored. For example:: + #: + #: match_regexps = [r'page=[0-9]+'] + #: + #: will match all URLs that have `page=some number` in them. + #: + #: Only one of :attr:`BasicNewsRecipe.match_regexps` or + #: :attr:`BasicNewsRecipe.filter_regexps` should be defined. match_regexps = [] #: List of regular expressions that determines which links to ignore - #: If empty it is ignored - #: Only one of L{match_regexps} or L{filter_regexps} should be defined - #: @type: list of strings + #: If empty it is ignored. For example:: + #: + #: filter_regexps = [r'ads\.doubleclick\.net'] + #: + #: will remove all URLs that have `ads.doubleclick.net` in them. + #: + #: Only one of :attr:`BasicNewsRecipe.match_regexps` or + #: :attr:`BasicNewsRecipe.filter_regexps` should be defined. filter_regexps = [] #: List of options to pass to html2lrf, to customize generation of LRF ebooks. - #: @type: list of strings html2lrf_options = [] #: List of tags to be removed. Specified tags are removed from downloaded HTML. #: A tag is specified as a dictionary of the form:: - #: { + #: + #: { #: name : 'tag name', #e.g. 'div' #: attrs : a dictionary, #e.g. {class: 'advertisment'} - #: } + #: } + #: #: All keys are optional. For a full explanantion of the search criteria, see - #: U{http://www.crummy.com/software/BeautifulSoup/documentation.html#The basic find method: findAll(name, attrs, recursive, text, limit, **kwargs)} + #: `Beautiful Soup <http://www.crummy.com/software/BeautifulSoup/documentation.html#The basic find method: findAll(name, attrs, recursive, text, limit, **kwargs)>`_ #: A common example:: + #: #: remove_tags = [dict(name='div', attrs={'class':'advert'})] - #: This will remove all <div class="advert"> tags and all their children from the downloaded HTML. - #: @type: list + #: + #: This will remove all `<div class="advert">` tags and all + #: their children from the downloaded :term:`HTML`. remove_tags = [] #: Remove all tags that occur after the specified tag. - #: For the format for specifying a tag see L{remove_tags}. - #: For example, C{remove_tags_after = [dict(id='content')]} will remove all - #: tags after the element with id C{content}. + #: For the format for specifying a tag see :attr:`BasicNewsRecipe.remove_tags`. + #: For example:: + #: + #: remove_tags_after = [dict(id='content')] + #: + #: will remove all + #: tags after the first element with `id="content"`. remove_tags_after = None #: Remove all tags that occur before the specified tag. - #: For the format for specifying a tag see L{remove_tags}. - #: For example, C{remove_tags_before = [dict(id='content')]} will remove all - #: tags before the element with id C{content}. + #: For the format for specifying a tag see :attr:`BasicNewsRecipe.remove_tags`. + #: For example:: + #: + #: remove_tags_before = [dict(id='content')] + #: + #: will remove all + #: tags before the first element with `id="content"`. remove_tags_before = None #: Keep only the specified tags and their children. - #: For the format for specifying tags see L{remove_tags}. - #: If this list is not empty, then the <body> element will be emptied and re-filled with - #: the tags that match the entries in this list. - #: @type: list + #: For the format for specifying a tag see :attr:`BasicNewsRecipe.remove_tags`. + #: If this list is not empty, then the `<body>` tag will be emptied and re-filled with + #: the tags that match the entries in this list. For example:: + #: + #: keep_only_tags = [dict(id=['content', 'heading'])] + #: + #: will keep only tags that have an `id` attribute of `"content"` or `"heading"`. keep_only_tags = [] - #: List of regexp substitution rules to run on the downloaded HTML. Each element of the + #: List of :term:`regexp` substitution rules to run on the downloaded :term:`HTML`. + #: Each element of the #: list should be a two element tuple. The first element of the tuple should #: be a compiled regular expression and the second a callable that takes - #: a single match object and returns a string to replace the match. - #: @type: list of tuples + #: a single match object and returns a string to replace the match. For example:: + #: + #: preprocess_regexps = [ + #: (re.compile(r'<!--Article ends here-->.*</body>', re.DOTALL|re.IGNORECASE), + #: lambda match: '</body>'), + #: ] + #: + #: will remove everythong from `<!--Article ends here-->` to `</body>`. preprocess_regexps = [] # See the built-in profiles for examples of these settings. def get_cover_url(self): ''' - Return a URL to the cover image for this issue or None. - @rtype: string or None + Return a :term:`URL` to the cover image for this issue or `None`. + By default it returns the value of the member `self.cover_url` which + is normally `None`. If you want your recipe to download a cover for the e-book + override this method in your subclass, or set the member variable `self.cover_url` + before this method is called. ''' return getattr(self, 'cover_url', None) def get_feeds(self): ''' - Return a list of RSS feeds to fetch for this profile. Each element of the list + Return a list of :term:RSS feeds to fetch for this profile. Each element of the list must be a 2-element tuple of the form (title, url). If title is None or an - empty string, the title from the feed is used. + empty string, the title from the feed is used. This method is useful if your recipe + needs to do some processing to figure out the list of feeds to download. If + so, override in your subclass. ''' if not self.feeds: raise NotImplementedError @@ -195,54 +224,74 @@ class BasicNewsRecipe(object): return self.feeds @classmethod - def print_version(cls, url): + def print_version(self, url): ''' - Take a URL pointing to an article and returns the URL pointing to the - print version of the article. + Take a `url` pointing to the webpage with article content and return the + :term:`URL` pointing to the print version of the article. By default does + nothing. For example:: + + def print_version(self, url): + return url + '?&pagewanted=print' + ''' raise NotImplementedError @classmethod - def get_browser(cls): + def get_browser(self): ''' - Return a browser instance used to fetch documents from the web. + Return a browser instance used to fetch documents from the web. By default + it returns a `mechanize <http://wwwsearch.sourceforge.net/mechanize/>`_ + browser instance that supports cookies, ignores robots.txt, handles + refreshes and has a mozilla firefox user agent. + + If your recipe requires that you login first, override this method + in your subclass. For example, the following code is used in the New York + Times recipe to login for full access:: + + def get_browser(self): + br = BasicNewsRecipe.get_browser() + if self.username is not None and self.password is not None: + br.open('http://www.nytimes.com/auth/login') + br.select_form(name='login') + br['USERID'] = self.username + br['PASSWORD'] = self.password + br.submit() + return br - If your profile requires that you login first, override this method - in your subclass. See for example the nytimes profile. ''' return browser() - def get_article_url(self, item): + def get_article_url(self, article): ''' - Override to perform extraction of URL for each article. - @param item: An article instance from L{feedparser}. - @type item: L{FeedParserDict} + Override in a subclass to customize extraction of the :term:`URL` that points + to the content for each article. Return the + article URL. It is called with `article`, an object representing a parsed article + from a feed. See `feedsparser <http://www.feedparser.org/docs/>`_. + By default it returns `article.link <http://www.feedparser.org/docs/reference-entry-link.html>`_. ''' - return item.get('link', None) + return article.get('link', None) def preprocess_html(self, soup): ''' - This function is called with the source of each downloaded HTML file, before + This method is called with the source of each downloaded :term:`HTML` file, before it is parsed for links and images. - It can be used to do arbitrarily powerful pre-processing on the HTML. - @param soup: A U{BeautifulSoup<http://www.crummy.com/software/BeautifulSoup/documentation.html>} - instance containing the downloaded HTML. - @type soup: A U{BeautifulSoup<http://www.crummy.com/software/BeautifulSoup/documentation.html>} instance - @return: It must return soup (after having done any needed preprocessing) - @rtype: A U{BeautifulSoup<http://www.crummy.com/software/BeautifulSoup/documentation.html>} instance + It can be used to do arbitrarily powerful pre-processing on the :term:`HTML`. + It should return `soup` after processing it. + + `soup`: A `BeautifulSoup <http://www.crummy.com/software/BeautifulSoup/documentation.html>`_ + instance containing the downloaded :term:`HTML`. ''' return soup def postprocess_html(self, soup): ''' - This function is called with the source of each downloaded HTML file, after + This method is called with the source of each downloaded :term:`HTML` file, after it is parsed for links and images. - It can be used to do arbitrarily powerful pre-processing on the HTML. - @param soup: A U{BeautifulSoup<http://www.crummy.com/software/BeautifulSoup/documentation.html>} - instance containing the downloaded HTML. - @type soup: A U{BeautifulSoup<http://www.crummy.com/software/BeautifulSoup/documentation.html>} instance - @return: It must return soup (after having done any needed preprocessing) - @rtype: A U{BeautifulSoup<http://www.crummy.com/software/BeautifulSoup/documentation.html>} instance + It can be used to do arbitrarily powerful post-processing on the :term:`HTML`. + It should return `soup` after processing it. + + `soup`: A `BeautifulSoup <http://www.crummy.com/software/BeautifulSoup/documentation.html>`_ + instance containing the downloaded :term:`HTML`. ''' return soup @@ -256,8 +305,10 @@ class BasicNewsRecipe(object): def index_to_soup(self, url_or_raw): ''' Convenience method that takes an URL to the index page and returns - a BeautifulSoup of it. - @param url_or_raw: Either a URL or the downloaded index page as a string + a `BeautifulSoup <http://www.crummy.com/software/BeautifulSoup/documentation.html>`_ + of it. + + `url_or_raw`: Either a URL or the downloaded index page as a string ''' if re.match(r'\w+://', url_or_raw): raw = self.browser.open(url_or_raw).read() @@ -272,11 +323,13 @@ class BasicNewsRecipe(object): def sort_index_by(self, index, weights): ''' - Convenience method to sort the titles in index according to weights. - @param index: A list of titles. - @param weights: A dictionary that maps weights to titles. If any titles + Convenience method to sort the titles in `index` according to `weights`. + `index` is sorted in place. Returns `index`. + + `index`: A list of titles. + + `weights`: A dictionary that maps weights to titles. If any titles in index are not in weights, they are assumed to have a weight of 0. - @return: Sorted index ''' weights = defaultdict(lambda : 0, weights) index.sort(cmp=lambda x, y: cmp(weights[x], weights[y])) @@ -288,10 +341,13 @@ class BasicNewsRecipe(object): instead of feeds to generate a list of articles. Typical uses are for news sources that have a "Print Edition" webpage that lists all the articles in the current print edition. If this function is implemented, - it will be used in preference to L{parse_feeds}. - @rtype: list - @return: A list of two element tuples of the form ('feed title', list of articles). - Each list of articles contains dictionaries of the form:: + it will be used in preference to :meth:`BasicNewsRecipe.parse_feeds`. + + It must return a list. Each element of the list must be a 2-element tuple + of the form ``('feed title', list of articles)``. + + Each list of articles must contain dictionaries of the form:: + { 'title' : article title, 'url' : URL of print version, @@ -299,6 +355,8 @@ class BasicNewsRecipe(object): 'description' : A summary of the article 'content' : The full article (can be an empty string). This is used by FullContentProfile } + + For an example, see the recipe for downloading `The Atlantic`. ''' raise NotImplementedError @@ -692,9 +750,8 @@ class BasicNewsRecipe(object): def parse_feeds(self): ''' - Create a list of articles from a list of feeds. - @rtype: list - @return: A list of L{Feed}s. + Create a list of articles from the list of feeds returned by :meth:`BasicNewsRecipe.get_feeds`. + Return a list of :class:`Feed` objects. ''' feeds = self.get_feeds() parsed_feeds = [] @@ -713,14 +770,18 @@ class BasicNewsRecipe(object): return parsed_feeds @classmethod - def tag_to_string(cls, tag, use_alt=True): + def tag_to_string(self, tag, use_alt=True): ''' - Convenience method to take a BeautifulSoup Tag and extract the text from it - recursively, including any CDATA sections and alt tag attributes. - @param use_alt: If True try to use the alt attribute for tags that don't have any textual content - @type use_alt: boolean - @return: A unicode (possibly empty) object - @rtype: unicode string + Convenience method to take a + `BeautifulSoup <http://www.crummy.com/software/BeautifulSoup/documentation.html>`_ + `Tag` and extract the text from it recursively, including any CDATA sections + and alt tag attributes. Return a possibly empty unicode string. + + `use_alt`: If `True` try to use the alt attribute for tags that don't + have any textual content + + `tag`: `BeautifulSoup <http://www.crummy.com/software/BeautifulSoup/documentation.html>`_ + `Tag` ''' if not tag: return '' @@ -731,7 +792,7 @@ class BasicNewsRecipe(object): if isinstance(item, (NavigableString, CData)): strings.append(item.string) elif isinstance(item, Tag): - res = cls.tag_to_string(item) + res = self.tag_to_string(item) if res: strings.append(res) elif use_alt and item.has_key('alt'): @@ -770,9 +831,9 @@ class CustomIndexRecipe(BasicNewsRecipe): def custom_index(self): ''' - Return the path to a custom HTML document that will serve as the index for - this recipe. - @rtype: string + Return the filesystem path to a custom HTML document that will serve as the index for + this recipe. The index document will typically contain many `<a href="...">` + tags that point to resources on the internet that should be downloaded. ''' raise NotImplementedError @@ -794,4 +855,13 @@ class CustomIndexRecipe(BasicNewsRecipe): fetcher.show_progress = False res = fetcher.start_fetch(url) self.create_opf() - return res \ No newline at end of file + return res + +class AutomaticNewsRecipe(BasicNewsRecipe): + + keep_only_tags = [dict(name=['p', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'])] + + def fetch_embedded_article(self, article, dir, logger, f, a, num_of_feeds): + if self.use_embedded_content: + self.web2disk_options.keep_only_tags = [] + return BasicNewsRecipe.fetch_embedded_article(self, article, dir, logger, f, a, num_of_feeds) \ No newline at end of file