diff --git a/.bzrignore b/.bzrignore new file mode 100644 index 0000000000..51fd860418 --- /dev/null +++ b/.bzrignore @@ -0,0 +1,8 @@ +*_ui.py +src/calibre.egg-info/ +src/calibre/resources.py +src/calibre/gui2/images.qrc +src/calibre/gui2/images_rc.py +src/calibre/manual/.build/ +src/calibre/manual/cli/ + diff --git a/.pydevproject b/.pydevproject index 7b15c0725e..416319d077 100644 --- a/.pydevproject +++ b/.pydevproject @@ -1,13 +1,13 @@ - + python 2.5 -/libprs500/src -/libprs500/devices -/libprs500/libprs500.devices.prs500 -/libprs500/prs500 -/libprs500/gui2 +/calibre/src +/calibre/devices +/calibre/libprs500.devices.prs500 +/calibre/prs500 +/calibre/gui2 diff --git a/Makefile b/Makefile index fac218f8e7..f1c28f0f15 100644 --- a/Makefile +++ b/Makefile @@ -3,19 +3,19 @@ PYTHON = python all : gui2 translations resources clean : - cd src/libprs500/gui2 && ${PYTHON} make.py clean + cd src/calibre/gui2 && ${PYTHON} make.py clean gui2 : - cd src/libprs500/gui2 && ${PYTHON} make.py + cd src/calibre/gui2 && ${PYTHON} make.py test : gui2 - cd src/libprs500/gui2 && ${PYTHON} make.py test + cd src/calibre/gui2 && ${PYTHON} make.py test translations : - cd src/libprs500 && ${PYTHON} translations/__init__.py + cd src/calibre && ${PYTHON} translations/__init__.py resources: ${PYTHON} resources.py manual: - make -C src/libprs500/manual clean html + make -C src/calibre/manual clean html diff --git a/epydoc-pdf.conf b/epydoc-pdf.conf index 3e10796efe..03ed6d104d 100644 --- a/epydoc-pdf.conf +++ b/epydoc-pdf.conf @@ -1,13 +1,13 @@ [epydoc] # Epydoc section marker (required by ConfigParser) # Information about the project. -name: libprs500 -url: http://libprs500.kovidgoyal.net +name: calibre +url: http://calibre.kovidgoyal.net # The list of modules to document. Modules can be named using # dotted names, module filenames, or package directory names. # This option may be repeated. -modules: libprs500.devices, libprs500.ebooks.lrf.web.profiles +modules: calibre.devices, calibre.ebooks.lrf.web.profiles output: pdf target: docs/pdf @@ -36,7 +36,7 @@ css: white # The "top" page for the documentation. Can be a URL, the name # of a module or class, or one of the special names "trees.html", # "indices.html", or "help.html" -# top: libprs500 +# top: calibre # verbosity # An integer indicating how verbose epydoc should be. The default diff --git a/epydoc.conf b/epydoc.conf index df467357f5..3259623054 100644 --- a/epydoc.conf +++ b/epydoc.conf @@ -1,13 +1,13 @@ [epydoc] # Epydoc section marker (required by ConfigParser) # Information about the project. -name: libprs500 - API documentation -url: http://libprs500.kovidgoyal.net +name: calibre - API documentation +url: http://calibre.kovidgoyal.net # The list of modules to document. Modules can be named using # dotted names, module filenames, or package directory names. # This option may be repeated. -modules: libprs500.devices, libprs500.ebooks.lrf.web.profiles +modules: calibre.devices, calibre.ebooks.lrf.web.profiles # Write html output to the directory "docs" output: html @@ -31,7 +31,7 @@ css: white # HTML code for the project link in the navigation bar. If left # unspecified, the project link will be generated based on the # project's name and URL. -link: libprs500 +link: calibre # top # The "top" page for the documentation. Can be a URL, the name diff --git a/osx_installer.py b/osx_installer.py index 026b4574f4..17618d9519 100644 --- a/osx_installer.py +++ b/osx_installer.py @@ -233,12 +233,12 @@ def main(): 'frameworks': ['libusb.dylib', 'libunrar.dylib'], 'includes' : ['sip', 'pkg_resources', 'PyQt4.QtSvg', 'mechanize', 'ClientForm', 'usbobserver', - 'genshi', 'libprs500.web.feeds.recipes.*', + 'genshi', 'calibre.web.feeds.recipes.*', 'IPython.Extensions.*', 'pydoc'], 'packages' : ['PIL', 'Authorization', 'rtf2xml', 'lxml'], 'excludes' : [], - 'plist' : { 'CFBundleGetInfoString' : '''libprs500, an E-book management application.''' - ''' Visit http://libprs500.kovidgoyal.net for details.''', + 'plist' : { 'CFBundleGetInfoString' : '''calibre, an E-book management application.''' + ''' Visit http://calibre.kovidgoyal.net for details.''', 'CFBundleIdentifier':'net.kovidgoyal.librs500', 'CFBundleShortVersionString':VERSION, 'CFBundleVersion':APPNAME + ' ' + VERSION, @@ -255,4 +255,4 @@ def main(): return 0 if __name__ == '__main__': - sys.exit(main()) \ No newline at end of file + sys.exit(main()) diff --git a/resources.py b/resources.py index 00900410ae..55629557dd 100644 --- a/resources.py +++ b/resources.py @@ -7,11 +7,12 @@ Compile resource files. ''' import os, sys sys.path.insert(1, os.path.join(os.getcwd(), 'src')) -from libprs500 import __appname__ +from calibre import __appname__ RESOURCES = dict( opf_template = '%p/ebooks/metadata/opf.xml', ncx_template = '%p/ebooks/metadata/ncx.xml', + fb2_xsl = '%p/ebooks/lrf/fb2/fb2.xsl', ) def main(args=sys.argv): diff --git a/setup.py b/setup.py index 6d6891a0cc..a1090d8831 100644 --- a/setup.py +++ b/setup.py @@ -5,16 +5,16 @@ __copyright__ = '2008, Kovid Goyal ' import sys, re, os, shutil sys.path.append('src') islinux = not ('win32' in sys.platform or 'win64' in sys.platform or 'darwin' in sys.platform) -src = open('src/libprs500/__init__.py', 'rb').read() +src = open('src/calibre/__init__.py', 'rb').read() VERSION = re.search(r'__version__\s+=\s+[\'"]([^\'"]+)[\'"]', src).group(1) APPNAME = re.search(r'__appname__\s+=\s+[\'"]([^\'"]+)[\'"]', src).group(1) print 'Setup', APPNAME, 'version:', VERSION -epsrc = re.compile(r'entry_points = (\{.*?\})', re.DOTALL).search(open('src/libprs500/linux.py', 'rb').read()).group(1) +epsrc = re.compile(r'entry_points = (\{.*?\})', re.DOTALL).search(open('src/%s/linux.py'%APPNAME, 'rb').read()).group(1) entry_points = eval(epsrc, {'__appname__': APPNAME}) if 'win32' in sys.platform.lower() or 'win64' in sys.platform.lower(): - entry_points['console_scripts'].append('parallel = libprs500.parallel:main') + entry_points['console_scripts'].append('parallel = %s.parallel:main'%APPNAME) def _ep_to_script(ep, base='src'): return (base+os.path.sep+re.search(r'.*=\s*(.*?):', ep).group(1).replace('.', '/')+'.py').strip() @@ -50,16 +50,16 @@ if __name__ == '__main__': from setuptools import setup, find_packages import subprocess - entry_points['console_scripts'].append('libprs500_postinstall = libprs500.linux:post_install') + entry_points['console_scripts'].append('calibre_postinstall = calibre.linux:post_install') setup( - name='libprs500', + name=APPNAME, packages = find_packages('src'), package_dir = { '' : 'src' }, version=VERSION, author='Kovid Goyal', author_email='kovid@kovidgoyal.net', - url = 'http://libprs500.kovidgoyal.net', + url = 'http://%s.kovidgoyal.net'%APPNAME, include_package_data = True, entry_points = entry_points, zip_safe = True, @@ -99,4 +99,4 @@ if __name__ == '__main__': ) if 'develop' in ' '.join(sys.argv) and islinux: - subprocess.check_call('libprs500_postinstall', shell=True) + subprocess.check_call('calibre_postinstall', shell=True) diff --git a/src/libprs500/__init__.py b/src/calibre/__init__.py similarity index 96% rename from src/libprs500/__init__.py rename to src/calibre/__init__.py index bb1a3963cb..858bc21508 100644 --- a/src/libprs500/__init__.py +++ b/src/calibre/__init__.py @@ -4,7 +4,7 @@ __copyright__ = '2008, Kovid Goyal ' __version__ = '0.4.49' __docformat__ = "epytext" __author__ = "Kovid Goyal " -__appname__ = 'libprs500' +__appname__ = 'calibre' import sys, os, logging, mechanize, locale, copy, cStringIO, re, subprocess, \ textwrap, atexit, cPickle @@ -17,16 +17,19 @@ from logging import Formatter from ttfquery import findsystem, describe from PyQt4.QtCore import QSettings, QVariant -from libprs500.translations.msgfmt import make -from libprs500.ebooks.chardet import detect -from libprs500.terminfo import TerminalController +from calibre.translations.msgfmt import make +from calibre.ebooks.chardet import detect +from calibre.terminfo import TerminalController terminal_controller = TerminalController(sys.stdout) iswindows = 'win32' in sys.platform.lower() or 'win64' in sys.platform.lower() isosx = 'darwin' in sys.platform.lower() -islinux = not(iswindows or isosx) +islinux = not(iswindows or isosx) -locale.setlocale(locale.LC_ALL, '') +try: + locale.setlocale(locale.LC_ALL, '') +except: + pass def osx_version(): if isosx: @@ -216,10 +219,10 @@ def extract(path, dir): ext = os.path.splitext(path)[1][1:].lower() extractor = None if ext == 'zip': - from libprs500.libunzip import extract as zipextract + from calibre.libunzip import extract as zipextract extractor = zipextract elif ext == 'rar': - from libprs500.libunrar import extract as rarextract + from calibre.libunrar import extract as rarextract extractor = rarextract if extractor is None: raise Exception('Unknown archive type') @@ -249,7 +252,7 @@ def fit_image(width, height, pwidth, pheight): scaled = height > pheight or width > pwidth if height > pheight: corrf = pheight/float(height) - width, height = floor(corrf*width), pheight + width, height = floor(corrf*width), pheight if width > pwidth: corrf = pwidth/float(width) width, height = pwidth, floor(corrf*height) @@ -257,12 +260,12 @@ def fit_image(width, height, pwidth, pheight): corrf = pheight/float(height) width, height = floor(corrf*width), pheight - return scaled, int(width), int(height) + return scaled, int(width), int(height) def set_translator(): # To test different translations invoke as # LC_ALL=de_DE.utf8 program - from libprs500.translations.data import translations + from calibre.translations.data import translations lang = locale.getdefaultlocale()[0] if lang is None and os.environ.has_key('LANG'): # Needed for OS X try: diff --git a/src/libprs500/debug.py b/src/calibre/debug.py similarity index 100% rename from src/libprs500/debug.py rename to src/calibre/debug.py diff --git a/src/libprs500/devices/__init__.py b/src/calibre/devices/__init__.py similarity index 84% rename from src/libprs500/devices/__init__.py rename to src/calibre/devices/__init__.py index 5227e9e5d3..65bf4aa5fb 100644 --- a/src/libprs500/devices/__init__.py +++ b/src/calibre/devices/__init__.py @@ -5,9 +5,9 @@ Device drivers. ''' def devices(): - from libprs500.devices.prs500.driver import PRS500 - from libprs500.devices.prs505.driver import PRS505 - from libprs500.devices.kindle.driver import KINDLE + from calibre.devices.prs500.driver import PRS500 + from calibre.devices.prs505.driver import PRS505 + from calibre.devices.kindle.driver import KINDLE return (PRS500, PRS505, KINDLE) import time diff --git a/src/libprs500/devices/errors.py b/src/calibre/devices/errors.py similarity index 100% rename from src/libprs500/devices/errors.py rename to src/calibre/devices/errors.py diff --git a/src/libprs500/devices/interface.py b/src/calibre/devices/interface.py similarity index 100% rename from src/libprs500/devices/interface.py rename to src/calibre/devices/interface.py diff --git a/src/libprs500/devices/kindle/__init__.py b/src/calibre/devices/kindle/__init__.py similarity index 100% rename from src/libprs500/devices/kindle/__init__.py rename to src/calibre/devices/kindle/__init__.py diff --git a/src/libprs500/devices/kindle/books.py b/src/calibre/devices/kindle/books.py similarity index 93% rename from src/libprs500/devices/kindle/books.py rename to src/calibre/devices/kindle/books.py index b8d9ec1d04..623b02fe20 100755 --- a/src/libprs500/devices/kindle/books.py +++ b/src/calibre/devices/kindle/books.py @@ -6,8 +6,8 @@ import re, time, functools import os -from libprs500.devices.interface import BookList as _BookList -from libprs500.devices import strftime as _strftime +from calibre.devices.interface import BookList as _BookList +from calibre.devices import strftime as _strftime strftime = functools.partial(_strftime, zone=time.localtime) MIME_MAP = { diff --git a/src/libprs500/devices/kindle/driver.py b/src/calibre/devices/kindle/driver.py similarity index 95% rename from src/libprs500/devices/kindle/driver.py rename to src/calibre/devices/kindle/driver.py index 7049a37dcb..23c5420d4c 100755 --- a/src/libprs500/devices/kindle/driver.py +++ b/src/calibre/devices/kindle/driver.py @@ -6,11 +6,11 @@ Device driver for the Amazon Kindle import sys, os, shutil, time, subprocess, re from itertools import cycle -from libprs500.devices.interface import Device -from libprs500.devices.errors import DeviceError, FreeSpaceError -from libprs500.devices.kindle.books import BookList -from libprs500 import iswindows, islinux, isosx -from libprs500.devices.errors import PathError +from calibre.devices.interface import Device +from calibre.devices.errors import DeviceError, FreeSpaceError +from calibre.devices.kindle.books import BookList +from calibre import iswindows, islinux, isosx +from calibre.devices.errors import PathError class File(object): def __init__(self, path): diff --git a/src/libprs500/devices/libusb.py b/src/calibre/devices/libusb.py similarity index 99% rename from src/libprs500/devices/libusb.py rename to src/calibre/devices/libusb.py index 19639d5df3..7d5be468f2 100644 --- a/src/libprs500/devices/libusb.py +++ b/src/calibre/devices/libusb.py @@ -8,7 +8,7 @@ from ctypes import cdll, POINTER, byref, pointer, Structure, \ c_ubyte, c_ushort, c_int, c_char, c_void_p, c_byte, c_uint from errno import EBUSY, ENOMEM -from libprs500 import iswindows, isosx, load_library +from calibre import iswindows, isosx, load_library _libusb_name = 'libusb' PATH_MAX = 511 if iswindows else 1024 if isosx else 4096 diff --git a/src/libprs500/devices/manager.py b/src/calibre/devices/manager.py similarity index 90% rename from src/libprs500/devices/manager.py rename to src/calibre/devices/manager.py index 1896bb5d78..0ec7de6e2f 100644 --- a/src/libprs500/devices/manager.py +++ b/src/calibre/devices/manager.py @@ -8,8 +8,8 @@ Define a threaded interface for working with devices. import threading, Queue -from libprs500.devices.device import Device -from libprs500.devices.prs500.driver import PRS500 +from calibre.devices.device import Device +from calibre.devices.prs500.driver import PRS500 class DeviceManager(object): diff --git a/src/libprs500/devices/prs500/__init__.py b/src/calibre/devices/prs500/__init__.py similarity index 100% rename from src/libprs500/devices/prs500/__init__.py rename to src/calibre/devices/prs500/__init__.py diff --git a/src/libprs500/devices/prs500/books.py b/src/calibre/devices/prs500/books.py similarity index 99% rename from src/libprs500/devices/prs500/books.py rename to src/calibre/devices/prs500/books.py index 995bcd16eb..5308a7dcc7 100644 --- a/src/libprs500/devices/prs500/books.py +++ b/src/calibre/devices/prs500/books.py @@ -9,8 +9,8 @@ from base64 import b64decode as decode from base64 import b64encode as encode import re -from libprs500.devices.interface import BookList as _BookList -from libprs500.devices import strftime, strptime +from calibre.devices.interface import BookList as _BookList +from calibre.devices import strftime, strptime MIME_MAP = { \ "lrf":"application/x-sony-bbeb", \ diff --git a/src/libprs500/devices/prs500/cli/__init__.py b/src/calibre/devices/prs500/cli/__init__.py similarity index 100% rename from src/libprs500/devices/prs500/cli/__init__.py rename to src/calibre/devices/prs500/cli/__init__.py diff --git a/src/libprs500/devices/prs500/cli/main.py b/src/calibre/devices/prs500/cli/main.py similarity index 97% rename from src/libprs500/devices/prs500/cli/main.py rename to src/calibre/devices/prs500/cli/main.py index a23fdffc9c..d85daf075c 100755 --- a/src/libprs500/devices/prs500/cli/main.py +++ b/src/calibre/devices/prs500/cli/main.py @@ -9,12 +9,12 @@ For usage information run the script. import StringIO, sys, time, os from optparse import OptionParser -from libprs500 import __version__, iswindows, __appname__ -from libprs500.devices.errors import PathError -from libprs500.terminfo import TerminalController -from libprs500.devices.errors import ArgumentError, DeviceError, DeviceLocked -from libprs500.devices import devices -from libprs500.devices.scanner import DeviceScanner +from calibre import __version__, iswindows, __appname__ +from calibre.devices.errors import PathError +from calibre.terminfo import TerminalController +from calibre.devices.errors import ArgumentError, DeviceError, DeviceLocked +from calibre.devices import devices +from calibre.devices.scanner import DeviceScanner MINIMUM_COL_WIDTH = 12 #: Minimum width of columns in ls output diff --git a/src/libprs500/devices/prs500/driver.py b/src/calibre/devices/prs500/driver.py similarity index 99% rename from src/libprs500/devices/prs500/driver.py rename to src/calibre/devices/prs500/driver.py index 42285295ae..99e641e940 100755 --- a/src/libprs500/devices/prs500/driver.py +++ b/src/calibre/devices/prs500/driver.py @@ -40,13 +40,13 @@ from array import array from functools import wraps from StringIO import StringIO -from libprs500.devices.interface import Device -from libprs500.devices.libusb import Error as USBError -from libprs500.devices.libusb import get_device_by_id -from libprs500.devices.prs500.prstypes import * -from libprs500.devices.errors import * -from libprs500.devices.prs500.books import BookList, fix_ids -from libprs500 import __author__, __appname__ +from calibre.devices.interface import Device +from calibre.devices.libusb import Error as USBError +from calibre.devices.libusb import get_device_by_id +from calibre.devices.prs500.prstypes import * +from calibre.devices.errors import * +from calibre.devices.prs500.books import BookList, fix_ids +from calibre import __author__, __appname__ # Protocol versions this driver has been tested with KNOWN_USB_PROTOCOL_VERSIONS = [0x3030303030303130L] diff --git a/src/libprs500/devices/prs500/prstypes.py b/src/calibre/devices/prs500/prstypes.py similarity index 99% rename from src/libprs500/devices/prs500/prstypes.py rename to src/calibre/devices/prs500/prstypes.py index 376f83ccfa..28498a7942 100755 --- a/src/libprs500/devices/prs500/prstypes.py +++ b/src/calibre/devices/prs500/prstypes.py @@ -33,7 +33,7 @@ import struct import time from datetime import datetime -from libprs500.devices.errors import PacketError +from calibre.devices.errors import PacketError WORD = " + + + + + + + + + + + <xsl:value-of select="fb:description/fb:title-info/fb:book-title"/> + + + + + +
+ +
+
+
+ +
    + +
+
+ + + +
+
+ +

+ +

+
+ + +
+ + +
+ + + + + + + +
+
+ + +
  • + + + , # + + + +
      + + + +
    +
    + + + + + + + + + +
  • + + +
    +
    +
  • + + +
    + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    +
    + + +
    +
    + + + + + + + +
    + +
    +
    + + +
    + + + +    
    +
    + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    Annotation

    + +
    + + +
    + + + + + + +
    +
    + + +
    + +
    +
    + + +
    + + + + + + +
    +
    + + +
    +
    +
    + + + + +     +
    +
    + +     +
    +
    +
    +
    + + +
    + + + + + + +
    +
    + + + + +
    +
    + + + + + + + +
    +
    + + +
    + + + + + + + + + + +
    +
    + diff --git a/src/libprs500/ebooks/lrf/feeds/__init__.py b/src/calibre/ebooks/lrf/feeds/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/feeds/__init__.py rename to src/calibre/ebooks/lrf/feeds/__init__.py diff --git a/src/libprs500/ebooks/lrf/feeds/convert_from.py b/src/calibre/ebooks/lrf/feeds/convert_from.py similarity index 82% rename from src/libprs500/ebooks/lrf/feeds/convert_from.py rename to src/calibre/ebooks/lrf/feeds/convert_from.py index 4c28243463..bfa7a5f9c8 100644 --- a/src/libprs500/ebooks/lrf/feeds/convert_from.py +++ b/src/calibre/ebooks/lrf/feeds/convert_from.py @@ -4,12 +4,12 @@ __copyright__ = '2008, Kovid Goyal ' ''' Convert web feeds to LRF files. ''' -from libprs500.ebooks.lrf import option_parser as lrf_option_parser -from libprs500.ebooks.lrf.html.convert_from import process_file -from libprs500.web.feeds.main import option_parser as feeds_option_parser -from libprs500.web.feeds.main import run_recipe -from libprs500.ptempfile import PersistentTemporaryDirectory -from libprs500 import sanitize_file_name +from calibre.ebooks.lrf import option_parser as lrf_option_parser +from calibre.ebooks.lrf.html.convert_from import process_file +from calibre.web.feeds.main import option_parser as feeds_option_parser +from calibre.web.feeds.main import run_recipe +from calibre.ptempfile import PersistentTemporaryDirectory +from calibre import sanitize_file_name import sys, os, time diff --git a/src/libprs500/ebooks/lrf/fonts/__init__.py b/src/calibre/ebooks/lrf/fonts/__init__.py similarity index 89% rename from src/libprs500/ebooks/lrf/fonts/__init__.py rename to src/calibre/ebooks/lrf/fonts/__init__.py index 22da335b79..ebd022bdd3 100644 --- a/src/libprs500/ebooks/lrf/fonts/__init__.py +++ b/src/calibre/ebooks/lrf/fonts/__init__.py @@ -1,8 +1,8 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' import sys, os -from libprs500 import iswindows -from libprs500.ptempfile import PersistentTemporaryFile +from calibre import iswindows +from calibre.ptempfile import PersistentTemporaryFile try: from PIL import ImageFont @@ -12,7 +12,7 @@ except ImportError: ''' Default fonts used in the PRS500 ''' -from libprs500.ebooks.lrf.fonts.prs500 import tt0003m_, tt0011m_, tt0419m_ +from calibre.ebooks.lrf.fonts.prs500 import tt0003m_, tt0011m_, tt0419m_ FONT_MAP = { 'Swis721 BT Roman' : tt0003m_, diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationMono_Bold.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Bold.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationMono_Bold.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Bold.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationMono_BoldItalic.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationMono_BoldItalic.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationMono_BoldItalic.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationMono_BoldItalic.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationMono_Italic.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Italic.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationMono_Italic.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Italic.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationMono_Regular.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Regular.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationMono_Regular.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationMono_Regular.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationSans_Bold.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Bold.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationSans_Bold.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Bold.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationSans_BoldItalic.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationSans_BoldItalic.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationSans_BoldItalic.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationSans_BoldItalic.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationSans_Italic.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Italic.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationSans_Italic.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Italic.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationSans_Regular.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Regular.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationSans_Regular.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationSans_Regular.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationSerif_Bold.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Bold.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationSerif_Bold.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Bold.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationSerif_BoldItalic.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_BoldItalic.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationSerif_BoldItalic.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_BoldItalic.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationSerif_Italic.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Italic.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationSerif_Italic.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Italic.py diff --git a/src/libprs500/ebooks/lrf/fonts/liberation/LiberationSerif_Regular.py b/src/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Regular.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/liberation/LiberationSerif_Regular.py rename to src/calibre/ebooks/lrf/fonts/liberation/LiberationSerif_Regular.py diff --git a/src/libprs500/ebooks/lrf/fonts/prs500/__init__.py b/src/calibre/ebooks/lrf/fonts/liberation/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/prs500/__init__.py rename to src/calibre/ebooks/lrf/fonts/liberation/__init__.py diff --git a/src/libprs500/ebooks/lrf/mobi/__init__.py b/src/calibre/ebooks/lrf/fonts/prs500/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/mobi/__init__.py rename to src/calibre/ebooks/lrf/fonts/prs500/__init__.py diff --git a/src/libprs500/ebooks/lrf/fonts/prs500/tt0003m_.py b/src/calibre/ebooks/lrf/fonts/prs500/tt0003m_.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/prs500/tt0003m_.py rename to src/calibre/ebooks/lrf/fonts/prs500/tt0003m_.py diff --git a/src/libprs500/ebooks/lrf/fonts/prs500/tt0011m_.py b/src/calibre/ebooks/lrf/fonts/prs500/tt0011m_.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/prs500/tt0011m_.py rename to src/calibre/ebooks/lrf/fonts/prs500/tt0011m_.py diff --git a/src/libprs500/ebooks/lrf/fonts/prs500/tt0419m_.py b/src/calibre/ebooks/lrf/fonts/prs500/tt0419m_.py similarity index 100% rename from src/libprs500/ebooks/lrf/fonts/prs500/tt0419m_.py rename to src/calibre/ebooks/lrf/fonts/prs500/tt0419m_.py diff --git a/src/libprs500/ebooks/lrf/html/__init__.py b/src/calibre/ebooks/lrf/html/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/html/__init__.py rename to src/calibre/ebooks/lrf/html/__init__.py diff --git a/src/libprs500/ebooks/lrf/html/color_map.py b/src/calibre/ebooks/lrf/html/color_map.py similarity index 100% rename from src/libprs500/ebooks/lrf/html/color_map.py rename to src/calibre/ebooks/lrf/html/color_map.py diff --git a/src/libprs500/ebooks/lrf/html/convert_from.py b/src/calibre/ebooks/lrf/html/convert_from.py similarity index 98% rename from src/libprs500/ebooks/lrf/html/convert_from.py rename to src/calibre/ebooks/lrf/html/convert_from.py index 142e2a46a6..07656f3213 100644 --- a/src/libprs500/ebooks/lrf/html/convert_from.py +++ b/src/calibre/ebooks/lrf/html/convert_from.py @@ -18,23 +18,23 @@ try: except ImportError: import Image as PILImage -from libprs500.ebooks.BeautifulSoup import BeautifulSoup, Comment, Tag, \ +from calibre.ebooks.BeautifulSoup import BeautifulSoup, Comment, Tag, \ NavigableString, Declaration, ProcessingInstruction -from libprs500.ebooks.lrf.pylrs.pylrs import Paragraph, CR, Italic, ImageStream, \ +from calibre.ebooks.lrf.pylrs.pylrs import Paragraph, CR, Italic, ImageStream, \ TextBlock, ImageBlock, JumpButton, CharButton, \ Plot, Image, BlockSpace, RuledLine, BookSetting, Canvas, DropCaps, \ LrsError, Sup, Sub, EmpLine -from libprs500.ebooks.lrf.pylrs.pylrs import Span -from libprs500.ebooks.lrf import Book, entity_to_unicode -from libprs500.ebooks.lrf import option_parser as lrf_option_parser -from libprs500.ebooks import ConversionError -from libprs500.ebooks.lrf.html.table import Table -from libprs500 import filename_to_utf8, setup_cli_handlers, __appname__, fit_image -from libprs500.ptempfile import PersistentTemporaryFile -from libprs500.ebooks.metadata.opf import OPFReader -from libprs500.devices.interface import Device -from libprs500.ebooks.lrf.html.color_map import lrs_color -from libprs500.ebooks.chardet import xml_to_unicode +from calibre.ebooks.lrf.pylrs.pylrs import Span +from calibre.ebooks.lrf import Book, entity_to_unicode +from calibre.ebooks.lrf import option_parser as lrf_option_parser +from calibre.ebooks import ConversionError +from calibre.ebooks.lrf.html.table import Table +from calibre import filename_to_utf8, setup_cli_handlers, __appname__, fit_image +from calibre.ptempfile import PersistentTemporaryFile +from calibre.ebooks.metadata.opf import OPFReader +from calibre.devices.interface import Device +from calibre.ebooks.lrf.html.color_map import lrs_color +from calibre.ebooks.chardet import xml_to_unicode def update_css(ncss, ocss): for key in ncss.keys(): @@ -334,10 +334,15 @@ class HTMLConverter(object): self.book.set_author(self.get_text(a)) if self.verbose: tdir = tempfile.gettempdir() - dump = open(os.path.join(tdir, 'html2lrf-verbose.html'), 'wb') - dump.write(unicode(soup).encode('utf-8')) - self.logger.info(_('Written preprocessed HTML to ')+dump.name) - dump.close() + if not os.path.exists(tdir): + os.makedirs(tdir) + try: + dump = open(os.path.join(tdir, 'html2lrf-verbose.html'), 'wb') + dump.write(unicode(soup).encode('utf-8')) + self.logger.info(_('Written preprocessed HTML to ')+dump.name) + dump.close() + except: + pass return soup diff --git a/src/libprs500/ebooks/lrf/html/convert_to.py b/src/calibre/ebooks/lrf/html/convert_to.py similarity index 92% rename from src/libprs500/ebooks/lrf/html/convert_to.py rename to src/calibre/ebooks/lrf/html/convert_to.py index 6ce6d67f43..df36c5f7e3 100644 --- a/src/libprs500/ebooks/lrf/html/convert_to.py +++ b/src/calibre/ebooks/lrf/html/convert_to.py @@ -2,13 +2,13 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' import sys, logging, os -from libprs500 import setup_cli_handlers, OptionParser -from libprs500.ebooks import ConversionError -from libprs500.ebooks.lrf.meta import get_metadata -from libprs500.ebooks.lrf.parser import LRFDocument -from libprs500.ebooks.metadata.opf import OPFCreator +from calibre import setup_cli_handlers, OptionParser +from calibre.ebooks import ConversionError +from calibre.ebooks.lrf.meta import get_metadata +from calibre.ebooks.lrf.parser import LRFDocument +from calibre.ebooks.metadata.opf import OPFCreator -from libprs500.ebooks.lrf.objects import PageAttr, BlockAttr, TextAttr +from calibre.ebooks.lrf.objects import PageAttr, BlockAttr, TextAttr class BlockStyle(object): diff --git a/src/libprs500/ebooks/lrf/html/demo/a.png b/src/calibre/ebooks/lrf/html/demo/a.png similarity index 100% rename from src/libprs500/ebooks/lrf/html/demo/a.png rename to src/calibre/ebooks/lrf/html/demo/a.png diff --git a/src/libprs500/ebooks/lrf/html/demo/demo.html b/src/calibre/ebooks/lrf/html/demo/demo.html similarity index 100% rename from src/libprs500/ebooks/lrf/html/demo/demo.html rename to src/calibre/ebooks/lrf/html/demo/demo.html diff --git a/src/libprs500/ebooks/lrf/html/demo/large.jpg b/src/calibre/ebooks/lrf/html/demo/large.jpg similarity index 100% rename from src/libprs500/ebooks/lrf/html/demo/large.jpg rename to src/calibre/ebooks/lrf/html/demo/large.jpg diff --git a/src/libprs500/ebooks/lrf/html/demo/medium.jpg b/src/calibre/ebooks/lrf/html/demo/medium.jpg similarity index 100% rename from src/libprs500/ebooks/lrf/html/demo/medium.jpg rename to src/calibre/ebooks/lrf/html/demo/medium.jpg diff --git a/src/libprs500/ebooks/lrf/html/demo/small.jpg b/src/calibre/ebooks/lrf/html/demo/small.jpg similarity index 100% rename from src/libprs500/ebooks/lrf/html/demo/small.jpg rename to src/calibre/ebooks/lrf/html/demo/small.jpg diff --git a/src/libprs500/ebooks/lrf/html/table.py b/src/calibre/ebooks/lrf/html/table.py similarity index 98% rename from src/libprs500/ebooks/lrf/html/table.py rename to src/calibre/ebooks/lrf/html/table.py index 083dafdf32..a3b3123293 100644 --- a/src/libprs500/ebooks/lrf/html/table.py +++ b/src/calibre/ebooks/lrf/html/table.py @@ -2,8 +2,8 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' import math, sys, re -from libprs500.ebooks.lrf.fonts import get_font -from libprs500.ebooks.lrf.pylrs.pylrs import TextBlock, Text, CR, Span, \ +from calibre.ebooks.lrf.fonts import get_font +from calibre.ebooks.lrf.pylrs.pylrs import TextBlock, Text, CR, Span, \ CharButton, Plot, Paragraph, \ LrsTextTag @@ -11,7 +11,7 @@ def ceil(num): return int(math.ceil(num)) def print_xml(elem): - from libprs500.ebooks.lrf.pylrs.pylrs import ElementWriter + from calibre.ebooks.lrf.pylrs.pylrs import ElementWriter elem = elem.toElement('utf8') ew = ElementWriter(elem, sourceEncoding='utf8') ew.write(sys.stdout) diff --git a/src/libprs500/ebooks/lrf/lit/__init__.py b/src/calibre/ebooks/lrf/lit/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/lit/__init__.py rename to src/calibre/ebooks/lrf/lit/__init__.py diff --git a/src/libprs500/ebooks/lrf/lit/convert_from.py b/src/calibre/ebooks/lrf/lit/convert_from.py similarity index 92% rename from src/libprs500/ebooks/lrf/lit/convert_from.py rename to src/calibre/ebooks/lrf/lit/convert_from.py index c26c691631..efbf82f2e9 100644 --- a/src/libprs500/ebooks/lrf/lit/convert_from.py +++ b/src/calibre/ebooks/lrf/lit/convert_from.py @@ -4,11 +4,11 @@ __copyright__ = '2008, Kovid Goyal ' import os, sys, shutil, glob, logging from tempfile import mkdtemp from subprocess import Popen, PIPE -from libprs500.ebooks.lrf import option_parser as lrf_option_parser -from libprs500.ebooks import ConversionError -from libprs500.ebooks.lrf.html.convert_from import process_file as html_process_file -from libprs500.ebooks.metadata.opf import OPFReader -from libprs500 import isosx, __appname__, setup_cli_handlers, iswindows +from calibre.ebooks.lrf import option_parser as lrf_option_parser +from calibre.ebooks import ConversionError +from calibre.ebooks.lrf.html.convert_from import process_file as html_process_file +from calibre.ebooks.metadata.opf import OPFReader +from calibre import isosx, __appname__, setup_cli_handlers, iswindows CLIT = 'clit' if isosx and hasattr(sys, 'frameworks_dir'): diff --git a/src/libprs500/ebooks/lrf/lrs/__init__.py b/src/calibre/ebooks/lrf/lrs/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/lrs/__init__.py rename to src/calibre/ebooks/lrf/lrs/__init__.py diff --git a/src/libprs500/ebooks/lrf/lrs/convert_from.py b/src/calibre/ebooks/lrf/lrs/convert_from.py similarity index 97% rename from src/libprs500/ebooks/lrf/lrs/convert_from.py rename to src/calibre/ebooks/lrf/lrs/convert_from.py index 36745d9b7c..6fa876a080 100644 --- a/src/libprs500/ebooks/lrf/lrs/convert_from.py +++ b/src/calibre/ebooks/lrf/lrs/convert_from.py @@ -6,15 +6,15 @@ Compile a LRS file into a LRF file. import sys, os, logging -from libprs500 import OptionParser, setup_cli_handlers -from libprs500.ebooks.BeautifulSoup import BeautifulStoneSoup, NavigableString, \ +from calibre import OptionParser, setup_cli_handlers +from calibre.ebooks.BeautifulSoup import BeautifulStoneSoup, NavigableString, \ CData, Tag -from libprs500.ebooks.lrf.pylrs.pylrs import Book, PageStyle, TextStyle, \ +from calibre.ebooks.lrf.pylrs.pylrs import Book, PageStyle, TextStyle, \ BlockStyle, ImageStream, Font, StyleDefault, BookSetting, Header, \ Image, ImageBlock, Page, TextBlock, Canvas, Paragraph, CR, Span, \ Italic, Sup, Sub, Bold, EmpLine, JumpButton, CharButton, Plot, \ DropCaps, Footer, RuledLine -from libprs500.ebooks.chardet import xml_to_unicode +from calibre.ebooks.chardet import xml_to_unicode class LrsParser(object): diff --git a/src/libprs500/ebooks/lrf/meta.py b/src/calibre/ebooks/lrf/meta.py similarity index 99% rename from src/libprs500/ebooks/lrf/meta.py rename to src/calibre/ebooks/lrf/meta.py index a4c67d1371..e4d32052e2 100644 --- a/src/libprs500/ebooks/lrf/meta.py +++ b/src/calibre/ebooks/lrf/meta.py @@ -18,8 +18,8 @@ from cStringIO import StringIO import xml.dom.minidom as dom from functools import wraps -from libprs500.devices.prs500.prstypes import field -from libprs500.ebooks.metadata import MetaInformation +from calibre.devices.prs500.prstypes import field +from calibre.ebooks.metadata import MetaInformation BYTE = "\n'%(self.id,) diff --git a/src/libprs500/ebooks/lrf/parser.py b/src/calibre/ebooks/lrf/parser.py similarity index 97% rename from src/libprs500/ebooks/lrf/parser.py rename to src/calibre/ebooks/lrf/parser.py index ff7bc908e3..0398836788 100644 --- a/src/libprs500/ebooks/lrf/parser.py +++ b/src/calibre/ebooks/lrf/parser.py @@ -4,9 +4,9 @@ __copyright__ = '2008, Kovid Goyal ' import sys, array, os, re, codecs, logging -from libprs500 import OptionParser, setup_cli_handlers -from libprs500.ebooks.lrf.meta import LRFMetaFile -from libprs500.ebooks.lrf.objects import get_object, PageTree, StyleObject, \ +from calibre import OptionParser, setup_cli_handlers +from calibre.ebooks.lrf.meta import LRFMetaFile +from calibre.ebooks.lrf.objects import get_object, PageTree, StyleObject, \ Font, Text, TOCObject, BookAttr, ruby_tags diff --git a/src/libprs500/ebooks/lrf/pdf/__init__.py b/src/calibre/ebooks/lrf/pdf/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/pdf/__init__.py rename to src/calibre/ebooks/lrf/pdf/__init__.py diff --git a/src/libprs500/ebooks/lrf/pdf/convert_from.py b/src/calibre/ebooks/lrf/pdf/convert_from.py similarity index 88% rename from src/libprs500/ebooks/lrf/pdf/convert_from.py rename to src/calibre/ebooks/lrf/pdf/convert_from.py index 93e1d95ba3..0b11d47877 100644 --- a/src/libprs500/ebooks/lrf/pdf/convert_from.py +++ b/src/calibre/ebooks/lrf/pdf/convert_from.py @@ -3,11 +3,11 @@ __copyright__ = '2008, Kovid Goyal ' '''''' import sys, os, subprocess, logging -from libprs500 import isosx, setup_cli_handlers, filename_to_utf8 -from libprs500.ebooks import ConversionError -from libprs500.ptempfile import PersistentTemporaryDirectory -from libprs500.ebooks.lrf import option_parser as lrf_option_parser -from libprs500.ebooks.lrf.html.convert_from import process_file as html_process_file +from calibre import isosx, setup_cli_handlers, filename_to_utf8 +from calibre.ebooks import ConversionError +from calibre.ptempfile import PersistentTemporaryDirectory +from calibre.ebooks.lrf import option_parser as lrf_option_parser +from calibre.ebooks.lrf.html.convert_from import process_file as html_process_file PDFTOHTML = 'pdftohtml' if isosx and hasattr(sys, 'frameworks_dir'): diff --git a/src/libprs500/ebooks/lrf/pdf/reflow.py b/src/calibre/ebooks/lrf/pdf/reflow.py similarity index 99% rename from src/libprs500/ebooks/lrf/pdf/reflow.py rename to src/calibre/ebooks/lrf/pdf/reflow.py index 5907dbfcf5..f553aa1b85 100644 --- a/src/libprs500/ebooks/lrf/pdf/reflow.py +++ b/src/calibre/ebooks/lrf/pdf/reflow.py @@ -7,8 +7,8 @@ Convert PDF to a reflowable format using pdftoxml.exe as the PDF parsing backend import sys, os, re, tempfile, subprocess, atexit, shutil, logging, xml.parsers.expat from xml.etree.ElementTree import parse -from libprs500 import isosx, OptionParser, setup_cli_handlers, __appname__ -from libprs500.ebooks import ConversionError +from calibre import isosx, OptionParser, setup_cli_handlers, __appname__ +from calibre.ebooks import ConversionError PDFTOXML = 'pdftoxml.exe' if isosx and hasattr(sys, 'frameworks_dir'): diff --git a/src/libprs500/ebooks/lrf/pylrs/__init__.py b/src/calibre/ebooks/lrf/pylrs/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/pylrs/__init__.py rename to src/calibre/ebooks/lrf/pylrs/__init__.py diff --git a/src/libprs500/ebooks/lrf/pylrs/elements.py b/src/calibre/ebooks/lrf/pylrs/elements.py similarity index 100% rename from src/libprs500/ebooks/lrf/pylrs/elements.py rename to src/calibre/ebooks/lrf/pylrs/elements.py diff --git a/src/libprs500/ebooks/lrf/pylrs/pylrf.py b/src/calibre/ebooks/lrf/pylrs/pylrf.py similarity index 100% rename from src/libprs500/ebooks/lrf/pylrs/pylrf.py rename to src/calibre/ebooks/lrf/pylrs/pylrf.py diff --git a/src/libprs500/ebooks/lrf/pylrs/pylrfopt.py b/src/calibre/ebooks/lrf/pylrs/pylrfopt.py similarity index 100% rename from src/libprs500/ebooks/lrf/pylrs/pylrfopt.py rename to src/calibre/ebooks/lrf/pylrs/pylrfopt.py diff --git a/src/libprs500/ebooks/lrf/pylrs/pylrs.py b/src/calibre/ebooks/lrf/pylrs/pylrs.py similarity index 96% rename from src/libprs500/ebooks/lrf/pylrs/pylrs.py rename to src/calibre/ebooks/lrf/pylrs/pylrs.py index 173a5859a2..dae25b5284 100644 --- a/src/libprs500/ebooks/lrf/pylrs/pylrs.py +++ b/src/calibre/ebooks/lrf/pylrs/pylrs.py @@ -52,7 +52,7 @@ from pylrf import (LrfWriter, LrfObject, LrfTag, LrfToc, DEFAULT_SOURCE_ENCODING = "cp1252" # defualt is us-windows character set DEFAULT_GENREADING = "fs" # default is yes to both lrf and lrs -from libprs500 import __appname__, __version__ +from calibre import __appname__, __version__ class LrsError(Exception): pass diff --git a/src/libprs500/ebooks/lrf/rtf/__init__.py b/src/calibre/ebooks/lrf/rtf/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/rtf/__init__.py rename to src/calibre/ebooks/lrf/rtf/__init__.py diff --git a/src/libprs500/ebooks/lrf/rtf/convert_from.py b/src/calibre/ebooks/lrf/rtf/convert_from.py similarity index 92% rename from src/libprs500/ebooks/lrf/rtf/convert_from.py rename to src/calibre/ebooks/lrf/rtf/convert_from.py index 2229bd86ef..1fd8314c96 100644 --- a/src/libprs500/ebooks/lrf/rtf/convert_from.py +++ b/src/calibre/ebooks/lrf/rtf/convert_from.py @@ -2,14 +2,14 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' import os, sys, tempfile, subprocess, shutil, logging, glob -from libprs500.ebooks.lrf import option_parser as lrf_option_parser -from libprs500.ebooks.metadata.meta import get_metadata -from libprs500.ebooks.lrf.html.convert_from import process_file as html_process_file -from libprs500.ebooks import ConversionError -from libprs500 import isosx, setup_cli_handlers, __appname__ -from libprs500.libwand import convert, WandException -from libprs500.ebooks.BeautifulSoup import BeautifulStoneSoup -from libprs500.ebooks.lrf.rtf.xsl import xhtml +from calibre.ebooks.lrf import option_parser as lrf_option_parser +from calibre.ebooks.metadata.meta import get_metadata +from calibre.ebooks.lrf.html.convert_from import process_file as html_process_file +from calibre.ebooks import ConversionError +from calibre import isosx, setup_cli_handlers, __appname__ +from calibre.libwand import convert, WandException +from calibre.ebooks.BeautifulSoup import BeautifulStoneSoup +from calibre.ebooks.lrf.rtf.xsl import xhtml UNRTF = 'unrtf' if isosx and hasattr(sys, 'frameworks_dir'): @@ -112,7 +112,7 @@ def main(args=sys.argv, logger=None): def generate_xml(rtfpath): - from libprs500.ebooks.rtf2xml.ParseRtf import ParseRtf + from calibre.ebooks.rtf2xml.ParseRtf import ParseRtf tdir = tempfile.mkdtemp(prefix=__appname__+'_') ofile = os.path.join(tdir, 'index.xml') cwd = os.getcwdu() diff --git a/src/libprs500/ebooks/lrf/rtf/xsl.py b/src/calibre/ebooks/lrf/rtf/xsl.py similarity index 100% rename from src/libprs500/ebooks/lrf/rtf/xsl.py rename to src/calibre/ebooks/lrf/rtf/xsl.py diff --git a/src/libprs500/ebooks/lrf/tags.py b/src/calibre/ebooks/lrf/tags.py similarity index 99% rename from src/libprs500/ebooks/lrf/tags.py rename to src/calibre/ebooks/lrf/tags.py index 69415d45a6..c8ef312ae3 100644 --- a/src/libprs500/ebooks/lrf/tags.py +++ b/src/calibre/ebooks/lrf/tags.py @@ -4,7 +4,7 @@ __copyright__ = '2008, Kovid Goyal ' import struct -from libprs500.ebooks.lrf import LRFParseError +from calibre.ebooks.lrf import LRFParseError class Tag(object): diff --git a/src/libprs500/ebooks/lrf/txt/__init__.py b/src/calibre/ebooks/lrf/txt/__init__.py similarity index 100% rename from src/libprs500/ebooks/lrf/txt/__init__.py rename to src/calibre/ebooks/lrf/txt/__init__.py diff --git a/src/libprs500/ebooks/lrf/txt/convert_from.py b/src/calibre/ebooks/lrf/txt/convert_from.py similarity index 89% rename from src/libprs500/ebooks/lrf/txt/convert_from.py rename to src/calibre/ebooks/lrf/txt/convert_from.py index c407703d08..885f271538 100644 --- a/src/libprs500/ebooks/lrf/txt/convert_from.py +++ b/src/calibre/ebooks/lrf/txt/convert_from.py @@ -5,12 +5,12 @@ Convert .txt files to .lrf """ import os, sys, codecs, logging -from libprs500.ptempfile import PersistentTemporaryFile -from libprs500.ebooks.lrf import option_parser as lrf_option_parser -from libprs500.ebooks import ConversionError -from libprs500.ebooks.lrf.html.convert_from import process_file as html_process_file -from libprs500.ebooks.markdown import markdown -from libprs500 import setup_cli_handlers +from calibre.ptempfile import PersistentTemporaryFile +from calibre.ebooks.lrf import option_parser as lrf_option_parser +from calibre.ebooks import ConversionError +from calibre.ebooks.lrf.html.convert_from import process_file as html_process_file +from calibre.ebooks.markdown import markdown +from calibre import setup_cli_handlers def option_parser(): parser = lrf_option_parser( diff --git a/src/libprs500/ebooks/lrf/txt/demo/demo.txt b/src/calibre/ebooks/lrf/txt/demo/demo.txt similarity index 100% rename from src/libprs500/ebooks/lrf/txt/demo/demo.txt rename to src/calibre/ebooks/lrf/txt/demo/demo.txt diff --git a/src/calibre/ebooks/lrf/web/__init__.py b/src/calibre/ebooks/lrf/web/__init__.py new file mode 100644 index 0000000000..6fae0f5262 --- /dev/null +++ b/src/calibre/ebooks/lrf/web/__init__.py @@ -0,0 +1,38 @@ +__license__ = 'GPL v3' +__copyright__ = '2008, Kovid Goyal ' + +from calibre.ebooks.lrf.web.profiles.nytimes import NYTimes +from calibre.ebooks.lrf.web.profiles.bbc import BBC +from calibre.ebooks.lrf.web.profiles.newsweek import Newsweek +from calibre.ebooks.lrf.web.profiles.economist import Economist +from calibre.ebooks.lrf.web.profiles.newyorkreview import NewYorkReviewOfBooks +from calibre.ebooks.lrf.web.profiles.spiegelde import SpiegelOnline +from calibre.ebooks.lrf.web.profiles.zeitde import ZeitNachrichten +from calibre.ebooks.lrf.web.profiles.faznet import FazNet +from calibre.ebooks.lrf.web.profiles.wsj import WallStreetJournal +from calibre.ebooks.lrf.web.profiles.barrons import Barrons +from calibre.ebooks.lrf.web.profiles.portfolio import Portfolio +from calibre.ebooks.lrf.web.profiles.dilbert import Dilbert +from calibre.ebooks.lrf.web.profiles.cnn import CNN +from calibre.ebooks.lrf.web.profiles.chr_mon import ChristianScienceMonitor +from calibre.ebooks.lrf.web.profiles.jpost import JerusalemPost +from calibre.ebooks.lrf.web.profiles.reuters import Reuters +from calibre.ebooks.lrf.web.profiles.atlantic import Atlantic +from calibre.ebooks.lrf.web.profiles.ap import AssociatedPress +from calibre.ebooks.lrf.web.profiles.newyorker import NewYorker +from calibre.ebooks.lrf.web.profiles.jutarnji import Jutarnji +from calibre.ebooks.lrf.web.profiles.usatoday import USAToday +from calibre.ebooks.lrf.web.profiles.upi import UnitedPressInternational +from calibre.ebooks.lrf.web.profiles.wash_post import WashingtonPost +from calibre.ebooks.lrf.web.profiles.nasa import NASA + + +builtin_profiles = [Atlantic, AssociatedPress, Barrons, BBC, + ChristianScienceMonitor, CNN, Dilbert, Economist, FazNet, + JerusalemPost, Jutarnji, NASA, Newsweek, NewYorker, + NewYorkReviewOfBooks, NYTimes, UnitedPressInternational, USAToday, + Portfolio, Reuters, SpiegelOnline, WallStreetJournal, + WashingtonPost, ZeitNachrichten, + ] + +available_profiles = [i.__module__.rpartition('.')[2] for i in builtin_profiles] \ No newline at end of file diff --git a/src/libprs500/ebooks/lrf/web/convert_from.py b/src/calibre/ebooks/lrf/web/convert_from.py similarity index 95% rename from src/libprs500/ebooks/lrf/web/convert_from.py rename to src/calibre/ebooks/lrf/web/convert_from.py index 6227a4fa1e..feb0ecdd61 100644 --- a/src/libprs500/ebooks/lrf/web/convert_from.py +++ b/src/calibre/ebooks/lrf/web/convert_from.py @@ -5,14 +5,14 @@ __copyright__ = '2008, Kovid Goyal ' import sys, time, tempfile, shutil, os, logging, imp, inspect, re from urlparse import urlsplit -from libprs500 import __appname__, setup_cli_handlers, CommandLineError -from libprs500.ebooks.lrf import option_parser as lrf_option_parser -from libprs500.ebooks.lrf.html.convert_from import process_file +from calibre import __appname__, setup_cli_handlers, CommandLineError +from calibre.ebooks.lrf import option_parser as lrf_option_parser +from calibre.ebooks.lrf.html.convert_from import process_file -from libprs500.web.fetch.simple import create_fetcher +from calibre.web.fetch.simple import create_fetcher -from libprs500.ebooks.lrf.web.profiles import DefaultProfile, FullContentProfile, create_class -from libprs500.ebooks.lrf.web import builtin_profiles, available_profiles +from calibre.ebooks.lrf.web.profiles import DefaultProfile, FullContentProfile, create_class +from calibre.ebooks.lrf.web import builtin_profiles, available_profiles def option_parser(): diff --git a/src/libprs500/ebooks/lrf/web/profiles/__init__.py b/src/calibre/ebooks/lrf/web/profiles/__init__.py similarity index 99% rename from src/libprs500/ebooks/lrf/web/profiles/__init__.py rename to src/calibre/ebooks/lrf/web/profiles/__init__.py index ce67fb1b08..1e44ebdeca 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/__init__.py +++ b/src/calibre/ebooks/lrf/web/profiles/__init__.py @@ -9,8 +9,8 @@ import tempfile, time, calendar, re, operator, atexit, shutil, os from htmlentitydefs import name2codepoint from email.utils import formatdate -from libprs500 import __appname__, iswindows, browser -from libprs500.ebooks.BeautifulSoup import BeautifulStoneSoup, NavigableString, CData, Tag +from calibre import __appname__, iswindows, browser +from calibre.ebooks.BeautifulSoup import BeautifulStoneSoup, NavigableString, CData, Tag class DefaultProfile(object): diff --git a/src/libprs500/ebooks/lrf/web/profiles/ap.py b/src/calibre/ebooks/lrf/web/profiles/ap.py similarity index 97% rename from src/libprs500/ebooks/lrf/web/profiles/ap.py rename to src/calibre/ebooks/lrf/web/profiles/ap.py index f121a5719a..d98adb6ddd 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/ap.py +++ b/src/calibre/ebooks/lrf/web/profiles/ap.py @@ -1,5 +1,5 @@ import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class AssociatedPress(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/atlantic.py b/src/calibre/ebooks/lrf/web/profiles/atlantic.py similarity index 93% rename from src/libprs500/ebooks/lrf/web/profiles/atlantic.py rename to src/calibre/ebooks/lrf/web/profiles/atlantic.py index d2fa00af1e..eebbe84d96 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/atlantic.py +++ b/src/calibre/ebooks/lrf/web/profiles/atlantic.py @@ -1,8 +1,8 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile -from libprs500.ebooks.BeautifulSoup import BeautifulSoup +from calibre.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.BeautifulSoup import BeautifulSoup class Atlantic(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/automatic.py b/src/calibre/ebooks/lrf/web/profiles/automatic.py similarity index 92% rename from src/libprs500/ebooks/lrf/web/profiles/automatic.py rename to src/calibre/ebooks/lrf/web/profiles/automatic.py index 376055392b..93b07cc391 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/automatic.py +++ b/src/calibre/ebooks/lrf/web/profiles/automatic.py @@ -3,10 +3,10 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' import os -from libprs500.ebooks.lrf.web.profiles import DefaultProfile -from libprs500.ebooks.BeautifulSoup import BeautifulSoup -from libprs500 import iswindows -from libprs500.ebooks.chardet import xml_to_unicode +from calibre.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.BeautifulSoup import BeautifulSoup +from calibre import iswindows +from calibre.ebooks.chardet import xml_to_unicode class AutomaticRSSProfile(DefaultProfile): ''' diff --git a/src/libprs500/ebooks/lrf/web/profiles/barrons.py b/src/calibre/ebooks/lrf/web/profiles/barrons.py similarity index 95% rename from src/libprs500/ebooks/lrf/web/profiles/barrons.py rename to src/calibre/ebooks/lrf/web/profiles/barrons.py index 87749c9a19..aa38d4817c 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/barrons.py +++ b/src/calibre/ebooks/lrf/web/profiles/barrons.py @@ -8,7 +8,7 @@ import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class Barrons(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/bbc.py b/src/calibre/ebooks/lrf/web/profiles/bbc.py similarity index 92% rename from src/libprs500/ebooks/lrf/web/profiles/bbc.py rename to src/calibre/ebooks/lrf/web/profiles/bbc.py index cdd2b79286..480bd98ee3 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/bbc.py +++ b/src/calibre/ebooks/lrf/web/profiles/bbc.py @@ -5,8 +5,8 @@ Fetch the BBC. ''' import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile -from libprs500.ebooks.BeautifulSoup import BeautifulSoup +from calibre.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.BeautifulSoup import BeautifulSoup class BBC(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/chr_mon.py b/src/calibre/ebooks/lrf/web/profiles/chr_mon.py similarity index 92% rename from src/libprs500/ebooks/lrf/web/profiles/chr_mon.py rename to src/calibre/ebooks/lrf/web/profiles/chr_mon.py index 42dbfc1dc7..686e1553a8 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/chr_mon.py +++ b/src/calibre/ebooks/lrf/web/profiles/chr_mon.py @@ -1,7 +1,7 @@ import re, time -from libprs500.ebooks.lrf.web.profiles import DefaultProfile -from libprs500.ebooks.BeautifulSoup import BeautifulSoup +from calibre.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.BeautifulSoup import BeautifulSoup class ChristianScienceMonitor(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/cnn.py b/src/calibre/ebooks/lrf/web/profiles/cnn.py similarity index 97% rename from src/libprs500/ebooks/lrf/web/profiles/cnn.py rename to src/calibre/ebooks/lrf/web/profiles/cnn.py index c0f92c8937..e550802f65 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/cnn.py +++ b/src/calibre/ebooks/lrf/web/profiles/cnn.py @@ -4,7 +4,7 @@ __copyright__ = '2008, Kovid Goyal ' Profile to download CNN ''' import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class CNN(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/dilbert.py b/src/calibre/ebooks/lrf/web/profiles/dilbert.py similarity index 94% rename from src/libprs500/ebooks/lrf/web/profiles/dilbert.py rename to src/calibre/ebooks/lrf/web/profiles/dilbert.py index be7ea39545..d7a239ec87 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/dilbert.py +++ b/src/calibre/ebooks/lrf/web/profiles/dilbert.py @@ -7,7 +7,7 @@ Fetch Dilbert. ''' import os -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class Dilbert(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/economist.py b/src/calibre/ebooks/lrf/web/profiles/economist.py similarity index 94% rename from src/libprs500/ebooks/lrf/web/profiles/economist.py rename to src/calibre/ebooks/lrf/web/profiles/economist.py index 0f57247efb..607201f63e 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/economist.py +++ b/src/calibre/ebooks/lrf/web/profiles/economist.py @@ -5,8 +5,8 @@ Fetch The Economist. ''' import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile -from libprs500.ebooks.BeautifulSoup import BeautifulSoup +from calibre.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.BeautifulSoup import BeautifulSoup class Economist(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/faznet.py b/src/calibre/ebooks/lrf/web/profiles/faznet.py similarity index 91% rename from src/libprs500/ebooks/lrf/web/profiles/faznet.py rename to src/calibre/ebooks/lrf/web/profiles/faznet.py index 361df0b7d8..53f2cde752 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/faznet.py +++ b/src/calibre/ebooks/lrf/web/profiles/faznet.py @@ -5,7 +5,7 @@ Profile to download FAZ.net ''' import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class FazNet(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/jpost.py b/src/calibre/ebooks/lrf/web/profiles/jpost.py similarity index 96% rename from src/libprs500/ebooks/lrf/web/profiles/jpost.py rename to src/calibre/ebooks/lrf/web/profiles/jpost.py index d72e63c645..ddc2a00e35 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/jpost.py +++ b/src/calibre/ebooks/lrf/web/profiles/jpost.py @@ -1,5 +1,5 @@ import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class JerusalemPost(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/jutarnji.py b/src/calibre/ebooks/lrf/web/profiles/jutarnji.py similarity index 93% rename from src/libprs500/ebooks/lrf/web/profiles/jutarnji.py rename to src/calibre/ebooks/lrf/web/profiles/jutarnji.py index 638ab86c3c..93da341edd 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/jutarnji.py +++ b/src/calibre/ebooks/lrf/web/profiles/jutarnji.py @@ -4,7 +4,7 @@ import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class Jutarnji(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/nasa.py b/src/calibre/ebooks/lrf/web/profiles/nasa.py similarity index 95% rename from src/libprs500/ebooks/lrf/web/profiles/nasa.py rename to src/calibre/ebooks/lrf/web/profiles/nasa.py index 521fb7ecfa..9fe9eff933 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/nasa.py +++ b/src/calibre/ebooks/lrf/web/profiles/nasa.py @@ -13,7 +13,7 @@ ## ## Version 0.3-2008_2_28 ## Based on WIRED.py by David Chen, 2007, and newsweek.py, bbc.py, nytimes.py by Kovid Goyal -## https://libprs500.kovidgoyal.net/wiki/UserProfiles +## https://calibre.kovidgoyal.net/wiki/UserProfiles ## ## Usage: ## >web2lrf --user-profile nasa.py @@ -28,7 +28,7 @@ Custom User Profile to download RSS News Feeds and Articles from Wired.com import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class NASA(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/newsweek.py b/src/calibre/ebooks/lrf/web/profiles/newsweek.py similarity index 95% rename from src/libprs500/ebooks/lrf/web/profiles/newsweek.py rename to src/calibre/ebooks/lrf/web/profiles/newsweek.py index b590c8a4b2..d0ee3cecf1 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/newsweek.py +++ b/src/calibre/ebooks/lrf/web/profiles/newsweek.py @@ -3,7 +3,7 @@ __copyright__ = '2008, Kovid Goyal ' ''' Profile to download Newsweek ''' -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class Newsweek(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/newyorker.py b/src/calibre/ebooks/lrf/web/profiles/newyorker.py similarity index 95% rename from src/libprs500/ebooks/lrf/web/profiles/newyorker.py rename to src/calibre/ebooks/lrf/web/profiles/newyorker.py index b9502010ba..20ce7bf254 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/newyorker.py +++ b/src/calibre/ebooks/lrf/web/profiles/newyorker.py @@ -4,7 +4,7 @@ import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class NewYorker(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/newyorkreview.py b/src/calibre/ebooks/lrf/web/profiles/newyorkreview.py similarity index 95% rename from src/libprs500/ebooks/lrf/web/profiles/newyorkreview.py rename to src/calibre/ebooks/lrf/web/profiles/newyorkreview.py index 1a6d8e77e3..00af575db7 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/newyorkreview.py +++ b/src/calibre/ebooks/lrf/web/profiles/newyorkreview.py @@ -1,7 +1,7 @@ ## By Lorenzo goehr, lorenzogoehr@hotmail.com for Libprs500 by Kovid Goyal -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile import re diff --git a/src/libprs500/ebooks/lrf/web/profiles/nytimes.py b/src/calibre/ebooks/lrf/web/profiles/nytimes.py similarity index 97% rename from src/libprs500/ebooks/lrf/web/profiles/nytimes.py rename to src/calibre/ebooks/lrf/web/profiles/nytimes.py index 67c2a9bc72..40908a0dd4 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/nytimes.py +++ b/src/calibre/ebooks/lrf/web/profiles/nytimes.py @@ -5,8 +5,8 @@ Profile to download the New York Times ''' import re, time -from libprs500.ebooks.lrf.web.profiles import DefaultProfile -from libprs500.ebooks.BeautifulSoup import BeautifulSoup +from calibre.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.BeautifulSoup import BeautifulSoup class NYTimes(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/portfolio.py b/src/calibre/ebooks/lrf/web/profiles/portfolio.py similarity index 94% rename from src/libprs500/ebooks/lrf/web/profiles/portfolio.py rename to src/calibre/ebooks/lrf/web/profiles/portfolio.py index c57455ba80..04ba7996f9 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/portfolio.py +++ b/src/calibre/ebooks/lrf/web/profiles/portfolio.py @@ -4,7 +4,7 @@ ''' ''' -from libprs500.ebooks.lrf.web.profiles import FullContentProfile +from calibre.ebooks.lrf.web.profiles import FullContentProfile class Portfolio(FullContentProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/reuters.py b/src/calibre/ebooks/lrf/web/profiles/reuters.py similarity index 96% rename from src/libprs500/ebooks/lrf/web/profiles/reuters.py rename to src/calibre/ebooks/lrf/web/profiles/reuters.py index 418d493841..f1586bc574 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/reuters.py +++ b/src/calibre/ebooks/lrf/web/profiles/reuters.py @@ -1,5 +1,5 @@ import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class Reuters(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/spiegelde.py b/src/calibre/ebooks/lrf/web/profiles/spiegelde.py similarity index 93% rename from src/libprs500/ebooks/lrf/web/profiles/spiegelde.py rename to src/calibre/ebooks/lrf/web/profiles/spiegelde.py index ee1cf9fe83..28694fef04 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/spiegelde.py +++ b/src/calibre/ebooks/lrf/web/profiles/spiegelde.py @@ -5,7 +5,7 @@ __copyright__ = '2008, Kovid Goyal ' Fetch Spiegel Online. ''' -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile import re diff --git a/src/libprs500/ebooks/lrf/web/profiles/upi.py b/src/calibre/ebooks/lrf/web/profiles/upi.py similarity index 96% rename from src/libprs500/ebooks/lrf/web/profiles/upi.py rename to src/calibre/ebooks/lrf/web/profiles/upi.py index ab9f0acbc4..83a784317f 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/upi.py +++ b/src/calibre/ebooks/lrf/web/profiles/upi.py @@ -1,5 +1,5 @@ import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class UnitedPressInternational(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/usatoday.py b/src/calibre/ebooks/lrf/web/profiles/usatoday.py similarity index 94% rename from src/libprs500/ebooks/lrf/web/profiles/usatoday.py rename to src/calibre/ebooks/lrf/web/profiles/usatoday.py index f36c2aa469..c4f516f96c 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/usatoday.py +++ b/src/calibre/ebooks/lrf/web/profiles/usatoday.py @@ -4,7 +4,7 @@ import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class USAToday(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/wash_post.py b/src/calibre/ebooks/lrf/web/profiles/wash_post.py similarity index 96% rename from src/libprs500/ebooks/lrf/web/profiles/wash_post.py rename to src/calibre/ebooks/lrf/web/profiles/wash_post.py index a510ae93fd..2aaf3480ee 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/wash_post.py +++ b/src/calibre/ebooks/lrf/web/profiles/wash_post.py @@ -1,5 +1,5 @@ import re -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class WashingtonPost(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/wsj.py b/src/calibre/ebooks/lrf/web/profiles/wsj.py similarity index 97% rename from src/libprs500/ebooks/lrf/web/profiles/wsj.py rename to src/calibre/ebooks/lrf/web/profiles/wsj.py index 6e20240f54..01c8c3d1c2 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/wsj.py +++ b/src/calibre/ebooks/lrf/web/profiles/wsj.py @@ -9,7 +9,7 @@ import re from urlparse import urlparse -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class WallStreetJournal(DefaultProfile): diff --git a/src/libprs500/ebooks/lrf/web/profiles/zeitde.py b/src/calibre/ebooks/lrf/web/profiles/zeitde.py similarity index 90% rename from src/libprs500/ebooks/lrf/web/profiles/zeitde.py rename to src/calibre/ebooks/lrf/web/profiles/zeitde.py index 964426ece7..81be84c27b 100644 --- a/src/libprs500/ebooks/lrf/web/profiles/zeitde.py +++ b/src/calibre/ebooks/lrf/web/profiles/zeitde.py @@ -5,7 +5,7 @@ __copyright__ = '2008, Kovid Goyal ' Fetch Die Zeit. ''' -from libprs500.ebooks.lrf.web.profiles import DefaultProfile +from calibre.ebooks.lrf.web.profiles import DefaultProfile class ZeitNachrichten(DefaultProfile): diff --git a/src/calibre/ebooks/markdown/__init__.py b/src/calibre/ebooks/markdown/__init__.py new file mode 100644 index 0000000000..466ba03d7e --- /dev/null +++ b/src/calibre/ebooks/markdown/__init__.py @@ -0,0 +1,5 @@ +''' Package defines lightweight markup language for processing of txt files''' +# Initialize extensions +from calibre.ebooks.markdown import mdx_footnotes +from calibre.ebooks.markdown import mdx_tables +from calibre.ebooks.markdown import mdx_toc \ No newline at end of file diff --git a/src/libprs500/ebooks/markdown/markdown.py b/src/calibre/ebooks/markdown/markdown.py similarity index 99% rename from src/libprs500/ebooks/markdown/markdown.py rename to src/calibre/ebooks/markdown/markdown.py index 99a085d614..e734079116 100644 --- a/src/libprs500/ebooks/markdown/markdown.py +++ b/src/calibre/ebooks/markdown/markdown.py @@ -1226,7 +1226,7 @@ class Markdown: for ext in extensions: - extension_module_name = "libprs500.ebooks.markdown.mdx_" + ext + extension_module_name = "calibre.ebooks.markdown.mdx_" + ext try: module = sys.modules[extension_module_name] diff --git a/src/libprs500/ebooks/markdown/mdx_footnotes.py b/src/calibre/ebooks/markdown/mdx_footnotes.py similarity index 100% rename from src/libprs500/ebooks/markdown/mdx_footnotes.py rename to src/calibre/ebooks/markdown/mdx_footnotes.py diff --git a/src/libprs500/ebooks/markdown/mdx_tables.py b/src/calibre/ebooks/markdown/mdx_tables.py similarity index 100% rename from src/libprs500/ebooks/markdown/mdx_tables.py rename to src/calibre/ebooks/markdown/mdx_tables.py diff --git a/src/libprs500/ebooks/markdown/mdx_toc.py b/src/calibre/ebooks/markdown/mdx_toc.py similarity index 100% rename from src/libprs500/ebooks/markdown/mdx_toc.py rename to src/calibre/ebooks/markdown/mdx_toc.py diff --git a/src/libprs500/ebooks/metadata/__init__.py b/src/calibre/ebooks/metadata/__init__.py similarity index 98% rename from src/libprs500/ebooks/metadata/__init__.py rename to src/calibre/ebooks/metadata/__init__.py index fbc48a2fbc..b0e071ff78 100644 --- a/src/libprs500/ebooks/metadata/__init__.py +++ b/src/calibre/ebooks/metadata/__init__.py @@ -8,8 +8,8 @@ __docformat__ = "epytext" __author__ = "Kovid Goyal " -from libprs500 import __version__ as VERSION -from libprs500 import OptionParser +from calibre import __version__ as VERSION +from calibre import OptionParser def get_parser(extension): ''' Return an option parser with the basic metadata options already setup''' diff --git a/src/libprs500/ebooks/metadata/epub.py b/src/calibre/ebooks/metadata/epub.py similarity index 96% rename from src/libprs500/ebooks/metadata/epub.py rename to src/calibre/ebooks/metadata/epub.py index df5550895e..6f8f211552 100644 --- a/src/libprs500/ebooks/metadata/epub.py +++ b/src/calibre/ebooks/metadata/epub.py @@ -11,8 +11,8 @@ from zipfile import ZipFile, BadZipfile from cStringIO import StringIO from contextlib import closing -from libprs500.ebooks.BeautifulSoup import BeautifulStoneSoup -from libprs500.ebooks.metadata.opf import OPF, OPFReader +from calibre.ebooks.BeautifulSoup import BeautifulStoneSoup +from calibre.ebooks.metadata.opf import OPF, OPFReader class EPubException(Exception): diff --git a/src/libprs500/ebooks/metadata/html.py b/src/calibre/ebooks/metadata/html.py similarity index 96% rename from src/libprs500/ebooks/metadata/html.py rename to src/calibre/ebooks/metadata/html.py index 87a6e6109b..b267a9e647 100644 --- a/src/libprs500/ebooks/metadata/html.py +++ b/src/calibre/ebooks/metadata/html.py @@ -9,7 +9,7 @@ Try to read metadata from an HTML file. import re -from libprs500.ebooks.metadata import MetaInformation +from calibre.ebooks.metadata import MetaInformation def get_metadata(stream): src = stream.read() diff --git a/src/libprs500/ebooks/metadata/isbndb.py b/src/calibre/ebooks/metadata/isbndb.py similarity index 96% rename from src/libprs500/ebooks/metadata/isbndb.py rename to src/calibre/ebooks/metadata/isbndb.py index 1e41f4891c..b713ca5ea5 100644 --- a/src/libprs500/ebooks/metadata/isbndb.py +++ b/src/calibre/ebooks/metadata/isbndb.py @@ -7,9 +7,9 @@ Interface to isbndb.com. My key HLLXQX2A. import sys, logging, re, socket from urllib import urlopen, quote -from libprs500 import setup_cli_handlers, OptionParser -from libprs500.ebooks.metadata import MetaInformation -from libprs500.ebooks.BeautifulSoup import BeautifulStoneSoup +from calibre import setup_cli_handlers, OptionParser +from calibre.ebooks.metadata import MetaInformation +from calibre.ebooks.BeautifulSoup import BeautifulStoneSoup BASE_URL = 'http://isbndb.com/api/books.xml?access_key=%(key)s&page_number=1&results=subjects,authors,texts&' diff --git a/src/libprs500/ebooks/metadata/library_thing.py b/src/calibre/ebooks/metadata/library_thing.py similarity index 95% rename from src/libprs500/ebooks/metadata/library_thing.py rename to src/calibre/ebooks/metadata/library_thing.py index 97e404968d..bb62faebca 100644 --- a/src/libprs500/ebooks/metadata/library_thing.py +++ b/src/calibre/ebooks/metadata/library_thing.py @@ -6,8 +6,8 @@ Fetch cover from LibraryThing.com based on ISBN number. import sys, socket, os, re -from libprs500 import browser as _browser, OptionParser -from libprs500.ebooks.BeautifulSoup import BeautifulSoup +from calibre import browser as _browser, OptionParser +from calibre.ebooks.BeautifulSoup import BeautifulSoup browser = None class LibraryThingError(Exception): diff --git a/src/libprs500/ebooks/metadata/lit.py b/src/calibre/ebooks/metadata/lit.py similarity index 99% rename from src/libprs500/ebooks/metadata/lit.py rename to src/calibre/ebooks/metadata/lit.py index d562e73832..09776d61e9 100644 --- a/src/libprs500/ebooks/metadata/lit.py +++ b/src/calibre/ebooks/metadata/lit.py @@ -6,8 +6,8 @@ Support for reading the metadata from a lit file. import sys, struct, cStringIO, os -from libprs500.ebooks.metadata import MetaInformation -from libprs500.ebooks.metadata.opf import OPFReader +from calibre.ebooks.metadata import MetaInformation +from calibre.ebooks.metadata.opf import OPFReader OPF_ATTR_MAP = [ None, diff --git a/src/libprs500/ebooks/metadata/meta.py b/src/calibre/ebooks/metadata/meta.py similarity index 84% rename from src/libprs500/ebooks/metadata/meta.py rename to src/calibre/ebooks/metadata/meta.py index 7886265cc5..d4cdd7e04a 100644 --- a/src/libprs500/ebooks/metadata/meta.py +++ b/src/calibre/ebooks/metadata/meta.py @@ -3,18 +3,18 @@ __copyright__ = '2008, Kovid Goyal ' import os, re, collections -from libprs500.ebooks.metadata.rtf import get_metadata as rtf_metadata -from libprs500.ebooks.lrf.meta import get_metadata as lrf_metadata -from libprs500.ebooks.metadata.pdf import get_metadata as pdf_metadata -from libprs500.ebooks.metadata.lit import get_metadata as lit_metadata -from libprs500.ebooks.metadata.epub import get_metadata as epub_metadata -from libprs500.ebooks.metadata.html import get_metadata as html_metadata -from libprs500.ebooks.mobi.reader import get_metadata as mobi_metadata -from libprs500.ebooks.metadata.opf import OPFReader -from libprs500.ebooks.metadata.rtf import set_metadata as set_rtf_metadata -from libprs500.ebooks.lrf.meta import set_metadata as set_lrf_metadata +from calibre.ebooks.metadata.rtf import get_metadata as rtf_metadata +from calibre.ebooks.lrf.meta import get_metadata as lrf_metadata +from calibre.ebooks.metadata.pdf import get_metadata as pdf_metadata +from calibre.ebooks.metadata.lit import get_metadata as lit_metadata +from calibre.ebooks.metadata.epub import get_metadata as epub_metadata +from calibre.ebooks.metadata.html import get_metadata as html_metadata +from calibre.ebooks.mobi.reader import get_metadata as mobi_metadata +from calibre.ebooks.metadata.opf import OPFReader +from calibre.ebooks.metadata.rtf import set_metadata as set_rtf_metadata +from calibre.ebooks.lrf.meta import set_metadata as set_lrf_metadata -from libprs500.ebooks.metadata import MetaInformation +from calibre.ebooks.metadata import MetaInformation _METADATA_PRIORITIES = [ 'html', 'htm', 'xhtml', 'xhtm', diff --git a/src/libprs500/ebooks/metadata/ncx.xml b/src/calibre/ebooks/metadata/ncx.xml similarity index 100% rename from src/libprs500/ebooks/metadata/ncx.xml rename to src/calibre/ebooks/metadata/ncx.xml diff --git a/src/libprs500/ebooks/metadata/opf.py b/src/calibre/ebooks/metadata/opf.py similarity index 98% rename from src/libprs500/ebooks/metadata/opf.py rename to src/calibre/ebooks/metadata/opf.py index 2c9506d0d6..a4906d94ea 100644 --- a/src/libprs500/ebooks/metadata/opf.py +++ b/src/calibre/ebooks/metadata/opf.py @@ -9,12 +9,12 @@ from urlparse import urlparse import xml.dom.minidom as dom from itertools import repeat -from libprs500 import __appname__ -from libprs500.ebooks.metadata import MetaInformation -from libprs500.ebooks.BeautifulSoup import BeautifulStoneSoup -from libprs500.ebooks.lrf import entity_to_unicode -from libprs500.ebooks.metadata import get_parser -from libprs500.ebooks.metadata.toc import TOC +from calibre import __appname__ +from calibre.ebooks.metadata import MetaInformation +from calibre.ebooks.BeautifulSoup import BeautifulStoneSoup +from calibre.ebooks.lrf import entity_to_unicode +from calibre.ebooks.metadata import get_parser +from calibre.ebooks.metadata.toc import TOC class ManifestItem(object): def __init__(self, item, cwd): @@ -595,7 +595,7 @@ class OPFCreator(MetaInformation): self.toc = toc def render(self, opf_stream, ncx_stream=None): - from libprs500.resources import opf_template + from calibre.resources import opf_template from genshi.template import MarkupTemplate template = MarkupTemplate(opf_template) opf = template.generate(__appname__=__appname__, mi=self).render('xml') diff --git a/src/libprs500/ebooks/metadata/opf.xml b/src/calibre/ebooks/metadata/opf.xml similarity index 100% rename from src/libprs500/ebooks/metadata/opf.xml rename to src/calibre/ebooks/metadata/opf.xml diff --git a/src/libprs500/ebooks/metadata/pdf.py b/src/calibre/ebooks/metadata/pdf.py similarity index 93% rename from src/libprs500/ebooks/metadata/pdf.py rename to src/calibre/ebooks/metadata/pdf.py index ae58f1d163..a16f7caa76 100644 --- a/src/libprs500/ebooks/metadata/pdf.py +++ b/src/calibre/ebooks/metadata/pdf.py @@ -4,8 +4,8 @@ __copyright__ = '2008, Kovid Goyal ' import sys, os -from libprs500.ebooks.metadata import MetaInformation -from libprs500.ebooks.pyPdf import PdfFileReader +from calibre.ebooks.metadata import MetaInformation +from calibre.ebooks.pyPdf import PdfFileReader def get_metadata(stream): """ Return metadata as a L{MetaInfo} object """ diff --git a/src/libprs500/ebooks/metadata/rtf.py b/src/calibre/ebooks/metadata/rtf.py similarity index 98% rename from src/libprs500/ebooks/metadata/rtf.py rename to src/calibre/ebooks/metadata/rtf.py index 943bd45ac5..6a0d7ebb79 100644 --- a/src/libprs500/ebooks/metadata/rtf.py +++ b/src/calibre/ebooks/metadata/rtf.py @@ -5,7 +5,7 @@ Edit metadata in RTF files. """ import re, cStringIO, sys -from libprs500.ebooks.metadata import MetaInformation, get_parser +from calibre.ebooks.metadata import MetaInformation, get_parser title_pat = re.compile(r'\{\\info.*?\{\\title(.*?)(?' from PyQt4.QtGui import QDialog, QListWidgetItem -from libprs500.gui2 import file_icon_provider -from libprs500.gui2.dialogs.choose_format_ui import Ui_ChooseFormatDialog +from calibre.gui2 import file_icon_provider +from calibre.gui2.dialogs.choose_format_ui import Ui_ChooseFormatDialog class ChooseFormatDialog(QDialog, Ui_ChooseFormatDialog): diff --git a/src/libprs500/gui2/dialogs/choose_format.ui b/src/calibre/gui2/dialogs/choose_format.ui similarity index 100% rename from src/libprs500/gui2/dialogs/choose_format.ui rename to src/calibre/gui2/dialogs/choose_format.ui diff --git a/src/libprs500/gui2/dialogs/config.py b/src/calibre/gui2/dialogs/config.py similarity index 95% rename from src/libprs500/gui2/dialogs/config.py rename to src/calibre/gui2/dialogs/config.py index 36610a37ad..2aad0bd645 100644 --- a/src/libprs500/gui2/dialogs/config.py +++ b/src/calibre/gui2/dialogs/config.py @@ -5,10 +5,10 @@ import os from PyQt4.QtGui import QDialog, QMessageBox, QListWidgetItem from PyQt4.QtCore import QVariant, SIGNAL, QStringList, QTimer, Qt, QSize -from libprs500 import islinux, Settings -from libprs500.gui2.dialogs.config_ui import Ui_Dialog -from libprs500.gui2 import qstring_to_unicode, choose_dir, error_dialog -from libprs500.gui2.widgets import FilenamePattern +from calibre import islinux, Settings +from calibre.gui2.dialogs.config_ui import Ui_Dialog +from calibre.gui2 import qstring_to_unicode, choose_dir, error_dialog +from calibre.gui2.widgets import FilenamePattern class ConfigDialog(QDialog, Ui_Dialog): diff --git a/src/libprs500/gui2/dialogs/config.ui b/src/calibre/gui2/dialogs/config.ui similarity index 100% rename from src/libprs500/gui2/dialogs/config.ui rename to src/calibre/gui2/dialogs/config.ui diff --git a/src/libprs500/gui2/dialogs/conversion_error.py b/src/calibre/gui2/dialogs/conversion_error.py similarity index 87% rename from src/libprs500/gui2/dialogs/conversion_error.py rename to src/calibre/gui2/dialogs/conversion_error.py index 518b5e29e6..cfa573e371 100644 --- a/src/libprs500/gui2/dialogs/conversion_error.py +++ b/src/calibre/gui2/dialogs/conversion_error.py @@ -2,7 +2,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' from PyQt4.QtGui import QDialog -from libprs500.gui2.dialogs.conversion_error_ui import Ui_ConversionErrorDialog +from calibre.gui2.dialogs.conversion_error_ui import Ui_ConversionErrorDialog class ConversionErrorDialog(QDialog, Ui_ConversionErrorDialog): diff --git a/src/libprs500/gui2/dialogs/conversion_error.ui b/src/calibre/gui2/dialogs/conversion_error.ui similarity index 100% rename from src/libprs500/gui2/dialogs/conversion_error.ui rename to src/calibre/gui2/dialogs/conversion_error.ui diff --git a/src/libprs500/gui2/dialogs/fetch_metadata.py b/src/calibre/gui2/dialogs/fetch_metadata.py similarity index 95% rename from src/libprs500/gui2/dialogs/fetch_metadata.py rename to src/calibre/gui2/dialogs/fetch_metadata.py index 6b9bd12fa0..246752dd6f 100644 --- a/src/libprs500/gui2/dialogs/fetch_metadata.py +++ b/src/calibre/gui2/dialogs/fetch_metadata.py @@ -10,10 +10,10 @@ from PyQt4.QtCore import Qt, QObject, SIGNAL, QVariant, \ QAbstractTableModel, QCoreApplication from PyQt4.QtGui import QDialog, QItemSelectionModel -from libprs500.gui2.dialogs.fetch_metadata_ui import Ui_FetchMetadata -from libprs500.gui2 import error_dialog, NONE -from libprs500.ebooks.metadata.isbndb import create_books, option_parser -from libprs500 import Settings +from calibre.gui2.dialogs.fetch_metadata_ui import Ui_FetchMetadata +from calibre.gui2 import error_dialog, NONE +from calibre.ebooks.metadata.isbndb import create_books, option_parser +from calibre import Settings class Matches(QAbstractTableModel): diff --git a/src/libprs500/gui2/dialogs/fetch_metadata.ui b/src/calibre/gui2/dialogs/fetch_metadata.ui similarity index 100% rename from src/libprs500/gui2/dialogs/fetch_metadata.ui rename to src/calibre/gui2/dialogs/fetch_metadata.ui diff --git a/src/libprs500/gui2/dialogs/job_view.ui b/src/calibre/gui2/dialogs/job_view.ui similarity index 100% rename from src/libprs500/gui2/dialogs/job_view.ui rename to src/calibre/gui2/dialogs/job_view.ui diff --git a/src/libprs500/gui2/dialogs/jobs.py b/src/calibre/gui2/dialogs/jobs.py similarity index 93% rename from src/libprs500/gui2/dialogs/jobs.py rename to src/calibre/gui2/dialogs/jobs.py index 19b79d63f8..57711ce511 100644 --- a/src/libprs500/gui2/dialogs/jobs.py +++ b/src/calibre/gui2/dialogs/jobs.py @@ -5,8 +5,8 @@ __copyright__ = '2008, Kovid Goyal ' from PyQt4.QtCore import Qt, QObject, SIGNAL from PyQt4.QtGui import QDialog -from libprs500.gui2.dialogs.jobs_ui import Ui_JobsDialog -from libprs500 import __appname__ +from calibre.gui2.dialogs.jobs_ui import Ui_JobsDialog +from calibre import __appname__ class JobsDialog(QDialog, Ui_JobsDialog): def __init__(self, window, model): diff --git a/src/libprs500/gui2/dialogs/jobs.ui b/src/calibre/gui2/dialogs/jobs.ui similarity index 100% rename from src/libprs500/gui2/dialogs/jobs.ui rename to src/calibre/gui2/dialogs/jobs.ui diff --git a/src/libprs500/gui2/dialogs/lrf_single.py b/src/calibre/gui2/dialogs/lrf_single.py similarity index 97% rename from src/libprs500/gui2/dialogs/lrf_single.py rename to src/calibre/gui2/dialogs/lrf_single.py index 7a02c8c8fe..ccddf47ba7 100644 --- a/src/libprs500/gui2/dialogs/lrf_single.py +++ b/src/calibre/gui2/dialogs/lrf_single.py @@ -6,14 +6,14 @@ from PyQt4.QtCore import QObject, SIGNAL, Qt, QVariant, QByteArray from PyQt4.QtGui import QAbstractSpinBox, QLineEdit, QCheckBox, QDialog, \ QPixmap, QTextEdit -from libprs500.gui2.dialogs.lrf_single_ui import Ui_LRFSingleDialog -from libprs500.gui2.dialogs.choose_format import ChooseFormatDialog -from libprs500.gui2 import qstring_to_unicode, error_dialog, \ +from calibre.gui2.dialogs.lrf_single_ui import Ui_LRFSingleDialog +from calibre.gui2.dialogs.choose_format import ChooseFormatDialog +from calibre.gui2 import qstring_to_unicode, error_dialog, \ pixmap_to_data, choose_images -from libprs500.gui2.widgets import FontFamilyModel -from libprs500.ebooks.lrf import option_parser -from libprs500.ptempfile import PersistentTemporaryFile -from libprs500 import __appname__, Settings +from calibre.gui2.widgets import FontFamilyModel +from calibre.ebooks.lrf import option_parser +from calibre.ptempfile import PersistentTemporaryFile +from calibre import __appname__, Settings font_family_model = None diff --git a/src/libprs500/gui2/dialogs/lrf_single.ui b/src/calibre/gui2/dialogs/lrf_single.ui similarity index 100% rename from src/libprs500/gui2/dialogs/lrf_single.ui rename to src/calibre/gui2/dialogs/lrf_single.ui diff --git a/src/libprs500/gui2/dialogs/metadata_bulk.py b/src/calibre/gui2/dialogs/metadata_bulk.py similarity index 95% rename from src/libprs500/gui2/dialogs/metadata_bulk.py rename to src/calibre/gui2/dialogs/metadata_bulk.py index 1e568127e0..0cd7fc3a78 100644 --- a/src/libprs500/gui2/dialogs/metadata_bulk.py +++ b/src/calibre/gui2/dialogs/metadata_bulk.py @@ -6,8 +6,8 @@ __copyright__ = '2008, Kovid Goyal ' from PyQt4.QtCore import SIGNAL, QObject from PyQt4.QtGui import QDialog -from libprs500.gui2 import qstring_to_unicode -from libprs500.gui2.dialogs.metadata_bulk_ui import Ui_MetadataBulkDialog +from calibre.gui2 import qstring_to_unicode +from calibre.gui2.dialogs.metadata_bulk_ui import Ui_MetadataBulkDialog class MetadataBulkDialog(QDialog, Ui_MetadataBulkDialog): def __init__(self, window, rows, db): diff --git a/src/libprs500/gui2/dialogs/metadata_bulk.ui b/src/calibre/gui2/dialogs/metadata_bulk.ui similarity index 100% rename from src/libprs500/gui2/dialogs/metadata_bulk.ui rename to src/calibre/gui2/dialogs/metadata_bulk.ui diff --git a/src/libprs500/gui2/dialogs/metadata_single.py b/src/calibre/gui2/dialogs/metadata_single.py similarity index 96% rename from src/libprs500/gui2/dialogs/metadata_single.py rename to src/calibre/gui2/dialogs/metadata_single.py index 63c6132544..eb0c8fa555 100644 --- a/src/libprs500/gui2/dialogs/metadata_single.py +++ b/src/calibre/gui2/dialogs/metadata_single.py @@ -10,15 +10,15 @@ from PyQt4.QtCore import SIGNAL, QObject, QCoreApplication, Qt, QVariant from PyQt4.QtGui import QPixmap, QListWidgetItem, QErrorMessage, QDialog -from libprs500.gui2 import qstring_to_unicode, error_dialog, file_icon_provider, \ +from calibre.gui2 import qstring_to_unicode, error_dialog, file_icon_provider, \ choose_files, pixmap_to_data, choose_images -from libprs500.gui2.dialogs.metadata_single_ui import Ui_MetadataSingleDialog -from libprs500.gui2.dialogs.fetch_metadata import FetchMetadata -from libprs500.gui2.dialogs.tag_editor import TagEditor -from libprs500.gui2.dialogs.password import PasswordDialog -from libprs500.ebooks import BOOK_EXTENSIONS -from libprs500.ebooks.metadata.library_thing import login, cover_from_isbn, LibraryThingError -from libprs500 import Settings +from calibre.gui2.dialogs.metadata_single_ui import Ui_MetadataSingleDialog +from calibre.gui2.dialogs.fetch_metadata import FetchMetadata +from calibre.gui2.dialogs.tag_editor import TagEditor +from calibre.gui2.dialogs.password import PasswordDialog +from calibre.ebooks import BOOK_EXTENSIONS +from calibre.ebooks.metadata.library_thing import login, cover_from_isbn, LibraryThingError +from calibre import Settings class Format(QListWidgetItem): def __init__(self, parent, ext, size, path=None): diff --git a/src/libprs500/gui2/dialogs/metadata_single.ui b/src/calibre/gui2/dialogs/metadata_single.ui similarity index 100% rename from src/libprs500/gui2/dialogs/metadata_single.ui rename to src/calibre/gui2/dialogs/metadata_single.ui diff --git a/src/libprs500/gui2/dialogs/password.py b/src/calibre/gui2/dialogs/password.py similarity index 91% rename from src/libprs500/gui2/dialogs/password.py rename to src/calibre/gui2/dialogs/password.py index b3b3af7150..2710834a57 100644 --- a/src/libprs500/gui2/dialogs/password.py +++ b/src/calibre/gui2/dialogs/password.py @@ -4,9 +4,9 @@ __copyright__ = '2008, Kovid Goyal ' from PyQt4.QtGui import QDialog, QLineEdit from PyQt4.QtCore import QVariant, SIGNAL, Qt -from libprs500.gui2.dialogs.password_ui import Ui_Dialog -from libprs500.gui2 import qstring_to_unicode -from libprs500 import Settings +from calibre.gui2.dialogs.password_ui import Ui_Dialog +from calibre.gui2 import qstring_to_unicode +from calibre import Settings class PasswordDialog(QDialog, Ui_Dialog): diff --git a/src/libprs500/gui2/dialogs/password.ui b/src/calibre/gui2/dialogs/password.ui similarity index 100% rename from src/libprs500/gui2/dialogs/password.ui rename to src/calibre/gui2/dialogs/password.ui diff --git a/src/libprs500/gui2/dialogs/search.py b/src/calibre/gui2/dialogs/search.py similarity index 93% rename from src/libprs500/gui2/dialogs/search.py rename to src/calibre/gui2/dialogs/search.py index 05909cc3de..6faca647bb 100644 --- a/src/libprs500/gui2/dialogs/search.py +++ b/src/calibre/gui2/dialogs/search.py @@ -4,9 +4,9 @@ import re from PyQt4.QtGui import QWidget, QDialog, QVBoxLayout from PyQt4.QtCore import SIGNAL -from libprs500.gui2.dialogs.search_ui import Ui_Dialog -from libprs500.gui2.dialogs.search_item_ui import Ui_Form -from libprs500.gui2 import qstring_to_unicode +from calibre.gui2.dialogs.search_ui import Ui_Dialog +from calibre.gui2.dialogs.search_item_ui import Ui_Form +from calibre.gui2 import qstring_to_unicode class SearchItem(Ui_Form, QWidget): diff --git a/src/libprs500/gui2/dialogs/search.ui b/src/calibre/gui2/dialogs/search.ui similarity index 100% rename from src/libprs500/gui2/dialogs/search.ui rename to src/calibre/gui2/dialogs/search.ui diff --git a/src/libprs500/gui2/dialogs/search_item.ui b/src/calibre/gui2/dialogs/search_item.ui similarity index 100% rename from src/libprs500/gui2/dialogs/search_item.ui rename to src/calibre/gui2/dialogs/search_item.ui diff --git a/src/libprs500/gui2/dialogs/tag_editor.py b/src/calibre/gui2/dialogs/tag_editor.py similarity index 96% rename from src/libprs500/gui2/dialogs/tag_editor.py rename to src/calibre/gui2/dialogs/tag_editor.py index 55ab38ed12..8185d1e40a 100644 --- a/src/libprs500/gui2/dialogs/tag_editor.py +++ b/src/calibre/gui2/dialogs/tag_editor.py @@ -3,9 +3,9 @@ __copyright__ = '2008, Kovid Goyal ' from PyQt4.QtCore import SIGNAL, Qt from PyQt4.QtGui import QDialog, QMessageBox -from libprs500.gui2.dialogs.tag_editor_ui import Ui_TagEditor -from libprs500.gui2 import qstring_to_unicode -from libprs500.gui2 import question_dialog, error_dialog +from calibre.gui2.dialogs.tag_editor_ui import Ui_TagEditor +from calibre.gui2 import qstring_to_unicode +from calibre.gui2 import question_dialog, error_dialog class TagEditor(QDialog, Ui_TagEditor): diff --git a/src/libprs500/gui2/dialogs/tag_editor.ui b/src/calibre/gui2/dialogs/tag_editor.ui similarity index 100% rename from src/libprs500/gui2/dialogs/tag_editor.ui rename to src/calibre/gui2/dialogs/tag_editor.ui diff --git a/src/libprs500/gui2/dialogs/user_profiles.py b/src/calibre/gui2/dialogs/user_profiles.py similarity index 95% rename from src/libprs500/gui2/dialogs/user_profiles.py rename to src/calibre/gui2/dialogs/user_profiles.py index ab0307199a..69b35949f9 100644 --- a/src/libprs500/gui2/dialogs/user_profiles.py +++ b/src/calibre/gui2/dialogs/user_profiles.py @@ -5,11 +5,11 @@ import time from PyQt4.QtCore import SIGNAL from PyQt4.QtGui import QDialog, QMessageBox -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 +from calibre.web.feeds.recipes import compile_recipe +from calibre.web.feeds.news import AutomaticNewsRecipe +from calibre.gui2.dialogs.user_profiles_ui import Ui_Dialog +from calibre.gui2 import qstring_to_unicode, error_dialog, question_dialog +from calibre.gui2.widgets import PythonHighlighter class UserProfiles(QDialog, Ui_Dialog): diff --git a/src/libprs500/gui2/dialogs/user_profiles.ui b/src/calibre/gui2/dialogs/user_profiles.ui similarity index 100% rename from src/libprs500/gui2/dialogs/user_profiles.ui rename to src/calibre/gui2/dialogs/user_profiles.ui diff --git a/src/libprs500/gui2/filename_pattern.ui b/src/calibre/gui2/filename_pattern.ui similarity index 100% rename from src/libprs500/gui2/filename_pattern.ui rename to src/calibre/gui2/filename_pattern.ui diff --git a/src/libprs500/gui2/images/back.svg b/src/calibre/gui2/images/back.svg similarity index 99% rename from src/libprs500/gui2/images/back.svg rename to src/calibre/gui2/images/back.svg index d2db41df0c..5c0b1ffc28 100644 --- a/src/libprs500/gui2/images/back.svg +++ b/src/calibre/gui2/images/back.svg @@ -21,7 +21,7 @@ sodipodi:version="0.32" inkscape:version="0.45.1" sodipodi:docname="back.svg" - sodipodi:docbase="/home/kovid/work/libprs500/src/libprs500/gui2/images" + sodipodi:docbase="/home/kovid/work/calibre/src/calibre/gui2/images" inkscape:output_extension="org.inkscape.output.svg.inkscape"> + sodipodi:docbase="/home/kovid/work/calibre/src/calibre/gui2/images"> = 0: + self.document.previous() + else: + self.document.next() + def closeEvent(self, event): if self.renderer is not None and self.renderer.isRunning(): self.renderer.abort() @@ -244,7 +250,7 @@ def file_renderer(stream, opts, parent=None, logger=None): if islinux: try: # Set lrfviewer as the default for LRF files for this user from subprocess import call - call('xdg-mime default libprs500-lrfviewer.desktop application/lrf', shell=True) + call('xdg-mime default calibre-lrfviewer.desktop application/lrf', shell=True) except: pass m = Main(logger, opts, parent=parent) diff --git a/src/libprs500/gui2/lrf_renderer/main.ui b/src/calibre/gui2/lrf_renderer/main.ui similarity index 100% rename from src/libprs500/gui2/lrf_renderer/main.ui rename to src/calibre/gui2/lrf_renderer/main.ui diff --git a/src/libprs500/gui2/lrf_renderer/text.py b/src/calibre/gui2/lrf_renderer/text.py similarity index 99% rename from src/libprs500/gui2/lrf_renderer/text.py rename to src/calibre/gui2/lrf_renderer/text.py index 8abf9293f8..3ae8fd5098 100644 --- a/src/libprs500/gui2/lrf_renderer/text.py +++ b/src/calibre/gui2/lrf_renderer/text.py @@ -6,10 +6,10 @@ from PyQt4.QtCore import Qt, QRectF, QString from PyQt4.QtGui import QFont, QColor, QPixmap, QGraphicsPixmapItem, \ QGraphicsItem, QFontMetrics, QPen, QBrush, QGraphicsRectItem -from libprs500.ebooks.lrf.fonts import FONT_MAP -from libprs500.ebooks.BeautifulSoup import Tag -from libprs500.ebooks.hyphenate import hyphenate_word -from libprs500.gui2 import qstring_to_unicode +from calibre.ebooks.lrf.fonts import FONT_MAP +from calibre.ebooks.BeautifulSoup import Tag +from calibre.ebooks.hyphenate import hyphenate_word +from calibre.gui2 import qstring_to_unicode WEIGHT_MAP = lambda wt : int((wt/10.)-1) NULL = lambda a, b: a diff --git a/src/libprs500/gui2/main.py b/src/calibre/gui2/main.py similarity index 96% rename from src/libprs500/gui2/main.py rename to src/calibre/gui2/main.py index a267035eae..da861d00e2 100644 --- a/src/libprs500/gui2/main.py +++ b/src/calibre/gui2/main.py @@ -8,38 +8,38 @@ from PyQt4.QtGui import QPixmap, QColor, QPainter, QMenu, QIcon, QMessageBox, \ QToolButton, QDialog from PyQt4.QtSvg import QSvgRenderer -from libprs500 import __version__, __appname__, islinux, sanitize_file_name, launch, Settings -from libprs500.ptempfile import PersistentTemporaryFile -from libprs500.ebooks.metadata.meta import get_metadata, get_filename_pat, set_filename_pat -from libprs500.devices.errors import FreeSpaceError -from libprs500.devices.interface import Device -from libprs500.gui2 import APP_UID, warning_dialog, choose_files, error_dialog, \ +from calibre import __version__, __appname__, islinux, sanitize_file_name, launch, Settings +from calibre.ptempfile import PersistentTemporaryFile +from calibre.ebooks.metadata.meta import get_metadata, get_filename_pat, set_filename_pat +from calibre.devices.errors import FreeSpaceError +from calibre.devices.interface import Device +from calibre.gui2 import APP_UID, warning_dialog, choose_files, error_dialog, \ initialize_file_icon_provider, question_dialog,\ pixmap_to_data, choose_dir, ORG_NAME, \ qstring_to_unicode, set_sidebar_directories -from libprs500 import iswindows, isosx -from libprs500.library.database import LibraryDatabase -from libprs500.gui2.update import CheckForUpdates -from libprs500.gui2.main_window import MainWindow -from libprs500.gui2.main_ui import Ui_MainWindow -from libprs500.gui2.device import DeviceDetector, DeviceManager -from libprs500.gui2.status import StatusBar -from libprs500.gui2.jobs import JobManager -from libprs500.gui2.news import NewsMenu -from libprs500.gui2.dialogs.metadata_single import MetadataSingleDialog -from libprs500.gui2.dialogs.metadata_bulk import MetadataBulkDialog -from libprs500.gui2.dialogs.jobs import JobsDialog -from libprs500.gui2.dialogs.conversion_error import ConversionErrorDialog -from libprs500.gui2.dialogs.lrf_single import LRFSingleDialog, LRFBulkDialog -from libprs500.gui2.dialogs.config import ConfigDialog -from libprs500.gui2.dialogs.search import SearchDialog -from libprs500.gui2.dialogs.user_profiles import UserProfiles -from libprs500.gui2.dialogs.choose_format import ChooseFormatDialog -from libprs500.library.database import DatabaseLocked -from libprs500.ebooks.metadata.meta import set_metadata -from libprs500.ebooks.metadata import MetaInformation -from libprs500.ebooks import BOOK_EXTENSIONS -from libprs500.ebooks.lrf import preferred_source_formats as LRF_PREFERRED_SOURCE_FORMATS +from calibre import iswindows, isosx +from calibre.library.database import LibraryDatabase +from calibre.gui2.update import CheckForUpdates +from calibre.gui2.main_window import MainWindow +from calibre.gui2.main_ui import Ui_MainWindow +from calibre.gui2.device import DeviceDetector, DeviceManager +from calibre.gui2.status import StatusBar +from calibre.gui2.jobs import JobManager +from calibre.gui2.news import NewsMenu +from calibre.gui2.dialogs.metadata_single import MetadataSingleDialog +from calibre.gui2.dialogs.metadata_bulk import MetadataBulkDialog +from calibre.gui2.dialogs.jobs import JobsDialog +from calibre.gui2.dialogs.conversion_error import ConversionErrorDialog +from calibre.gui2.dialogs.lrf_single import LRFSingleDialog, LRFBulkDialog +from calibre.gui2.dialogs.config import ConfigDialog +from calibre.gui2.dialogs.search import SearchDialog +from calibre.gui2.dialogs.user_profiles import UserProfiles +from calibre.gui2.dialogs.choose_format import ChooseFormatDialog +from calibre.library.database import DatabaseLocked +from calibre.ebooks.metadata.meta import set_metadata +from calibre.ebooks.metadata import MetaInformation +from calibre.ebooks import BOOK_EXTENSIONS +from calibre.ebooks.lrf import preferred_source_formats as LRF_PREFERRED_SOURCE_FORMATS @@ -1008,7 +1008,7 @@ class Main(MainWindow, Ui_MainWindow): def main(args=sys.argv): from PyQt4.Qt import QApplication - from libprs500 import singleinstance + from calibre import singleinstance pid = os.fork() if islinux else -1 if pid <= 0: diff --git a/src/libprs500/gui2/main.ui b/src/calibre/gui2/main.ui similarity index 100% rename from src/libprs500/gui2/main.ui rename to src/calibre/gui2/main.ui diff --git a/src/libprs500/gui2/main_window.py b/src/calibre/gui2/main_window.py similarity index 91% rename from src/libprs500/gui2/main_window.py rename to src/calibre/gui2/main_window.py index 2a94913a8c..c2b5efc0ed 100644 --- a/src/libprs500/gui2/main_window.py +++ b/src/calibre/gui2/main_window.py @@ -4,7 +4,7 @@ __copyright__ = '2008, Kovid Goyal ' import StringIO, traceback, sys from PyQt4.QtGui import QMainWindow -from libprs500.gui2.dialogs.conversion_error import ConversionErrorDialog +from calibre.gui2.dialogs.conversion_error import ConversionErrorDialog class MainWindow(QMainWindow): diff --git a/src/libprs500/gui2/make.py b/src/calibre/gui2/make.py similarity index 90% rename from src/libprs500/gui2/make.py rename to src/calibre/gui2/make.py index aa1f2d4727..f20227cf5c 100644 --- a/src/libprs500/gui2/make.py +++ b/src/calibre/gui2/make.py @@ -12,8 +12,8 @@ from PyQt4.uic import compileUi check_call = partial(subprocess.check_call, shell=True) sys.path.insert(1, os.path.abspath('..%s..'%os.sep)) -from libprs500 import __appname__ -from libprs500.path import path +from calibre import __appname__ +from calibre.path import path def find_forms(): forms = [] @@ -36,9 +36,9 @@ def build_forms(forms): compileUi(form, buf) dat = buf.getvalue() dat = dat.replace('__appname__', __appname__) - dat = dat.replace('import images_rc', 'from libprs500.gui2 import images_rc') - dat = dat.replace('from library import', 'from libprs500.gui2.library import') - dat = dat.replace('from widgets import', 'from libprs500.gui2.widgets import') + dat = dat.replace('import images_rc', 'from calibre.gui2 import images_rc') + dat = dat.replace('from library import', 'from calibre.gui2.library import') + dat = dat.replace('from widgets import', 'from calibre.gui2.widgets import') dat = re.compile(r'QtGui.QApplication.translate\(.+?,\s+"(.+?)(?' from PyQt4.QtCore import QObject, SIGNAL, QFile from PyQt4.QtGui import QMenu, QIcon, QDialog, QAction -from libprs500.gui2.dialogs.password import PasswordDialog -from libprs500.web.feeds.recipes import titles, get_builtin_recipe, compile_recipe +from calibre.gui2.dialogs.password import PasswordDialog +from calibre.web.feeds.recipes import titles, get_builtin_recipe, compile_recipe class NewsAction(QAction): diff --git a/src/libprs500/gui2/status.py b/src/calibre/gui2/status.py similarity index 98% rename from src/libprs500/gui2/status.py rename to src/calibre/gui2/status.py index d5525be4d2..fd3bee4819 100644 --- a/src/libprs500/gui2/status.py +++ b/src/calibre/gui2/status.py @@ -5,8 +5,8 @@ import textwrap from PyQt4.QtGui import QStatusBar, QMovie, QLabel, QFrame, QHBoxLayout, QPixmap, \ QVBoxLayout, QSizePolicy from PyQt4.QtCore import Qt, QSize -from libprs500 import fit_image -from libprs500.gui2 import qstring_to_unicode +from calibre import fit_image +from calibre.gui2 import qstring_to_unicode class BookInfoDisplay(QFrame): class BookCoverDisplay(QLabel): diff --git a/src/libprs500/gui2/update.py b/src/calibre/gui2/update.py similarity index 88% rename from src/libprs500/gui2/update.py rename to src/calibre/gui2/update.py index bcb85632b4..c3ebbc814e 100644 --- a/src/libprs500/gui2/update.py +++ b/src/calibre/gui2/update.py @@ -5,8 +5,8 @@ import urllib, re, traceback from PyQt4.QtCore import QThread, SIGNAL -from libprs500 import __version__, __appname__ -from libprs500.ebooks.BeautifulSoup import BeautifulSoup +from calibre import __version__, __appname__ +from calibre.ebooks.BeautifulSoup import BeautifulSoup class CheckForUpdates(QThread): diff --git a/src/libprs500/gui2/widgets.py b/src/calibre/gui2/widgets.py similarity index 98% rename from src/libprs500/gui2/widgets.py rename to src/calibre/gui2/widgets.py index 281b6cdaa2..b220636b00 100644 --- a/src/libprs500/gui2/widgets.py +++ b/src/calibre/gui2/widgets.py @@ -10,11 +10,11 @@ from PyQt4.QtGui import QListView, QIcon, QFont, QLabel, QListWidget, \ from PyQt4.QtCore import QAbstractListModel, QVariant, Qt, QSize, SIGNAL, \ QObject, QRegExp -from libprs500.gui2.jobs import DetailView -from libprs500.gui2 import human_readable, NONE, TableView, qstring_to_unicode, error_dialog -from libprs500.gui2.filename_pattern_ui import Ui_Form -from libprs500 import fit_image, get_font_families, Settings -from libprs500.ebooks.metadata.meta import get_filename_pat, metadata_from_filename, \ +from calibre.gui2.jobs import DetailView +from calibre.gui2 import human_readable, NONE, TableView, qstring_to_unicode, error_dialog +from calibre.gui2.filename_pattern_ui import Ui_Form +from calibre import fit_image, get_font_families, Settings +from calibre.ebooks.metadata.meta import get_filename_pat, metadata_from_filename, \ set_filename_pat class FilenamePattern(QWidget, Ui_Form): diff --git a/src/libprs500/library/__init__.py b/src/calibre/library/__init__.py similarity index 100% rename from src/libprs500/library/__init__.py rename to src/calibre/library/__init__.py diff --git a/src/libprs500/library/database.py b/src/calibre/library/database.py similarity index 99% rename from src/libprs500/library/database.py rename to src/calibre/library/database.py index b59f7c5a6a..1b869463bf 100644 --- a/src/libprs500/library/database.py +++ b/src/calibre/library/database.py @@ -7,12 +7,12 @@ import sqlite3 as sqlite import datetime, re, os, cPickle, traceback from zlib import compress, decompress -from libprs500 import sanitize_file_name -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 +from calibre import sanitize_file_name +from calibre.ebooks.metadata.meta import set_metadata, metadata_from_formats +from calibre.ebooks.metadata.opf import OPFCreator +from calibre.ebooks.metadata import MetaInformation +from calibre.ebooks import BOOK_EXTENSIONS +from calibre.web.feeds.recipes import migrate_automatic_profile_to_automatic_recipe class Concatenate(object): '''String concatenation aggregator for sqlite''' @@ -1118,7 +1118,10 @@ ALTER TABLE books ADD COLUMN isbn TEXT DEFAULT "" COLLATE NOCASE; self.conn.execute('UPDATE authors SET name=? WHERE id=?', (a, aid)) else: aid = self.conn.execute('INSERT INTO authors(name) VALUES (?)', (a,)).lastrowid - self.conn.execute('INSERT INTO books_authors_link(book, author) VALUES (?,?)', (id, aid)) + try: + self.conn.execute('INSERT INTO books_authors_link(book, author) VALUES (?,?)', (id, aid)) + except sqlite.IntegrityError: # Sometimes books specify the same author twice in their metadata + pass self.conn.commit() def set_author_sort(self, id, sort): diff --git a/src/libprs500/libunrar.py b/src/calibre/libunrar.py similarity index 99% rename from src/libprs500/libunrar.py rename to src/calibre/libunrar.py index abc24b6cf1..3348019bac 100644 --- a/src/libprs500/libunrar.py +++ b/src/calibre/libunrar.py @@ -10,7 +10,7 @@ from ctypes import Structure, c_char_p, c_uint, c_void_p, POINTER, \ byref, c_wchar_p, CFUNCTYPE, c_int, c_long, c_char, c_wchar from StringIO import StringIO -from libprs500 import iswindows, isosx, load_library +from calibre import iswindows, isosx, load_library _librar_name = 'libunrar' cdll = ctypes.cdll diff --git a/src/libprs500/libunzip.py b/src/calibre/libunzip.py similarity index 100% rename from src/libprs500/libunzip.py rename to src/calibre/libunzip.py diff --git a/src/libprs500/libwand.py b/src/calibre/libwand.py similarity index 97% rename from src/libprs500/libwand.py rename to src/calibre/libwand.py index b1095d3c12..97dc39ff6d 100644 --- a/src/libprs500/libwand.py +++ b/src/calibre/libwand.py @@ -2,7 +2,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal ' import ctypes, os, sys -from libprs500 import iswindows, isosx +from calibre import iswindows, isosx class WandException(Exception): pass diff --git a/src/libprs500/linux.py b/src/calibre/linux.py similarity index 71% rename from src/libprs500/linux.py rename to src/calibre/linux.py index de6235c3b8..bfb631ad10 100644 --- a/src/libprs500/linux.py +++ b/src/calibre/linux.py @@ -5,9 +5,9 @@ import shutil import sys, os, re from subprocess import check_call -from libprs500 import __version__, __appname__ +from calibre import __version__, __appname__ -from libprs500.devices import devices +from calibre.devices import devices DEVICES = devices() @@ -17,38 +17,39 @@ if os.environ.has_key('DESTDIR'): entry_points = { 'console_scripts': [ \ - 'prs500 = libprs500.devices.prs500.cli.main:main', - 'lrf-meta = libprs500.ebooks.lrf.meta:main', - 'rtf-meta = libprs500.ebooks.metadata.rtf:main', - 'pdf-meta = libprs500.ebooks.metadata.pdf:main', - 'lit-meta = libprs500.ebooks.metadata.lit:main', - 'opf-meta = libprs500.ebooks.metadata.opf:main', - 'epub-meta = libprs500.ebooks.metadata.epub:main', - 'txt2lrf = libprs500.ebooks.lrf.txt.convert_from:main', - 'html2lrf = libprs500.ebooks.lrf.html.convert_from:main', - 'markdown-libprs500 = libprs500.ebooks.markdown.markdown:main', - 'lit2lrf = libprs500.ebooks.lrf.lit.convert_from:main', - 'epub2lrf = libprs500.ebooks.lrf.epub.convert_from:main', - 'rtf2lrf = libprs500.ebooks.lrf.rtf.convert_from:main', - 'web2disk = libprs500.web.fetch.simple:main', - 'feeds2disk = libprs500.web.feeds.main:main', - 'feeds2lrf = libprs500.ebooks.lrf.feeds.convert_from:main', - 'web2lrf = libprs500.ebooks.lrf.web.convert_from:main', - 'pdf2lrf = libprs500.ebooks.lrf.pdf.convert_from:main', - 'mobi2lrf = libprs500.ebooks.lrf.mobi.convert_from:main', - 'any2lrf = libprs500.ebooks.lrf.any.convert_from:main', - 'lrf2lrs = libprs500.ebooks.lrf.parser:main', - 'lrs2lrf = libprs500.ebooks.lrf.lrs.convert_from:main', - 'pdfreflow = libprs500.ebooks.lrf.pdf.reflow:main', - 'isbndb = libprs500.ebooks.metadata.isbndb:main', - 'librarything = libprs500.ebooks.metadata.library_thing:main', - 'mobi2oeb = libprs500.ebooks.mobi.reader:main', - 'lrf2html = libprs500.ebooks.lrf.html.convert_to:main', - 'libprs500-debug = libprs500.debug:main', + 'prs500 = calibre.devices.prs500.cli.main:main', + 'lrf-meta = calibre.ebooks.lrf.meta:main', + 'rtf-meta = calibre.ebooks.metadata.rtf:main', + 'pdf-meta = calibre.ebooks.metadata.pdf:main', + 'lit-meta = calibre.ebooks.metadata.lit:main', + 'opf-meta = calibre.ebooks.metadata.opf:main', + 'epub-meta = calibre.ebooks.metadata.epub:main', + 'txt2lrf = calibre.ebooks.lrf.txt.convert_from:main', + 'html2lrf = calibre.ebooks.lrf.html.convert_from:main', + 'markdown-calibre = calibre.ebooks.markdown.markdown:main', + 'lit2lrf = calibre.ebooks.lrf.lit.convert_from:main', + 'epub2lrf = calibre.ebooks.lrf.epub.convert_from:main', + 'rtf2lrf = calibre.ebooks.lrf.rtf.convert_from:main', + 'web2disk = calibre.web.fetch.simple:main', + 'feeds2disk = calibre.web.feeds.main:main', + 'feeds2lrf = calibre.ebooks.lrf.feeds.convert_from:main', + 'web2lrf = calibre.ebooks.lrf.web.convert_from:main', + 'pdf2lrf = calibre.ebooks.lrf.pdf.convert_from:main', + 'mobi2lrf = calibre.ebooks.lrf.mobi.convert_from:main', + 'fb22lrf = calibre.ebooks.lrf.fb2.convert_from:main', + 'any2lrf = calibre.ebooks.lrf.any.convert_from:main', + 'lrf2lrs = calibre.ebooks.lrf.parser:main', + 'lrs2lrf = calibre.ebooks.lrf.lrs.convert_from:main', + 'pdfreflow = calibre.ebooks.lrf.pdf.reflow:main', + 'isbndb = calibre.ebooks.metadata.isbndb:main', + 'librarything = calibre.ebooks.metadata.library_thing:main', + 'mobi2oeb = calibre.ebooks.mobi.reader:main', + 'lrf2html = calibre.ebooks.lrf.html.convert_to:main', + 'calibre-debug = calibre.debug:main', ], 'gui_scripts' : [ - __appname__+' = libprs500.gui2.main:main', - 'lrfviewer = libprs500.gui2.lrf_renderer.main:main', + __appname__+' = calibre.gui2.main:main', + 'lrfviewer = calibre.gui2.lrf_renderer.main:main', ], } @@ -148,20 +149,23 @@ def setup_completion(fatal_errors): try: print 'Setting up bash completion...', sys.stdout.flush() - from libprs500.ebooks.lrf.html.convert_from import option_parser as htmlop - from libprs500.ebooks.lrf.txt.convert_from import option_parser as txtop - from libprs500.ebooks.lrf.meta import option_parser as metaop - from libprs500.ebooks.lrf.parser import option_parser as lrf2lrsop - from libprs500.gui2.lrf_renderer.main import option_parser as lrfviewerop - from libprs500.ebooks.lrf.pdf.reflow import option_parser as pdfhtmlop - from libprs500.ebooks.mobi.reader import option_parser as mobioeb - from libprs500.web.feeds.main import option_parser as feeds2disk - from libprs500.web.feeds.recipes import titles as feed_titles - from libprs500.ebooks.lrf.feeds.convert_from import option_parser as feeds2lrf + from calibre.ebooks.lrf.html.convert_from import option_parser as htmlop + from calibre.ebooks.lrf.txt.convert_from import option_parser as txtop + from calibre.ebooks.lrf.meta import option_parser as metaop + from calibre.ebooks.lrf.parser import option_parser as lrf2lrsop + from calibre.gui2.lrf_renderer.main import option_parser as lrfviewerop + from calibre.ebooks.lrf.pdf.reflow import option_parser as pdfhtmlop + from calibre.ebooks.mobi.reader import option_parser as mobioeb + from calibre.web.feeds.main import option_parser as feeds2disk + from calibre.web.feeds.recipes import titles as feed_titles + from calibre.ebooks.lrf.feeds.convert_from import option_parser as feeds2lrf f = open_file('/etc/bash_completion.d/libprs500') + f.close() + os.remove(f.name) + f = open_file('/etc/bash_completion.d/calibre') - f.write('# libprs500 Bash Shell Completion\n') + f.write('# calibre Bash Shell Completion\n') f.write(opts_and_exts('html2lrf', htmlop, ['htm', 'html', 'xhtml', 'xhtm', 'rar', 'zip', 'php'])) f.write(opts_and_exts('txt2lrf', txtop, ['txt'])) @@ -169,11 +173,13 @@ def setup_completion(fatal_errors): f.write(opts_and_exts('epub2lrf', htmlop, ['epub'])) f.write(opts_and_exts('rtf2lrf', htmlop, ['rtf'])) f.write(opts_and_exts('mobi2lrf', htmlop, ['mobi', 'prc'])) + f.write(opts_and_exts('fb22lrf', htmlop, ['fb2'])) f.write(opts_and_exts('pdf2lrf', htmlop, ['pdf'])) f.write(opts_and_exts('any2lrf', htmlop, - ['epub', 'htm', 'html', 'xhtml', 'xhtm', 'rar', 'zip', 'txt', 'lit', 'rtf', 'pdf', 'prc', 'mobi'])) + ['epub', 'htm', 'html', 'xhtml', 'xhtm', 'rar', 'zip', + 'txt', 'lit', 'rtf', 'pdf', 'prc', 'mobi', 'fb2'])) f.write(opts_and_exts('lrf2lrs', lrf2lrsop, ['lrf'])) - f.write(opts_and_exts('lrf-meta', metaop, ['lrf'])) + f.write(opts_and_exts('lrf-meta', metaop, ['lrf'])) f.write(opts_and_exts('rtf-meta', metaop, ['rtf'])) f.write(opts_and_exts('pdf-meta', metaop, ['pdf'])) f.write(opts_and_exts('lit-meta', metaop, ['lit'])) @@ -271,12 +277,12 @@ def setup_udev_rules(group_file, reload, fatal_errors): sys.stdout.flush() groups = open(group_file, 'rb').read() group = 'plugdev' if 'plugdev' in groups else 'usb' - udev = open_file('/etc/udev/rules.d/95-libprs500.rules') + udev = open_file('/etc/udev/rules.d/95-calibre.rules') udev.write('''# Sony Reader PRS-500\n''' '''BUS=="usb", SYSFS{idProduct}=="029b", SYSFS{idVendor}=="054c", MODE="660", GROUP="%s"\n'''%(group,) ) udev.close() - fdi = open_file('/usr/share/hal/fdi/policy/20thirdparty/10-libprs500.fdi') + fdi = open_file('/usr/share/hal/fdi/policy/20thirdparty/10-calibre.fdi') fdi.write('\n\n\n') for cls in DEVICES: fdi.write(\ @@ -284,7 +290,7 @@ def setup_udev_rules(group_file, reload, fatal_errors): - %(cls)s + %(cls)s @@ -341,7 +347,7 @@ def install_man_pages(fatal_errors): for src in entry_points['console_scripts']: prog = src[:src.index('=')].strip() if prog in ('prs500', 'pdf-meta', 'epub-meta', 'lit-meta', - 'markdown-libprs500', 'libprs500-debug'): + 'markdown-calibre', 'calibre-debug'): continue help2man = ('help2man', prog, '--name', 'part of %s'%__appname__, '--section', '1', '--no-info', '--include', @@ -390,7 +396,7 @@ Name=LRF Viewer Comment=Viewer for LRF files (SONY ebook format files) TryExec=lrfviewer Exec=lrfviewer %%F -Icon=libprs500-viewer +Icon=calibre-viewer MimeType=application/x-sony-bbeb; Categories=Graphics;Viewer; '''%(__version__,) @@ -399,11 +405,11 @@ GUI = '''\ [Desktop Entry] Version=%s Type=Application -Name=Libprs500 - Ebook library management +Name=calibre - Ebook library management Comment=E-book library management -TryExec=libprs500 -Exec=libprs500 -Icon=libprs500-gui +TryExec=calibre +Exec=calibre +Icon=calibre-gui Categories=Office; '''%(__version__,) @@ -424,7 +430,7 @@ MIME = '''\ def setup_desktop_integration(fatal_errors): try: from PyQt4.QtCore import QFile - from libprs500.gui2 import images_rc # Load images + from calibre.gui2 import images_rc # Load images from tempfile import mkdtemp print 'Setting up desktop integration...' @@ -435,33 +441,33 @@ def setup_desktop_integration(fatal_errors): cwd = os.getcwdu() try: os.chdir(tdir) - if QFile(':/images/mimetypes/lrf.svg').copy(os.path.join(tdir, 'libprs500-lrf.svg')): - check_call(rsvg + 'libprs500-lrf.svg libprs500-lrf.png', shell=True) - check_call('xdg-icon-resource install --context mimetypes --size 128 libprs500-lrf.png application-lrf', shell=True) - check_call('xdg-icon-resource install --context mimetypes --size 128 libprs500-lrf.png text-lrs', shell=True) + if QFile(':/images/mimetypes/lrf.svg').copy(os.path.join(tdir, 'calibre-lrf.svg')): + check_call(rsvg + 'calibre-lrf.svg calibre-lrf.png', shell=True) + check_call('xdg-icon-resource install --context mimetypes --size 128 calibre-lrf.png application-lrf', shell=True) + check_call('xdg-icon-resource install --context mimetypes --size 128 calibre-lrf.png text-lrs', shell=True) else: raise Exception('Could not create LRF mimetype icon') - if QFile(':library').copy(os.path.join(tdir, 'libprs500-gui.png')): - check_call('xdg-icon-resource install --size 128 libprs500-gui.png libprs500-gui', shell=True) + if QFile(':library').copy(os.path.join(tdir, 'calibre-gui.png')): + check_call('xdg-icon-resource install --size 128 calibre-gui.png calibre-gui', shell=True) else: raise Exception('Could not creaet GUI icon') - if QFile(':/images/viewer.svg').copy(os.path.join(tdir, 'libprs500-viewer.svg')): - check_call(rsvg + 'libprs500-viewer.svg libprs500-viewer.png', shell=True) - check_call('xdg-icon-resource install --size 128 libprs500-viewer.png libprs500-viewer', shell=True) + if QFile(':/images/viewer.svg').copy(os.path.join(tdir, 'calibre-viewer.svg')): + check_call(rsvg + 'calibre-viewer.svg calibre-viewer.png', shell=True) + check_call('xdg-icon-resource install --size 128 calibre-viewer.png calibre-viewer', shell=True) else: raise Exception('Could not creaet viewer icon') - f = open('libprs500-lrfviewer.desktop', 'wb') + f = open('calibre-lrfviewer.desktop', 'wb') f.write(VIEWER) f.close() - f = open('libprs500-gui.desktop', 'wb') + f = open('calibre-gui.desktop', 'wb') f.write(GUI) f.close() - check_call('xdg-desktop-menu install ./libprs500-gui.desktop ./libprs500-lrfviewer.desktop', shell=True) - f = open('libprs500-mimetypes', 'wb') + check_call('xdg-desktop-menu install ./calibre-gui.desktop ./calibre-lrfviewer.desktop', shell=True) + f = open('calibre-mimetypes', 'wb') f.write(MIME) f.close() - check_call('xdg-mime install libprs500-mimetypes', shell=True) + check_call('xdg-mime install calibre-mimetypes', shell=True) finally: os.chdir(cwd) shutil.rmtree(tdir) @@ -473,7 +479,7 @@ def setup_desktop_integration(fatal_errors): if __name__ == '__main__': - post_install() + post_install() diff --git a/src/libprs500/manual/Makefile b/src/calibre/manual/Makefile similarity index 100% rename from src/libprs500/manual/Makefile rename to src/calibre/manual/Makefile diff --git a/src/libprs500/manual/conf.py b/src/calibre/manual/conf.py similarity index 98% rename from src/libprs500/manual/conf.py rename to src/calibre/manual/conf.py index 7d98f25538..1cad3adb4e 100644 --- a/src/libprs500/manual/conf.py +++ b/src/calibre/manual/conf.py @@ -16,7 +16,7 @@ import sys, os # If your extensions are in another directory, add it here. sys.path.append(os.path.abspath('../../../')) sys.path.append(os.path.abspath('.')) -from libprs500 import __appname__, __version__ +from calibre import __appname__, __version__ import custom # General configuration diff --git a/src/libprs500/manual/conversion.rst b/src/calibre/manual/conversion.rst similarity index 100% rename from src/libprs500/manual/conversion.rst rename to src/calibre/manual/conversion.rst diff --git a/src/libprs500/manual/custom.py b/src/calibre/manual/custom.py similarity index 99% rename from src/libprs500/manual/custom.py rename to src/calibre/manual/custom.py index f832b6299b..c4d45ffce2 100644 --- a/src/libprs500/manual/custom.py +++ b/src/calibre/manual/custom.py @@ -12,7 +12,7 @@ from docutils import nodes from genshi.template import TextTemplate sys.path.append(os.path.abspath('../../../')) -from libprs500.linux import entry_points +from calibre.linux import entry_points class CustomBuilder(StandaloneHTMLBuilder): name = 'custom' diff --git a/src/libprs500/manual/faq.rst b/src/calibre/manual/faq.rst similarity index 86% rename from src/libprs500/manual/faq.rst rename to src/calibre/manual/faq.rst index 1be44c41d5..4b1e80979b 100644 --- a/src/libprs500/manual/faq.rst +++ b/src/calibre/manual/faq.rst @@ -17,7 +17,7 @@ E-book Format Conversion What formats does |app| support conversion to/from? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -|app| supports the conversion of the following formats to LRF: HTML, LIT, MOBI, PRC, EPUB, RTF, TXT, PDF and LRS. It also supports the conversion of LRF to LRS and HTML. Note that libprs500 does not support the conversion of DRMed ebooks. +|app| supports the conversion of the following formats to LRF: HTML, LIT, MOBI, PRC, EPUB, RTF, TXT, PDF and LRS. It also supports the conversion of LRF to LRS and HTML. Note that calibre does not support the conversion of DRMed ebooks. What are the best formats to convert to LRF? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -27,9 +27,9 @@ Why does the PDF conversion lose some images? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The PDF conversion tries to extract the text and images from the PDF file and convert them to and HTML based ebook. Some PDF files have images in a format that cannot be extracted (vector images). -There are no images in the LRF file after conversion from HTML? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If you use the GUI to convert an HTML file, you have to create a zip file with the HTML file and any images it references and then convert that ZIP file to LRF. +There are no images in the LRF file after conversion from HTML, or, why is only one HTML file being converted and not the others it links to? +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +If you use the GUI to convert an HTML file, you have to create a zip file with the HTML file and any images/extra files it references and then convert that ZIP file to LRF. How do I convert my file containing non-English characters? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -41,8 +41,8 @@ There are two aspects to this problem: How do I use some of the advanced features of the conversion tools? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ You can get help on any individual feature of the converters by mousing over it in the GUI or running ``html2lrf --help`` at a terminal. A good place to start is to look at the following demo files that demonstrate some of the advanced features: - * `html-demo.zip `_ - * `txt-demo.zip `_ + * `html-demo.zip `_ + * `txt-demo.zip `_ Device Integration @@ -98,7 +98,7 @@ I want |app| to download news from my favorite news website. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ If you are reasonably proficient with computers, you can teach |app| to download news from any website of your choosing. To learn how to do this see :ref:`news`. -Otherwise, you can register a request for a particular news site by adding a comment `here `_. +Otherwise, you can register a request for a particular news site by adding a comment `here `_. Can I use web2lrf to download an arbitrary website? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -117,10 +117,10 @@ Why does |app| show only some of my fonts on OS X? The graphical user interface of |app| is not starting on Windows? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If you've never used the graphical user interface before, try deleting the file library1.db (it will be somewhere under :file:`C:\\Documents and Settings` on Windows XP and :file:`C:\\Users` on Windows Vista. If that doesn't fix the problem, locate the file libprs500.log (in the same places as library1.db) and post its contents in a help message on the `Forums `_. +If you've never used the graphical user interface before, try deleting the file library1.db (it will be somewhere under :file:`C:\\Documents and Settings` on Windows XP and :file:`C:\\Users` on Windows Vista. If that doesn't fix the problem, locate the file calibre.log (in the same places as library1.db) and post its contents in a help message on the `Forums `_. I want some feature added to |app|. What can I do? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ You have two choices: - 1. Create a patch by hacking on |app| and send it to me for review and inclusion. See `Development `_. - 2. `Open a ticket `_ (you have to register and login first) and hopefully I will find the time to implement your feature. + 1. Create a patch by hacking on |app| and send it to me for review and inclusion. See `Development `_. + 2. `Open a ticket `_ (you have to register and login first) and hopefully I will find the time to implement your feature. diff --git a/src/calibre/manual/global.rst b/src/calibre/manual/global.rst new file mode 100644 index 0000000000..f42b2548c6 --- /dev/null +++ b/src/calibre/manual/global.rst @@ -0,0 +1 @@ +.. |app| replace:: calibre diff --git a/src/libprs500/manual/glossary.rst b/src/calibre/manual/glossary.rst similarity index 100% rename from src/libprs500/manual/glossary.rst rename to src/calibre/manual/glossary.rst diff --git a/src/libprs500/manual/gui.rst b/src/calibre/manual/gui.rst similarity index 100% rename from src/libprs500/manual/gui.rst rename to src/calibre/manual/gui.rst diff --git a/src/libprs500/manual/images/actions.png b/src/calibre/manual/images/actions.png similarity index 100% rename from src/libprs500/manual/images/actions.png rename to src/calibre/manual/images/actions.png diff --git a/src/libprs500/manual/images/add_books.png b/src/calibre/manual/images/add_books.png similarity index 100% rename from src/libprs500/manual/images/add_books.png rename to src/calibre/manual/images/add_books.png diff --git a/src/libprs500/manual/images/added_books.png b/src/calibre/manual/images/added_books.png similarity index 100% rename from src/libprs500/manual/images/added_books.png rename to src/calibre/manual/images/added_books.png diff --git a/src/libprs500/manual/images/bbc_advanced.png b/src/calibre/manual/images/bbc_advanced.png similarity index 100% rename from src/libprs500/manual/images/bbc_advanced.png rename to src/calibre/manual/images/bbc_advanced.png diff --git a/src/libprs500/manual/images/bbc_altered.png b/src/calibre/manual/images/bbc_altered.png similarity index 100% rename from src/libprs500/manual/images/bbc_altered.png rename to src/calibre/manual/images/bbc_altered.png diff --git a/src/libprs500/manual/images/bbc_altered1.png b/src/calibre/manual/images/bbc_altered1.png similarity index 100% rename from src/libprs500/manual/images/bbc_altered1.png rename to src/calibre/manual/images/bbc_altered1.png diff --git a/src/libprs500/manual/images/book_details.png b/src/calibre/manual/images/book_details.png similarity index 100% rename from src/libprs500/manual/images/book_details.png rename to src/calibre/manual/images/book_details.png diff --git a/src/libprs500/manual/images/catalogs.png b/src/calibre/manual/images/catalogs.png similarity index 100% rename from src/libprs500/manual/images/catalogs.png rename to src/calibre/manual/images/catalogs.png diff --git a/src/libprs500/manual/images/cli.png b/src/calibre/manual/images/cli.png similarity index 100% rename from src/libprs500/manual/images/cli.png rename to src/calibre/manual/images/cli.png diff --git a/src/libprs500/manual/images/configuration.png b/src/calibre/manual/images/configuration.png similarity index 100% rename from src/libprs500/manual/images/configuration.png rename to src/calibre/manual/images/configuration.png diff --git a/src/libprs500/manual/images/convert_ebooks.png b/src/calibre/manual/images/convert_ebooks.png similarity index 100% rename from src/libprs500/manual/images/convert_ebooks.png rename to src/calibre/manual/images/convert_ebooks.png diff --git a/src/libprs500/manual/images/custom_news.png b/src/calibre/manual/images/custom_news.png similarity index 100% rename from src/libprs500/manual/images/custom_news.png rename to src/calibre/manual/images/custom_news.png diff --git a/src/libprs500/manual/images/edit_meta_information.png b/src/calibre/manual/images/edit_meta_information.png similarity index 100% rename from src/libprs500/manual/images/edit_meta_information.png rename to src/calibre/manual/images/edit_meta_information.png diff --git a/src/libprs500/manual/images/fetch_news.png b/src/calibre/manual/images/fetch_news.png similarity index 100% rename from src/libprs500/manual/images/fetch_news.png rename to src/calibre/manual/images/fetch_news.png diff --git a/src/libprs500/manual/images/jobs.png b/src/calibre/manual/images/jobs.png similarity index 100% rename from src/libprs500/manual/images/jobs.png rename to src/calibre/manual/images/jobs.png diff --git a/src/libprs500/manual/images/news.png b/src/calibre/manual/images/news.png similarity index 100% rename from src/libprs500/manual/images/news.png rename to src/calibre/manual/images/news.png diff --git a/src/libprs500/manual/images/remove_books.png b/src/calibre/manual/images/remove_books.png similarity index 100% rename from src/libprs500/manual/images/remove_books.png rename to src/calibre/manual/images/remove_books.png diff --git a/src/libprs500/manual/images/save_to_disk.png b/src/calibre/manual/images/save_to_disk.png similarity index 100% rename from src/libprs500/manual/images/save_to_disk.png rename to src/calibre/manual/images/save_to_disk.png diff --git a/src/libprs500/manual/images/search.png b/src/calibre/manual/images/search.png similarity index 100% rename from src/libprs500/manual/images/search.png rename to src/calibre/manual/images/search.png diff --git a/src/libprs500/manual/images/search_button.png b/src/calibre/manual/images/search_button.png similarity index 100% rename from src/libprs500/manual/images/search_button.png rename to src/calibre/manual/images/search_button.png diff --git a/src/libprs500/manual/images/search_sort.png b/src/calibre/manual/images/search_sort.png similarity index 100% rename from src/libprs500/manual/images/search_sort.png rename to src/calibre/manual/images/search_sort.png diff --git a/src/libprs500/manual/images/send_to_device.png b/src/calibre/manual/images/send_to_device.png similarity index 100% rename from src/libprs500/manual/images/send_to_device.png rename to src/calibre/manual/images/send_to_device.png diff --git a/src/libprs500/manual/images/valid.png b/src/calibre/manual/images/valid.png similarity index 100% rename from src/libprs500/manual/images/valid.png rename to src/calibre/manual/images/valid.png diff --git a/src/libprs500/manual/images/view.png b/src/calibre/manual/images/view.png similarity index 100% rename from src/libprs500/manual/images/view.png rename to src/calibre/manual/images/view.png diff --git a/src/libprs500/manual/index.rst b/src/calibre/manual/index.rst similarity index 91% rename from src/libprs500/manual/index.rst rename to src/calibre/manual/index.rst index cec4638fd7..1a11820d9c 100644 --- a/src/libprs500/manual/index.rst +++ b/src/calibre/manual/index.rst @@ -11,7 +11,7 @@ So you've just started |app|. What do you do now? Well, before |app| can do anyt Once you've admired the list of books you just added to your heart's content, you'll probably want to actually read one. In order to do that you'll have to convert the book to a format your reader understands. For the SONY Reader that's the LRF format. Conversion is a breeze, just select the book you want to convert, and click the "Convert E-book" button. Ignore all the options for now and just click "OK". The little hourglass in the bottom right corner will start spinning. Once it's finished spinning, your converted book is ready. Click to "View" button to read the book. -Now if you want to read the book on your reader, just connect it to the computer, wait till libprs500 detects it (10-20secs) and then click the "Send to device" button. Once the hourglass stops spinning again, disconnect your reader and read away! +Now if you want to read the book on your reader, just connect it to the computer, wait till calibre detects it (10-20secs) and then click the "Send to device" button. Once the hourglass stops spinning again, disconnect your reader and read away! To get started with more advanced usage, you should read about the :ref:`Graphical User Interface `. For even more power and versatility, learn the :ref:`Command Line Interface `. diff --git a/src/libprs500/manual/metadata.rst b/src/calibre/manual/metadata.rst similarity index 100% rename from src/libprs500/manual/metadata.rst rename to src/calibre/manual/metadata.rst diff --git a/src/libprs500/manual/news.rst b/src/calibre/manual/news.rst similarity index 88% rename from src/libprs500/manual/news.rst rename to src/calibre/manual/news.rst index d8baf03268..74aae9c3f0 100644 --- a/src/libprs500/manual/news.rst +++ b/src/calibre/manual/news.rst @@ -150,7 +150,7 @@ We see several new features in this :term:`recipe`. First, we have:: timefmt = ' [%a, %d %b, %Y]' This sets the displayed time on the front page of the created e-book to be in the format, -``Day, Day_Number Month, Year``. See :attr:`timefmt `. +``Day, Day_Number Month, Year``. See :attr:`timefmt `. Then we see a group of directives to cleanup the downloaded :term:`HTML`:: @@ -158,7 +158,7 @@ Then we see a group of directives to cleanup the downloaded :term:`HTML`:: remove_tags_after = dict(id='footer') remove_tags = ... -These remove everything before the first ``

    `` tag and everything after the first tag whose id is ``footer``. See :attr:`remove_tags `, :attr:`remove_tags_before `, :attr:`remove_tags_after `. +These remove everything before the first ``

    `` tag and everything after the first tag whose id is ``footer``. See :attr:`remove_tags `, :attr:`remove_tags_before `, :attr:`remove_tags_after `. The next interesting feature is:: @@ -167,9 +167,9 @@ The next interesting feature is:: def get_growser(self): ... -``needs_subscription = True`` tells |app| that this recipe needs a username and password in order to access the content. This causes, |app| to ask for a username and password whenever you try to use this recipe. The code in :meth:`libprs500.web.feeds.news.BasicNewsRecipe.get_browser` actually does the login into the NYT website. Once logged in, |app| will use the same, logged in, browser instance to fetch all content. See `mechanize `_ to understand the code in ``get_browser``. +``needs_subscription = True`` tells |app| that this recipe needs a username and password in order to access the content. This causes, |app| to ask for a username and password whenever you try to use this recipe. The code in :meth:`calibre.web.feeds.news.BasicNewsRecipe.get_browser` actually does the login into the NYT website. Once logged in, |app| will use the same, logged in, browser instance to fetch all content. See `mechanize `_ to understand the code in ``get_browser``. -The last new feature is the :meth:`libprs500.web.feeds.news.BasicNewsRecipe.parse_index` method. Its job is to go to http://www.nytimes.com/pages/todayspaper/index.html and fetch the list of articles that appear in *todays* paper. While more complex than simply using :term:`RSS`, the recipe creates an e-book that corresponds very closely to the days paper. ``parse_index`` makes heavy use of `BeautifulSoup `_ to parse the daily paper webpage. +The last new feature is the :meth:`calibre.web.feeds.news.BasicNewsRecipe.parse_index` method. Its job is to go to http://www.nytimes.com/pages/todayspaper/index.html and fetch the list of articles that appear in *todays* paper. While more complex than simply using :term:`RSS`, the recipe creates an e-book that corresponds very closely to the days paper. ``parse_index`` makes heavy use of `BeautifulSoup `_ to parse the daily paper webpage. Tips for developing new recipes --------------------------------- @@ -188,7 +188,7 @@ If the generated :term:`LRF` looks good, you can finally, run:: 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 +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://calibre.kovidgoyal.net/ticket/405 If you just want to quickly test a couple of feeds, you can use the :option:`--feeds` option:: @@ -216,10 +216,10 @@ To learn more about writing advanced recipes using some of the facilities, avail :ref:`API Documentation ` Documentation of the ``BasicNewsRecipe`` class and all its important methods and fields. - `BasicNewsRecipe `_ + `BasicNewsRecipe `_ The source code of ``BasicNewsRecipe`` - `Built-in recipes `_ + `Built-in recipes `_ The source code for the built-in recipes that come with |app| Migrating old style profiles to recipes diff --git a/src/libprs500/manual/news_recipe.rst b/src/calibre/manual/news_recipe.rst similarity index 98% rename from src/libprs500/manual/news_recipe.rst rename to src/calibre/manual/news_recipe.rst index 3e5e3c25d2..f0955c0dad 100644 --- a/src/libprs500/manual/news_recipe.rst +++ b/src/calibre/manual/news_recipe.rst @@ -5,7 +5,7 @@ API Documentation for recipes =============================== -.. module:: libprs500.web.feeds.news +.. module:: calibre.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 diff --git a/src/libprs500/manual/resources/logo.png b/src/calibre/manual/resources/logo.png similarity index 100% rename from src/libprs500/manual/resources/logo.png rename to src/calibre/manual/resources/logo.png diff --git a/src/libprs500/manual/templates/layout.html b/src/calibre/manual/templates/layout.html similarity index 100% rename from src/libprs500/manual/templates/layout.html rename to src/calibre/manual/templates/layout.html diff --git a/src/libprs500/manual/templates/macros.html b/src/calibre/manual/templates/macros.html similarity index 100% rename from src/libprs500/manual/templates/macros.html rename to src/calibre/manual/templates/macros.html diff --git a/src/libprs500/parallel.py b/src/calibre/parallel.py similarity index 92% rename from src/libprs500/parallel.py rename to src/calibre/parallel.py index ffba7a6257..e02031ef22 100644 --- a/src/libprs500/parallel.py +++ b/src/calibre/parallel.py @@ -7,11 +7,11 @@ import re, sys, tempfile, os, cPickle, traceback, atexit, binascii, time, subpro from functools import partial -from libprs500.ebooks.lrf.any.convert_from import main as any2lrf -from libprs500.ebooks.lrf.web.convert_from import main as web2lrf -from libprs500.ebooks.lrf.feeds.convert_from import main as feeds2lrf -from libprs500.gui2.lrf_renderer.main import main as lrfviewer -from libprs500 import iswindows, __appname__ +from calibre.ebooks.lrf.any.convert_from import main as any2lrf +from calibre.ebooks.lrf.web.convert_from import main as web2lrf +from calibre.ebooks.lrf.feeds.convert_from import main as feeds2lrf +from calibre.gui2.lrf_renderer.main import main as lrfviewer +from calibre import iswindows, __appname__ PARALLEL_FUNCS = { 'any2lrf' : partial(any2lrf, gui_mode=True), @@ -97,7 +97,7 @@ class Server(object): prefix = 'import sys; sys.frameworks_dir = "%s"; sys.frozen = "macosx_app"; '%fd if fd not in os.environ['PATH']: os.environ['PATH'] += ':'+fd - cmd = prefix + 'from libprs500.parallel import run_job; run_job(\'%s\')'%binascii.hexlify(job_data) + cmd = prefix + 'from calibre.parallel import run_job; run_job(\'%s\')'%binascii.hexlify(job_data) if not monitor: popen([python, '-c', cmd], stdout=subprocess.PIPE, stdin=subprocess.PIPE, diff --git a/src/libprs500/path.py b/src/calibre/path.py similarity index 100% rename from src/libprs500/path.py rename to src/calibre/path.py diff --git a/src/libprs500/ptempfile.py b/src/calibre/ptempfile.py similarity index 97% rename from src/libprs500/ptempfile.py rename to src/calibre/ptempfile.py index 5724b0c165..74831f95aa 100644 --- a/src/libprs500/ptempfile.py +++ b/src/calibre/ptempfile.py @@ -6,7 +6,7 @@ being closed. """ import tempfile, os, atexit, shutil -from libprs500 import __version__, __appname__ +from calibre import __version__, __appname__ class _TemporaryFileWrapper(object): """ diff --git a/src/libprs500/terminfo.py b/src/calibre/terminfo.py similarity index 100% rename from src/libprs500/terminfo.py rename to src/calibre/terminfo.py diff --git a/src/libprs500/threadpool.py b/src/calibre/threadpool.py similarity index 100% rename from src/libprs500/threadpool.py rename to src/calibre/threadpool.py diff --git a/src/calibre/trac/__init__.py b/src/calibre/trac/__init__.py new file mode 100644 index 0000000000..72bc974a67 --- /dev/null +++ b/src/calibre/trac/__init__.py @@ -0,0 +1,6 @@ +__license__ = 'GPL v3' +__copyright__ = '2008, Kovid Goyal ' +''' +To test +sudo tracd --port 8000 --auth calibre,/var/www/localhost/htdocs/calibre/passwd,calibre /var/www/localhost/htdocs/calibre +''' diff --git a/src/libprs500/trac/plugins/Changelog.py b/src/calibre/trac/plugins/Changelog.py similarity index 100% rename from src/libprs500/trac/plugins/Changelog.py rename to src/calibre/trac/plugins/Changelog.py diff --git a/src/libprs500/trac/plugins/__init__.py b/src/calibre/trac/plugins/__init__.py similarity index 100% rename from src/libprs500/trac/plugins/__init__.py rename to src/calibre/trac/plugins/__init__.py diff --git a/src/libprs500/trac/plugins/download.py b/src/calibre/trac/plugins/download.py similarity index 98% rename from src/libprs500/trac/plugins/download.py rename to src/calibre/trac/plugins/download.py index ea30e14000..e2fa73c238 100644 --- a/src/libprs500/trac/plugins/download.py +++ b/src/calibre/trac/plugins/download.py @@ -218,7 +218,7 @@ You can uninstall a driver by right clicking on it and selecting uninstall. The example above is for the German language. Substitute the language code you need. After creating the file you need to log out and log in again for the changes to become active. Of course, this will only work if libprs500 has been translated for your language. -If not, head over to Translations to see how you can translate it. +If not, head over to Translations to see how you can translate it. ''')) diff --git a/src/libprs500/trac/plugins/htdocs/images/debian_logo.png b/src/calibre/trac/plugins/htdocs/images/debian_logo.png similarity index 100% rename from src/libprs500/trac/plugins/htdocs/images/debian_logo.png rename to src/calibre/trac/plugins/htdocs/images/debian_logo.png diff --git a/src/libprs500/trac/plugins/htdocs/images/fedora_logo.png b/src/calibre/trac/plugins/htdocs/images/fedora_logo.png similarity index 100% rename from src/libprs500/trac/plugins/htdocs/images/fedora_logo.png rename to src/calibre/trac/plugins/htdocs/images/fedora_logo.png diff --git a/src/libprs500/trac/plugins/htdocs/images/gentoo_logo.png b/src/calibre/trac/plugins/htdocs/images/gentoo_logo.png similarity index 100% rename from src/libprs500/trac/plugins/htdocs/images/gentoo_logo.png rename to src/calibre/trac/plugins/htdocs/images/gentoo_logo.png diff --git a/src/libprs500/trac/plugins/htdocs/images/linux_logo.png b/src/calibre/trac/plugins/htdocs/images/linux_logo.png similarity index 100% rename from src/libprs500/trac/plugins/htdocs/images/linux_logo.png rename to src/calibre/trac/plugins/htdocs/images/linux_logo.png diff --git a/src/libprs500/trac/plugins/htdocs/images/osx_logo.png b/src/calibre/trac/plugins/htdocs/images/osx_logo.png similarity index 100% rename from src/libprs500/trac/plugins/htdocs/images/osx_logo.png rename to src/calibre/trac/plugins/htdocs/images/osx_logo.png diff --git a/src/libprs500/trac/plugins/htdocs/images/ubuntu_logo.png b/src/calibre/trac/plugins/htdocs/images/ubuntu_logo.png similarity index 100% rename from src/libprs500/trac/plugins/htdocs/images/ubuntu_logo.png rename to src/calibre/trac/plugins/htdocs/images/ubuntu_logo.png diff --git a/src/libprs500/trac/plugins/htdocs/images/windows_logo.png b/src/calibre/trac/plugins/htdocs/images/windows_logo.png similarity index 100% rename from src/libprs500/trac/plugins/htdocs/images/windows_logo.png rename to src/calibre/trac/plugins/htdocs/images/windows_logo.png diff --git a/src/calibre/trac/plugins/htdocs/stylesheet/download.css b/src/calibre/trac/plugins/htdocs/stylesheet/download.css new file mode 100644 index 0000000000..e69de29bb2 diff --git a/src/libprs500/trac/plugins/templates/binary.html b/src/calibre/trac/plugins/templates/binary.html similarity index 100% rename from src/libprs500/trac/plugins/templates/binary.html rename to src/calibre/trac/plugins/templates/binary.html diff --git a/src/libprs500/trac/plugins/templates/distro.html b/src/calibre/trac/plugins/templates/distro.html similarity index 97% rename from src/libprs500/trac/plugins/templates/distro.html rename to src/calibre/trac/plugins/templates/distro.html index 1eabd60303..f3ea7ef263 100644 --- a/src/libprs500/trac/plugins/templates/distro.html +++ b/src/calibre/trac/plugins/templates/distro.html @@ -33,9 +33,9 @@
      -
    1. Make sure that your system has python >= 2.5
    2. +
    3. Make sure that your system has python >= 2.5
    4. Install the various dependencies listed below: Make sure that any python packages are installed into python2.5 (e.g. setuptools, python-imaging, PyQt4, fonttools, etc)
    5. -
    6. As root run the command
      easy_install-2.5 -U TTFQuery libprs500 && libprs500_postinstall
    7. +
    8. As root run the command
      easy_install-2.5 -U TTFQuery calibre && calibre_postinstall

    Dependencies

    diff --git a/src/libprs500/trac/plugins/templates/download.html b/src/calibre/trac/plugins/templates/download.html similarity index 100% rename from src/libprs500/trac/plugins/templates/download.html rename to src/calibre/trac/plugins/templates/download.html diff --git a/src/libprs500/trac/setup.py b/src/calibre/trac/setup.py similarity index 100% rename from src/libprs500/trac/setup.py rename to src/calibre/trac/setup.py diff --git a/src/libprs500/translations/__init__.py b/src/calibre/translations/__init__.py similarity index 93% rename from src/libprs500/translations/__init__.py rename to src/calibre/translations/__init__.py index 04b0c83ddc..005e7b5f13 100644 --- a/src/libprs500/translations/__init__.py +++ b/src/calibre/translations/__init__.py @@ -7,8 +7,8 @@ Manage translation of user visible strings. import sys, os, cStringIO, tempfile, subprocess, functools check_call = functools.partial(subprocess.check_call, shell=True) -from libprs500.translations.pygettext import main as pygettext -from libprs500.translations.msgfmt import main as msgfmt +from calibre.translations.pygettext import main as pygettext +from calibre.translations.msgfmt import main as msgfmt TRANSLATIONS = [ 'sl', diff --git a/src/libprs500/translations/automatic.py b/src/calibre/translations/automatic.py similarity index 100% rename from src/libprs500/translations/automatic.py rename to src/calibre/translations/automatic.py diff --git a/src/calibre/translations/ca.po b/src/calibre/translations/ca.po new file mode 100644 index 0000000000..8c6881863a --- /dev/null +++ b/src/calibre/translations/ca.po @@ -0,0 +1,2580 @@ +# translation of ca.po to Catalan +# Translation template file.. +# Copyright (C) 2007 Kovid Goyal +# Kovid Goyal , 2007. +# S. Dorscht , 2007. +# Raül Utrera <>, 2007. +# +# +msgid "" +msgstr "" +"Project-Id-Version: ca\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2008-04-07 16:11+IST\n" +"PO-Revision-Date: 2007-11-16 09:07+0100\n" +"Last-Translator: calibre\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#: /home/kovid/work/calibre/src/calibre/__init__.py:85 +msgid "%sUsage%s: %s\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/__init__.py:122 +msgid "Created by " +msgstr "Creat per " + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:88 +msgid "Set the title. Default: filename." +msgstr "Indique el títol. Per defecte: nom_del_fitxer." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:90 +msgid "" +"Set the author(s). Multiple authors should be set as a comma separated list. " +"Default: %default" +msgstr "" +"Indiqueu l'autor(s). Si indique més d'un autor, separeu el llistat amb " +"comes. Per defecte: %default" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:91 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:630 +msgid "Unknown" +msgstr "Desconegut" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:93 +msgid "Set the comment." +msgstr "Indiqueu els comentaris." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:95 +msgid "Set the category" +msgstr "Indiqueu la categoria." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:97 +msgid "Sort key for the title" +msgstr "Clau d'ordre per al tí­tol." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:99 +msgid "Sort key for the author" +msgstr "Clau d'ordre per a l'autor" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:16 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:341 +msgid "Publisher" +msgstr "Editorial" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:103 +msgid "Path to file containing image to be used as cover" +msgstr "Camí­ al fitxer d'imatge per a utilitzar com a coberta" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:105 +msgid "" +"If there is a cover graphic detected in the source file, use that instead of " +"the specified cover." +msgstr "" +"Si es detecta un gràfic per a la coberta al fitxer d'entrada, utilitzar-la " +"en lloc de la coberta especificada." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:108 +msgid "Output file name. Default is derived from input filename" +msgstr "Nom del fitxer de destí­. Per defecte, deriva del fitxer d'entrada" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:110 +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 "" +"Renderitza les taules HTML com a blocs de text en lloc de les taules " +"actuals. És necessari si el fitxer HTML conté taules massa grans o complexes." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:113 +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 "" +"Especifiqueu la grandària de lletra base en punts. Totes les lletres seran " +"escalades segons aquest valor. L'opció --font-delta resta obsoleta. Per a " +"utilitzar --font-delta, fixe aquest valor a 0." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:115 +msgid "Enable autorotation of images that are wider than the screen width." +msgstr "" +"Activa la rotació automàtica de les imatges més grans que l'amplada de la " +"pantalla." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:118 +msgid "Set the space between words in pts. Default is %default" +msgstr "Fixa l'espai entre paraules en punts. Per defecte: %default" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:120 +msgid "Separate paragraphs by blank lines." +msgstr "Separa els paràgrafs amb lí­nies buides." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:122 +msgid "Add a header to all the pages with title and author." +msgstr "Afegeix la capçalera a totes les pàgines, ficant el tí­tol i l'autor." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:124 +msgid "" +"Set the format of the header. %a is replaced by the author and %t by the " +"title. Default is %default" +msgstr "" +"Estableix el format de la capçalera: %a es reemplaça per l'autor i %t pel tí­" +"tol. Per defecte: %default" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:126 +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 "" +"Substitueix la CSS. Pot indicar-se tant un camí­ a la fulla CSS alternativa, " +"com una cadena. En aquest últim cas, la cadena s'interpreta com a CSS." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:128 +msgid "" +"Use the element from the OPF file to determine the order in which " +"the HTML files are appended to the LRF. The .opf file must be in the same " +"directory as the base HTML file." +msgstr "" +"Utilitza l'element 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." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:130 +msgid "" +"Minimum paragraph indent (the indent of the first line of a paragraph) in " +"pts. Default: %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:132 +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 "" +"Augmenta la grandària de la lletra en 2 * FONT_DELTA punts i l'espai de lí­" +"nia en FONT_DELTA punts. FONT_DELTA pot ser una fracció. Si és un valor " +"negatiu, la grandària de la lletra disminueix." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:137 +msgid "" +"Render all content as black on white instead of the colors specified by the " +"HTML or CSS." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:144 +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 "" +"Perfil del dispositiu per al que es genera el fitxer LRF. Aquest perfil " +"determina la resolució i la grandària de la pantalla del dispositiu, entre " +"d'altres. Per defecte:%s Perfils suportats:" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:150 +msgid "Left margin of page. Default is %default px." +msgstr "Marge esquerre de la pàgina. Per defecte: %default px." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:152 +msgid "Right margin of page. Default is %default px." +msgstr "Marge dret de la pàgina. Per defecte: %default px." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:154 +msgid "Top margin of page. Default is %default px." +msgstr "Marge superior de la pàgina. Per defecte: %default px." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:156 +msgid "Bottom margin of page. Default is %default px." +msgstr "Marge inferior de la pàgina. Per defecte: %default px." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:160 +msgid "" +"The maximum number of levels to recursively process links. A value of 0 " +"means thats links are not followed. A negative value means that tags are " +"ignored." +msgstr "" +"Nombre màxim de nivells per a processar enllaços recursivament. El valor 0 " +"(cero) vol dir que no són seguits. Amb un valor negatiu, ignora les marques " +"." + +# ??? +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:164 +msgid "" +"A regular expression. tags whoose href matches will be ignored. Defaults " +"to %default" +msgstr "" +"Expressió regular. Les marques amb href coincidents, són ignorades. Per " +"defecte: %default" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:169 +msgid "" +"Prevent the automatic insertion of page breaks before detected chapters." +msgstr "" +"Evita la inserció automàtica de salts de pàgina abans dels capí­tols " +"detectats." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:173 +msgid "" +"The regular expression used to detect chapter titles. It is searched for in " +"heading tags (h1-h6). Defaults to %default" +msgstr "" +"Expressió regular utilitzada per a detectar els tí­tols dels capí­tols. " +"Cerca a les marques de encapçalament (h1-h6). Per defecte: %default" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:176 +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 "" +"Si l'html2lrf no troba cap salt de pàgina en el fitxer html i no pot " +"detectar els encapçalaments dels capí­tols, insereix automàticament un salt " +"de pàgina abans de les marques que tinguen un nom coincident amb l'expressió " +"regular. Per defecte: %default. Aquesta opció s'inhabilita establint la " +"regexp com a \"$\".El propòsit de tot plegat és evitar pàgines massa " +"llargues, que alentirien al canvi de fulla del fitxer LRF. Aquesta opció " +"s'ignora si la pàgina actual en té pocs elements." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:186 +msgid "" +"Force a page break before tags whoose names match this regular expression." +msgstr "" +"Força un salt de pàgina abans de les marques amb noms coincidents amb " +"l'expressió regular." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:188 +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 "" +"Força un salt de pàgina davant d'un element amb un atribut concret. El " +"format d'aquesta opció és regexp_marca,nom_atribut,tegexp_valor_atribut. Per " +"exemple, amb \"h\\d,class,chapter\", serien coincidents totes les marques de " +"encapçalament amb l'atribut class=\"chapter\". Per defecte: %default" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:191 +msgid "Preprocess Baen HTML files to improve generated LRF." +msgstr "" +"Pre-processa els fitxers Baen HTML per a millorar el fitxer LRF generat." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:193 +msgid "" +"You must add this option if processing files generated by pdftohtml, " +"otherwise conversion will fail." +msgstr "" +"Cal que afegiu aquesta opció per a fitxers generats amb pdftohtml, si no " +"voleu que la conversió falli." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:195 +msgid "Use this option on html0 files from Book Designer." +msgstr "Utilitzeu aquesta opció per a fitxers html0 de Book Designer." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:198 +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" +" " +msgstr "" +"Especifiqueu lletres truetype per a les famí­lies serif, sans-serif i " +"monoespaiades. Aquestes lletres són inserides al fitxer LRF. Tingueu en " +"compte que afegir lletres personalitzades alenteix el canvi de pàgina. Per " +"especificar cadascuna de les famí­lies s'empra: \"camí­ a la carpeta de " +"lletres, famí­lia\" ( --serif-family \"%s, Times New Roman\")\n" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:207 +msgid "The serif family of fonts to embed" +msgstr "Famí­lia de lletres serif per a incrustar." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:210 +msgid "The sans-serif family of fonts to embed" +msgstr "Famí­lia de lletres sans-serif per a incrustar." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:213 +msgid "The monospace family of fonts to embed" +msgstr "Famí­lia de lletres monoespaiades per a incrustar." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:217 +msgid "Be verbose while processing" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:219 +msgid "Convert to LRS" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:221 +msgid "" +"Minimize memory usage at the cost of longer processing times. Use this " +"option if you are on a memory constrained machine." +msgstr "" +"Minimitza l'ús de memòria, utilitzant més temps de processador. Empreu " +"aquesta opció si el vostre equip no disposa de molta RAM." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:223 +msgid "" +"Specify the character encoding of the source file. If the output LRF file " +"contains strange characters, try changing this option. A common encoding for " +"files from windows computers is cp-1252. Another common choice is utf-8. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:143 +msgid "" +"any2lrf [options] myfile\n" +"\n" +"Convert any ebook format into LRF. Supported formats are:\n" +"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " +"RAR or\n" +"ZIP archive, looking for an ebook inside the archive.\n" +" " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:158 +msgid "No file to convert specified." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/epub/convert_from.py:17 +msgid "" +"Usage: %prog [options] mybook.epub\n" +" \n" +" \n" +"%prog converts mybook.epub to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:18 +msgid "" +"%prog [options] mybook.fb2\n" +"\n" +"\n" +"%prog converts mybook.fb2 to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:23 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:20 +msgid "Options to control the behavior of feeds2disk" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:22 +msgid "Options to control the behavior of html2lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:44 +msgid "Fetching of recipe failed: " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:302 +msgid "\tBook Designer file detected." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:304 +msgid "\tParsing HTML..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:326 +msgid "\tBaen file detected. Re-parsing..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:341 +msgid "Written preprocessed HTML to " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:352 +msgid "Processing %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:366 +msgid "\tConverting to BBeB..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:504 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:511 +msgid "Could not parse file: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:523 +msgid "Failed to parse link %s %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:566 +msgid "Cannot add link %s to TOC" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:908 +msgid "Unable to process image %s. Error: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:946 +msgid "Unable to process interlaced PNG %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:961 +msgid "" +"Could not process image: %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1651 +msgid "An error occurred while processing a table: %s. Ignoring table markup." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1653 +msgid "" +"Bad table:\n" +"%s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1675 +msgid "Table has cell that is too large" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1703 +msgid "" +"You have to save the website %s as an html file first and then run html2lrf " +"on it." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1743 +msgid "Could not read cover image: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1746 +msgid "Cannot read from: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1875 +msgid "Failed to process opf file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1881 +msgid "" +"Usage: %prog [options] mybook.html\n" +"\n" +"\n" +"%prog converts mybook.html to mybook.lrf. \n" +"%prog follows all links in mybook.html that point \n" +"to local files recursively. Thus, you can use it to \n" +"convert a whole tree of HTML files." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lit/convert_from.py:19 +msgid "" +"Usage: %prog [options] mybook.lit\n" +"\n" +"\n" +"%prog converts mybook.lit to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:254 +msgid "" +"%prog [options] file.lrs\n" +"Compile an LRS file into an LRF file." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:255 +msgid "Path to output file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:113 +msgid "Verbose processing" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:259 +msgid "Convert LRS to LRS, useful for debugging." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:541 +msgid "" +"%prog [options] mybook.lrf\n" +"\n" +"\n" +"Show/edit the metadata in an LRF file.\n" +"\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:548 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:18 +msgid "Set the book title" +msgstr "Indiqueu el nom del llibre" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:550 +msgid "Set sort key for the title" +msgstr "Indiqueu la clau d'ordenació per tí­tol" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:552 +msgid "Set the author" +msgstr "Indiqueu l'autor" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:554 +msgid "Set sort key for the author" +msgstr "Indiqueu la clau d'ordenació per autor" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:556 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:22 +msgid "The category this book belongs to. E.g.: History" +msgstr "Categoria a la que pertany el llibre. Per exemple, Història" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:559 +msgid "Path to a graphic that will be set as this files' thumbnail" +msgstr "Camí­ al fitxer d'imatge que s'utilitzarà com a miniatura" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:562 +msgid "Path to a txt file containing the comment to be stored in the lrf file." +msgstr "Camí­ al fitxer txt que conté el comentari a desar en el fitxer LRF" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:566 +msgid "Extract thumbnail from LRF file" +msgstr "Extrau la miniatura del fitxer LRF" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:568 +msgid "Set book ID" +msgstr "Indiqueu l'ID (identificador) del llibre" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:570 +msgid "Don't know what this is for" +msgstr "No sé per a qué és aixó" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/mobi/convert_from.py:43 +msgid "" +"Usage: %prog [options] mybook.mobi|prc\n" +"\n" +"\n" +"%prog converts mybook.mobi to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:132 +msgid "" +"%prog book.lrf\n" +"Convert an LRF file into an LRS (XML UTF-8 encoded) file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:133 +msgid "Output LRS file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:151 +msgid "Parsing LRF..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:154 +msgid "Creating XML..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:156 +msgid "LRS written to " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/convert_from.py:47 +msgid "" +"%prog [options] mybook.pdf\n" +"\n" +"\n" +"%prog converts mybook.pdf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:402 +msgid "" +"Path to output directory in which to create the HTML file. Defaults to " +"current directory." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:404 +msgid "Be more verbose." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:416 +msgid "You must specify a single PDF file." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/rtf/convert_from.py:20 +msgid "" +"%prog [options] mybook.rtf\n" +"\n" +"\n" +"%prog converts mybook.rtf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:17 +msgid "" +"%prog [options] mybook.txt\n" +"\n" +"\n" +"%prog converts mybook.txt to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:20 +msgid "Set the authors" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:24 +msgid "Set the comment" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 +msgid "Usage:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 +msgid "mybook.epub" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:95 +msgid "" +"\n" +"%prog [options] key\n" +"\n" +"Fetch metadata for books from isndb.com. You can specify either the \n" +"books ISBN ID or its title and author. If you specify the title and author,\n" +"then more than one book may be returned.\n" +"\n" +"key is the account key you generate after signing up for a free account from " +"isbndb.com.\n" +"\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:106 +msgid "The ISBN ID of the book you want metadata for." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:108 +msgid "The author whoose book to search for." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:110 +msgid "The title of the book to search for." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:112 +msgid "The publisher of the book to search for." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:46 +msgid "" +"Could not fetch cover as server is experiencing high load. Please try again " +"later." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:47 +msgid " not found." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:50 +msgid "Server error. Try again later." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:59 +msgid "" +"\n" +"%prog [options] ISBN\n" +"\n" +"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:746 +msgid "Usage: %s file.lit" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:753 +msgid "Cover saved to" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:39 +msgid "Usage: pdf-meta file.pdf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:40 +msgid "No filename specified." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:297 +msgid "%prog [options] myebook.mobi" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:299 +msgid "Output directory. Defaults to current directory." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:318 +msgid "Raw MOBI HTML saved in" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:320 +msgid "OEB ebook created in" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:42 +msgid "Choose Format" +msgstr "Trieu format" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:62 +msgid "TextLabel" +msgstr "TextLabel" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +msgid "
    Must be a directory." +msgstr "
    Cal que siga un directori." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +msgid "Invalid database location " +msgstr "Ubicació de la base de dades no vàlida " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 +msgid "Invalid database location" +msgstr "Ubicació de la base de dades no vàlida " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 +msgid "Invalid database location.
    Cannot write to " +msgstr "Ubicació de la base de dades no vàlida.
    No es pot escriure " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 +msgid "Compacting database. This may take a while." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 +msgid "Compacting..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:216 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:279 +msgid "Configuration" +msgstr "Configuració" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:220 +msgid "Basic" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:224 +msgid "Advanced" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:226 +msgid "&Location of books database (library1.db)" +msgstr "&Ubicació de la base de dades (library1.db)" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:227 +msgid "Browse for the new database location" +msgstr "Cerca la nova ubicació de la base de dades" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:610 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:320 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:329 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:331 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:335 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:153 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:185 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:186 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:187 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:188 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:189 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:190 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:272 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:278 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:280 +msgid "..." +msgstr "..." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:229 +msgid "Use &Roman numerals for series number" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:230 +msgid "Default network &timeout:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:231 +msgid "" +"Set the default timeout for network fetches (i.e. anytime we go out to the " +"internet to get information)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:232 +msgid " seconds" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:233 +msgid "&Priority for conversion jobs:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:234 +msgid "Frequently used directories" +msgstr "Directoris emprats amb freqüència" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:235 +msgid "Add a directory to the frequently used directories list" +msgstr "Afegir el directori al llistat de directoris freqüents" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:237 +msgid "Remove a directory from the frequently used directories list" +msgstr "Elimiar el directori al llistat de directoris freqüents" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:239 +msgid "Select visible &columns in library view" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:240 +msgid "Free unused diskspace from the database" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:241 +msgid "&Compact database" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:242 +msgid "&Metadata from file name" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/conversion_error_ui.py:37 +msgid "ERROR" +msgstr "ERROR" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:101 +msgid "Cannot connect" +msgstr "No puc connectar" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:102 +msgid "You must specify a valid access key for isbndb.com" +msgstr "Cal especificar una clau d'accès vàlida per a isbndb.com" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:89 +msgid "Fetch metadata" +msgstr "Recull metadades" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:90 +msgid "Fetching metadata for %1" +msgstr "Recollint metadades per a %1" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:91 +msgid "" +"Sign up for a free account from
    ISBNdb." +"com to get an access key." +msgstr "" +"Registreu-vos gratuïtament a ISBNdb.com per a obtenir una clau d'accés." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:92 +msgid "&Access Key;" +msgstr "Clau d'&accés;" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:93 +msgid "Fetch" +msgstr "Recull" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:94 +msgid "Matches" +msgstr "Coincidències" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:95 +msgid "Select the book that most closely matches your copy from the list below" +msgstr "Seleccioneu el llibre que més s'acoste del llistat que hi ha a sota" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/job_view_ui.py:30 +msgid "Details of job" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:39 +msgid "Active Jobs" +msgstr "Treballs actius" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:40 +msgid "&Stop selected job" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:81 +msgid "No available formats" +msgstr "Formats no disponibles" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:82 +msgid "Cannot convert %s as this book has no supported formats" +msgstr "No puc convetir \"%s\" perquè el format no hi és suportat" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:86 +msgid "Choose the format to convert into LRF" +msgstr "Trieu el format per convertir a LRF" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:94 +msgid "Convert %s to LRF" +msgstr "Converteix %s a LRF" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:97 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:149 +msgid "Set conversion defaults" +msgstr "Fixa els valors de conversió er defecte" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:163 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:43 +msgid "Cannot read" +msgstr "No pot llegir-se" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:164 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:44 +msgid "You do not have permission to read the file: " +msgstr "No tens permissos per a llegir l'arxiu: " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:172 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:52 +msgid "Error reading file" +msgstr "Error llegint l'arxiu" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:173 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:53 +msgid "

    There was an error reading from file:
    " +msgstr "

    Error llegint de l'arxiu:
    " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:179 +msgid " is not a valid picture" +msgstr " no és una imatge vàlida" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:245 +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 "" +"Preprocessa l'arxiu abans de convertir a LRF. Aixó ès útil si coneixes " +"l'origen de l'arxiu. Fonts conegudes:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:246 +msgid "

    1. baen - Books from BAEN Publishers
    2. " +msgstr "
      1. baen - Llibre de BAEN Publishers
      2. " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:247 +msgid "" +"
      3. pdftohtml - HTML files that are the output of the program " +"pdftohtml
      4. " +msgstr "" +"
      5. pdftohtml - Arxius HTML obtinguts amb l'aplicació pdftohtml
      6. " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:248 +msgid "
      7. book-designer - HTML0 files from Book Designer
      8. " +msgstr "
      9. book-designer - Arxius HTML0 del Book Designer
      10. " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 +msgid "" +"Specify metadata such as title and author for the book.

        Metadata will be " +"updated in the database as well as the generated LRF file." +msgstr "" +"Especifiqueu informació com ara tí­tol i autor per al llibre.

        Aquesta " +"informació s'actualitza tant a la base de dades com al fitxer LRF." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:592 +msgid "Metadata" +msgstr "Metadades" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 +msgid "" +"Adjust the look of the generated LRF file by specifying things like font " +"sizes and the spacing between words." +msgstr "" +"Milloreu l'aparença del fitxer LRF generat, especificant la grandària de " +"lletra i l'espaiat entre paraules." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:596 +msgid "Look & Feel" +msgstr "Aparença" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 +msgid "" +"Specify the page settings like margins and the screen size of the target " +"device." +msgstr "" +"Configuració de la pàgina del dispositiu, especificant ,marges i grandària " +"de la pantalla, entre d'altres." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:600 +msgid "Page Setup" +msgstr "Configuració de la pàgina" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 +msgid "Fine tune the detection of chapter and section headings." +msgstr "Milloreu la detecció de capí­tols i seccions." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:604 +msgid "Chapter Detection" +msgstr "Detecció de capí­tols" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:292 +msgid "No help available" +msgstr "Ajuda no disponible" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:396 +msgid "Bulk convert ebooks to LRF" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:587 +msgid "Convert to LRF" +msgstr "Convertir a LRF" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:588 +msgid "Category" +msgstr "Categoria" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:606 +msgid "Options" +msgstr "Opcions" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:607 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:332 +msgid "Book Cover" +msgstr "Coberta" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:608 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:333 +msgid "Change &cover image:" +msgstr "Canvia la imatge de la &coberta:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:609 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:334 +msgid "Browse for an image to use as the cover of this book." +msgstr "Cerca una imatge per a utilitzar com a coberta d'aquest llibre." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:611 +msgid "Use cover from &source file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:612 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:300 +msgid "&Title: " +msgstr "&Tí­tol:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:613 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:301 +msgid "Change the title of this book" +msgstr "Canvia el tí­tol del llibre" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:614 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:129 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:302 +msgid "&Author(s): " +msgstr "&Autor(s):" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:615 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:617 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:303 +msgid "" +"Change the author(s) of this book. Multiple authors should be separated by a " +"comma" +msgstr "Canvia l'autor(s). Per a especificar més d'un, separeu-los amb comes." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:616 +msgid "Author So&rt:" +msgstr "Ord&re per autor:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:618 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:137 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:310 +msgid "&Publisher: " +msgstr "&Editorial:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:619 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:138 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:311 +msgid "Change the publisher of this book" +msgstr "Canvia l'editorial del llibre" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:620 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:312 +msgid "Ta&gs: " +msgstr "Etique&tes:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:621 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:140 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:313 +msgid "" +"Tags categorize the book. This is particularly useful while searching. " +"

        They can be any words or phrases, separated by commas." +msgstr "" +"Etiquetes per a categoritzar el llibre (especialment útil per a recerques). " +"

        Pot emprar-se qualsevol paraula o frase, separada per comes." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:622 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:316 +msgid "&Series:" +msgstr "&Sèries:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:623 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:624 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:317 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:318 +msgid "List of known series. You can add new series." +msgstr "Llistat de sèries conegudes. Podeu afegir-hi de noves." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:625 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:321 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:322 +msgid "Series index." +msgstr "Índex de sèrie." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:627 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:323 +msgid "Book " +msgstr "Llibre " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:325 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:223 +msgid "Comments" +msgstr "Comentaris" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:629 +msgid "Base &font size:" +msgstr "Grandària de lletra base:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:630 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:637 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:639 +msgid " pts" +msgstr " punts" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:631 +msgid "Embedded Fonts" +msgstr "Lletres inserides" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:632 +msgid "&Serif:" +msgstr "&Serif:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:633 +msgid "S&ans-serif:" +msgstr "S&ans-serif:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:634 +msgid "&Monospace:" +msgstr "&Monoespaiada:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:635 +msgid "Source en&coding:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:636 +msgid "Minimum &indent:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:638 +msgid "&Word spacing:" +msgstr "&Espaiat de les paraules:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:640 +msgid "Enable auto &rotation of images" +msgstr "Activa la &rotació automàtica d'imatges" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:641 +msgid "Insert &blank lines between paragraphs" +msgstr "Inserta lí­nies &buides entre paràgrafs" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:642 +msgid "Ignore &tables" +msgstr "Ignora les &taules" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:643 +msgid "Ignore &colors" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:644 +msgid "&Preprocess:" +msgstr "&Preprocessament:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:645 +msgid "Header" +msgstr "Capçalera" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:646 +msgid "&Show header" +msgstr "&Mostrar capçalera" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:647 +msgid "&Header format:" +msgstr "&Format de la capçalera:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:648 +msgid "Override
        CSS" +msgstr "Substitueix
        CSS" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:649 +msgid "&Profile:" +msgstr "&Perfil:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:650 +msgid "&Left Margin:" +msgstr "Marge &Esquerre:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:651 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:653 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:655 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:657 +msgid " px" +msgstr " Pí­xels" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:652 +msgid "&Right Margin:" +msgstr "Marge &Dret:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:654 +msgid "&Top Margin:" +msgstr "Marge &Superior:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:656 +msgid "&Bottom Margin:" +msgstr "Marge &Inferior:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:658 +msgid "Title based detection" +msgstr "Detecció basada en el tí­tol" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:659 +msgid "&Disable chapter detection" +msgstr "&Desactivar detecció de capí­tols" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:660 +msgid "&Regular expression:" +msgstr "Expressió &Regular:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:661 +msgid "Tag based detection" +msgstr "Detecció basada en marques" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:662 +msgid "&Page break before tag:" +msgstr "Inserta un salt de &pàgina abans de la marca:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:663 +msgid "&Force page break before tag:" +msgstr "&Força un salt de pàgina abans de la marca:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:664 +msgid "Force page break before &attribute:" +msgstr "Força un salt de pàgina abans de l'&atribut:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:665 +msgid "Help on item" +msgstr "Ajuda amb l'í­tem" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:666 +msgid "" +"\n" +"

        " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:127 +msgid "Edit Meta information" +msgstr "Editar Meta-informació" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:128 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:299 +msgid "Meta information" +msgstr "Meta-informació" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:304 +msgid "Author S&ort: " +msgstr "&Ordena autors:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:132 +#: /home/kovid/work/calibre/src/calibre/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." +msgstr "" +"Especifiqueu com s'ha d'ordenar l'autor(s) d'aquest llibre. Per exemple," +"ordena Vicent A. Estellés com a Estellés, Vicent A." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:306 +msgid "&Rating:" +msgstr "&Valoració:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:135 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:307 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:308 +msgid "Rating of this book. 0-5 stars" +msgstr "Valora aquest llibre: 0-5 estreles" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:136 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:309 +msgid " stars" +msgstr " estreles" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:139 +msgid "Add Ta&gs: " +msgstr "Afe&geix les etiquetes: " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:141 +msgid "&Remove tags:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:142 +msgid "Comma separated list of tags to remove from the books. " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:224 +msgid "" +"

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

        " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 +msgid "Could not fetch cover.
        " +msgstr "No puc aconseguir la coberta.
        " + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 +msgid "Could not fetch cover" +msgstr "No puc aconseguir la coberta" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 +msgid "Cannot fetch cover" +msgstr "No puc aconseguir la coberta" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 +msgid "You must specify the ISBN identifier for this book." +msgstr "Cal especificar un ISBN correcte per al llibre." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:298 +msgid "Edit Meta Information" +msgstr "Edita la meta-informació" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:314 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:315 +msgid "Open Tag Editor" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:319 +msgid "Remove unused series (Series that have no books)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:324 +msgid "IS&BN:" +msgstr "IS&BN:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:326 +msgid "Fetch metadata from server" +msgstr "Recull metadades des del servidor" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:327 +msgid "Available Formats" +msgstr "Formats disponibles" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:328 +msgid "Add a new format for this book to the database" +msgstr "Afegir un nou format per a aquest llibre a la base de dades" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:330 +msgid "Remove the selected formats for this book from the database." +msgstr "" +"Elimina els formats seleccionats per a aquest llibre de la base de dades." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:336 +msgid "Fetch cover image from server" +msgstr "Recolliu la coberta des del servidor" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:337 +msgid "" +"Change the username and/or password for your account at LibraryThing.com" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:338 +msgid "Change password" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:61 +msgid "Password needed" +msgstr "Es necessita una contrasenya." + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:63 +msgid "&Username:" +msgstr "Nom d'&usuari:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:64 +msgid "&Password:" +msgstr "&Contrasenya:" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:65 +msgid "&Show password" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:14 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:700 +msgid "Title" +msgstr "Tí­tol" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:15 +msgid "Author" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:17 +msgid "Tag" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:18 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:343 +msgid "Series" +msgstr "Sèries" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:19 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:634 +msgid "Format" +msgstr "Format" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:20 +msgid "Any" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:110 +msgid "Form" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:41 +msgid "contains" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:42 +msgid "The text to search for. It is interpreted as a regular expression." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:43 +msgid "" +"

        Negate this match. That is, only return results that do not match " +"this query." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:44 +msgid "Negate" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:80 +msgid "Advanced Search" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:81 +msgid "Match a&ll of the following criteria" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:82 +msgid "Match a&ny of the following criteria" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:83 +msgid "Search criteria" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:84 +msgid "More" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:85 +msgid "Fewer" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:141 +msgid "Tag Editor" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:142 +msgid "A&vailable tags" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/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." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:145 +msgid "Apply tag to current book" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:147 +msgid "A&pplied tags" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:148 +msgid "Unapply (remove) tag from current book" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:150 +msgid "&Add tag:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/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." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:152 +msgid "Add tag to available tags and apply it to current book" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:48 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:58 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:222 +msgid "Switch to Advanced mode" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:61 +msgid "Switch to Basic mode" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:71 +msgid "Feed must have a title" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:72 +msgid "The feed must have a title" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:76 +msgid "Feed must have a URL" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:77 +msgid "The feed %s must have a URL" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:82 +msgid "Already exists" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:83 +msgid "This feed has already been added to the recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:133 +msgid "Invalid input" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:134 +msgid "

        Could not create recipe. Error:
        %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:140 +msgid "Replace recipe?" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:141 +msgid "A custom recipe named %s already exists. Do you want to replace it?" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:218 +msgid "Add custom news source" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:219 +msgid "Available user recipes" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:220 +msgid "Add/Update &recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:221 +msgid "&Remove recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:223 +msgid "" +"\n" +"

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

        " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:227 +msgid "Recipe &title:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:228 +msgid "&Oldest article:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:229 +msgid "The oldest article to download" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:230 +msgid " days" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:231 +msgid "&Max. number of articles per feed:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:232 +msgid "Maximum number of articles to download per feed." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:233 +msgid "Feeds in recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:234 +msgid "Remove feed from recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:239 +msgid "Add feed to recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:237 +msgid "&Feed title:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:238 +msgid "Feed &URL:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:240 +msgid "&Add feed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:241 +msgid "" +"For help with writing advanced news recipes, please visit User Recipes" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:242 +msgid "Recipe source code (python)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:111 +msgid "" +"

        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." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:112 +msgid "Regular &expression" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:113 +msgid "&Test" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:114 +msgid "File &name:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:115 +msgid "Test" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:116 +msgid "Title:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:117 +msgid "Regular expression group name (?P)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:118 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:121 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:45 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:50 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:55 +msgid "No match" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:119 +msgid "Authors:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:120 +msgid "Regular expression group name (?P<authors>)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:122 +msgid "Series:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:123 +msgid "Regular expression group name (?P<series>)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:125 +msgid "Series index:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:126 +msgid "Regular expression group name (?P<series_index>)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:279 +msgid "Job" +msgstr "Treball" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:280 +msgid "Status" +msgstr "Estat" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:281 +msgid "Progress" +msgstr "Progressió" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:282 +msgid "Running time" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 +msgid "Error" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 +msgid "Finished" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 +msgid "Waiting" +msgstr "En espera..." + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 +msgid "Working" +msgstr "Està treballant..." + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:315 +msgid "Unavailable" +msgstr "No disponible" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:347 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:351 +msgid "Cannot kill job" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:344 +msgid "" +"Cannot kill jobs that are communicating with the device as this may cause " +"data corruption." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:348 +msgid "Cannot kill already completed jobs." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:352 +msgid "Cannot kill waiting jobs." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:212 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:218 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:222 +msgid "None" +msgstr "Cap" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:213 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:342 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:704 +msgid "Tags" +msgstr "Etiquetes" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:219 +msgid "Formats" +msgstr "Formats" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 +msgid "Book <font face=\"serif\">%s</font> of %s." +msgstr "Llibre <font face=\"serif\">%s</font> de %s." + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:328 +msgid "Double click to <b>edit</b> me<br><br>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:701 +msgid "Author(s)" +msgstr "Autor(s)" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:338 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:702 +msgid "Size (MB)" +msgstr "Grandària (MB)" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:339 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:703 +msgid "Date" +msgstr "Data" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:340 +msgid "Rating" +msgstr "Valoració" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:635 +msgid "Path" +msgstr "Camí" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:639 +msgid "Timestamp" +msgstr "Marca de temps" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:739 +msgid "Search (For Advanced Search click the button to the left)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:51 +msgid "Configure Viewer" +msgstr "Configura el visor" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:52 +msgid "Use white background" +msgstr "Utilitza fons blanc" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:53 +msgid "Hyphenate" +msgstr "Partició de mots" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:54 +msgid "<b>Changes will only take affect after a restart." +msgstr "<b>Els canvis s'ignoren fins que el re-inicieu." + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 +msgid "<b>No matches</b> for the search phrase <i>%s</i> were found." +msgstr "<b>No</b> s'han trobat coincidències per al text \"<i>%s</i>\"." + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 +msgid "No matches found" +msgstr "No s'han trobat coincidències" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:184 +msgid "LRF Viewer" +msgstr "Visor LRF" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:191 +msgid "Parsing LRF file" +msgstr "Estic analitzant el fitxer LRF" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:192 +msgid "Next Page" +msgstr "Pàgina següent" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:193 +msgid "Previous Page" +msgstr "Pàgina anterior" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:194 +msgid "Back" +msgstr "Precedent" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:195 +msgid "Forward" +msgstr "Següent" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:196 +msgid "Next match" +msgstr "Següent coincidència" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:197 +msgid "Open ebook" +msgstr "Obre l'eBook" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:198 +msgid "Configure" +msgstr "Configura" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:72 +msgid "Error communicating with device" +msgstr "Error en la comunicació amb el dispositiu" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:102 +msgid "Send to main memory" +msgstr "Envia a la memòria interna" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:103 +msgid "Send to storage card" +msgstr "Envia a la targeta de memòria" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106 +msgid "Edit metadata individually" +msgstr "Edita metadades individualment" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:107 +msgid "Edit metadata in bulk" +msgstr "Edita metadades en massa" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:110 +msgid "Add books from a single directory" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:111 +msgid "" +"Add books recursively (One book per directory, assumes every ebook file is " +"the same book in a different format)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:112 +msgid "" +"Add books recursively (Multiple books per directory, assumes every ebook " +"file is a different book)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:289 +msgid "Save to disk" +msgstr "Desa al disc" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:127 +msgid "Save to disk in a single directory" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:292 +msgid "View" +msgstr "Mostra" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:131 +msgid "View specific format" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:146 +msgid "Convert individually" +msgstr "Converteix individualment" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:147 +msgid "Bulk convert" +msgstr "Converteix tots" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:260 +msgid "Device database corrupted" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:261 +msgid "" +"\n" +" <p>The database of books on the reader is corrupted. Try the " +"following:\n" +" <ol>\n" +" <li>Unplug the reader. Wait for it to finish regenerating " +"the database (i.e. wait till it is ready to be used). Plug it back in. Now " +"it should work with %(app)s. If not try the next step.</li>\n" +" <li>Quit %(app)s. Find the file media.xml in the reader's " +"main memory. Delete it. Unplug the reader. Wait for it to regenerate the " +"file. Re-connect it and start %(app)s.</li>\n" +" </ol>\n" +" " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:313 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:379 +msgid "" +"<p>Books with the same title as the following already exist in the database. " +"Add them anyway?<ul>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:382 +msgid "Duplicates found!" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:412 +msgid "No space on device" +msgstr "Sense espai al dispositiu" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:413 +msgid "<p>Cannot upload books to device there is no more free space available " +msgstr "<p>No puc desar llibres al dispositiu perquè no hi ha espai restant" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 +msgid "Cannot edit metadata" +msgstr "No puc editar les meta-dades" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 +msgid "No books selected" +msgstr "Cap llibre seleccionat" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 +msgid "Cannot save to disk" +msgstr "No puc desar al disc" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:626 +msgid "Fetch news from " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:628 +msgid "Fetching news from " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:638 +msgid "News fetched. Uploading to device." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 +msgid "Cannot convert" +msgstr "No puc convertir-lo" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 +msgid "No book selected" +msgstr "Cap llibre seleccionat" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:798 +msgid "Cannot view" +msgstr "No puc mostrar-lo" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:773 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:803 +msgid "Choose the format to view" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:799 +msgid "%s has no available formats." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 +msgid "Cannot configure" +msgstr "No puc configurar-lo" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 +msgid "Cannot configure while there are running jobs." +msgstr "No puc configurar-lo amb treballs processant-se" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:863 +msgid "Invalid database" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:864 +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/calibre/src/calibre/gui2/main.py:872 +msgid "Could not move database" +msgstr "No puc moure la base de dades" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922 +msgid "Error talking to device" +msgstr "Error comunicant amb el dispositiu" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923 +msgid "" +"There was a temporary error talking to the device. Please unplug and " +"reconnect the device and or reboot." +msgstr "" +"Hi ha hagut un error de comunicació amb el dispositiu. Lleve, torne a " +"connectar el dispositiu i torne a iniciar el programa" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1003 +msgid "" +"<span style=\"color:red; font-weight:bold\">Latest version: <a href=\"%s\">%" +"s</a></span>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:266 +msgid "calibre" +msgstr "calibre" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:267 +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:'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://calibre.kovidgoyal.net/user_manual\"><span style=\" text-" +"decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</span></" +"a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 by <span " +"style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></body></html>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:271 +msgid "Advanced search" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:273 +msgid "Alt+S" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:274 +msgid "&Search:" +msgstr "Re&cerca:" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:275 +msgid "" +"Search the list of books by title or author<br><br>Words separated by spaces " +"are ANDed" +msgstr "" +"Recerca llibres pel tí­tol o l'autor. <br><br>Els espais entre paraules es " +"substitueixen per AND." + +#: /home/kovid/work/calibre/src/calibre/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" +msgstr "" +"Recerca llibres pel tí­tol, l'autor, l'editorial, les etiquetes i els " +"comentaris<br><br>Els espais entre paraules es substitueixen per AND." + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:277 +msgid "Reset Quick Search" +msgstr "Reinicialitza la recerca ràpida" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:281 +msgid "Add books" +msgstr "Afegeix llibres" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:282 +msgid "A" +msgstr "A" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:284 +msgid "Remove books" +msgstr "Suprimeix llibres" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:285 +msgid "Del" +msgstr "Esborra" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:286 +msgid "Edit meta information" +msgstr "Edita la meta-informació" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:287 +msgid "E" +msgstr "E" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:288 +msgid "Send to device" +msgstr "Envia al dispositiu" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:290 +msgid "Fetch news" +msgstr "Recull notí­cies (RSS)" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:291 +msgid "Convert E-books" +msgstr "Converteix Ebooks" + +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:32 +msgid "Add a custom news source" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:53 +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/calibre/src/calibre/gui2/news.py:79 +msgid "Custom news sources" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:87 +msgid "Jobs:" +msgstr "Treballs:" + +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:96 +msgid "Click to see list of active jobs." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:34 +msgid "Invalid regular expression" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:35 +msgid "Invalid regular expression: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:86 +msgid "Library" +msgstr "Biblioteca" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:87 +msgid "" +"Reader\n" +"%s available" +msgstr "" +"El Sony Reader\n" +"%s està disponible" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:88 +msgid "" +"Card\n" +"%s available" +msgstr "" +"La targeta\n" +"%s està disponible" + +#: /home/kovid/work/calibre/src/calibre/parallel.py:114 +msgid "Job killed by user" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:56 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:77 +msgid "Unknown feed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:115 +msgid "Untitled article" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:15 +msgid "" +"%%prog [options] ARG\n" +"\n" +"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" +"fetches the article contents organized in a nice hierarchy.\n" +"\n" +"ARG can be one of:\n" +"\n" +"file name - %%prog will try to load a recipe from the file\n" +"\n" +"builtin recipe title - %%prog will load the builtin recipe and use it to " +"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" +"\n" +"recipe as a string - %%prog will load the recipe directly from the string " +"arg.\n" +"\n" +"Available builtin recipes are:\n" +"%s\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:37 +msgid "Options to control web2disk (used to fetch websites linked from feeds)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:40 +msgid "" +"Specify a list of feeds to download. For example: \n" +"\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" +"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/calibre/src/calibre/web/feeds/main.py:44 +msgid "Be more verbose while processing." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:46 +msgid "" +"The title for this recipe. Used as the title for any ebooks created from the " +"downloaded feeds." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:47 +msgid "Username for sites that require a login to access content." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:48 +msgid "Password for sites that require a login to access content." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:51 +msgid "" +"Number of levels of links to follow on webpages that are linked to from " +"feeds. Defaul %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:53 +msgid "" +"The directory in which to store the downloaded feeds. Defaults to the " +"current directory." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:55 +msgid "Dont show the progress bar" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:57 +msgid "Very verbose output, useful for debugging." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:59 +msgid "" +"Useful for recipe development. Forces max_articles_per_feed to 2 and " +"downloads at most 2 feeds." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:84 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:88 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:567 +msgid "Fetching feeds..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:33 +msgid "Unknown News Source" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:468 +msgid "Download finished" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:470 +msgid "Failed to download the following articles:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:472 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:478 +msgid " from " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:476 +msgid "Failed to download parts of the following articles:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:480 +msgid "\tFailed links:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:549 +msgid "Could not fetch article. Run with --debug to see the reason" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:571 +msgid "Got feeds from index page" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:575 +msgid "Trying to download cover..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:625 +msgid "Starting download [%d thread(s)]..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:639 +msgid "Feeds downloaded to %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:648 +msgid "Could not download cover: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:653 +msgid "Downloading cover from %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:688 +msgid "Untitled Article" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:729 +msgid "" +"\n" +"Downloaded article %s from %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:735 +msgid "Article downloaded: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:741 +msgid "Failed to download article: %s from %s\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:746 +msgid "Article download failed: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:761 +msgid "Fetching feed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:373 +msgid "" +"%prog URL\n" +"\n" +"Where URL is for example http://google.com" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:376 +msgid "Base directory into which URL is saved. Default is %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:379 +msgid "" +"Timeout in seconds to wait for a response from the server. Default: %default " +"s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:382 +msgid "" +"Maximum number of levels to recurse i.e. depth of links to follow. Default %" +"default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:385 +msgid "" +"The maximum number of files to download. This only applies to files from <a " +"href> tags. Default is %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:387 +msgid "" +"Minimum interval in seconds between consecutive fetches. Default is %default " +"s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:389 +msgid "" +"The character encoding for the websites you are trying to download. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:391 +msgid "" +"Only links that match this regular expression will be followed. This option " +"can be specified multiple times, in which case as long as a link matches any " +"one regexp, it will be followed. By default all links are followed." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:393 +msgid "" +"Any link that matches this regular expression will be ignored. This option " +"can be specified multiple times, in which case as long as any regexp matches " +"a link, it will be ignored.By default, no links are ignored. If both --" +"filter-regexp and --match-regexp are specified, then --filter-regexp is " +"applied first." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:395 +msgid "Do not download CSS stylesheets." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:396 +msgid "Show detailed output information. Useful for debugging" +msgstr "" + +#~ msgid "%s is not available in LRF format. Please convert it first." +#~ msgstr "%s no està disponible en LRF. Ha de ser convertir primer." + +#~ 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:'Sans Serif'; font-size:9pt; " +#~ "font-weight:400; font-style:normal;\">\n" +#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-" +#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href=" +#~ "\"https://calibre.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " +#~ "text-decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</" +#~ "span></a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 " +#~ "by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</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:'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;\">Per a més ajuda, vegeu " +#~ "(en anglès) <a href=\"https://calibre.kovidgoyal.net/wiki/WikiStart#Usage" +#~ "\"><span style=\" text-decoration: underline; color:#0000ff;\">calibre." +#~ "kovidgoyal.net</span></a><br /><br /><span style=\" font-weight:600;" +#~ "\">calibre</span>: %1 de <span style=\" font-weight:600;\">Kovid Goyal</" +#~ "span> %2<br />%3</p></body></html>" + +#~ msgid "Not yet implemented." +#~ msgstr "Sense implementar." + +#~ msgid "RTF conversion not supported" +#~ msgstr "Conversió de RTF no disponible" + +#~ msgid "" +#~ "Conversion of RTF files is not supported on OS X Leopard and higher. This " +#~ "is because unrtf, the underlying program does not work. If you are " +#~ "willing to port unrtf to Leopard, contact me." +#~ msgstr "" +#~ "La conversió d'arxius RTF no està soportada a OS X Leopard i superiors, " +#~ "perquè unrtf no funciona. Si voleu col·laborar en el \"port\", fiqueu-vos " +#~ "en contacte amb Kovid." + +#~ msgid "Search by title, author, publisher, tags, series and comments" +#~ msgstr "Cerca per tí­tol, autor, editorial, etiquetes, series i comentaris" + +#~ msgid "Done" +#~ msgstr "Finalitzat" + +#~ msgid "Use &metadata cover" +#~ msgstr "Utilitza la coberta de les &metadades" + +#~ 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:'Sans Serif'; font-size:9pt; " +#~ "font-weight:400; font-style:normal;\">\n" +#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; " +#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" +#~ "\"></p></body></html>" +#~ msgstr "" +#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/" +#~ "css\">\n" +#~ "p, li { white-space: pre-wrap; }\n" +#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; " +#~ "font-weight:400; font-style:normal;\">\n" +#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; " +#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" +#~ "\"></p></body></html>" diff --git a/src/calibre/translations/data.py b/src/calibre/translations/data.py new file mode 100644 index 0000000000..afb27340bb --- /dev/null +++ b/src/calibre/translations/data.py @@ -0,0 +1 @@ +translations = {'fr': '\xde\x12\x04\x95\x00\x00\x00\x00\xee\x01\x00\x00\x1c\x00\x00\x00\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x1e\x00\x00"\x00\x00\x00\xfd\x1e\x00\x00\x1d\x00\x00\x00 \x1f\x00\x00\x16\x00\x00\x00>\x1f\x00\x00\x0e\x00\x00\x00U\x1f\x00\x00\x10\x00\x00\x00d\x1f\x00\x00a\x00\x00\x00u\x1f\x00\x00+\x01\x00\x00\xd7\x1f\x00\x00!\x00\x00\x00\x03!\x00\x00\x05\x00\x00\x00%!\x00\x00\x06\x00\x00\x00+!\x00\x00\x17\x00\x00\x002!\x00\x00\x0b\x00\x00\x00J!\x00\x00\x04\x00\x00\x00V!\x00\x00\x03\x00\x00\x00[!\x00\x00\x08\x00\x00\x00_!\x00\x00\x06\x00\x00\x00h!\x00\x00\xfd\x01\x00\x00o!\x00\x005\x00\x00\x00m#\x00\x00>\x00\x00\x00\xa3#\x00\x00E\x00\x00\x00\xe2#\x00\x00D\x00\x00\x00($\x00\x00D\x00\x00\x00m$\x00\x00D\x00\x00\x00\xb2$\x00\x00\x1c\x00\x00\x00\xf7$\x00\x00G\x00\x00\x00\x14%\x00\x00\x1c\x00\x00\x00\\%\x00\x00\x0e\x00\x00\x00y%\x00\x00\x0c\x00\x00\x00\x88%\x00\x00\t\x00\x00\x00\x95%\x00\x00\t\x00\x00\x00\x9f%\x00\x00\x0c\x00\x00\x00\xa9%\x00\x00\x0f\x00\x00\x00\xb6%\x00\x00\x11\x00\x00\x00\xc6%\x00\x00\x1a\x00\x00\x00\xd8%\x00\x00\x0c\x00\x00\x00\xf3%\x00\x00\x1d\x00\x00\x00\x00&\x00\x00\x0f\x00\x00\x00\x1e&\x00\x00\r\x00\x00\x00.&\x00\x00)\x00\x00\x00<&\x00\x00"\x00\x00\x00f&\x00\x00\x18\x00\x00\x00\x89&\x00\x00\x0b\x00\x00\x00\xa2&\x00\x00\x10\x00\x00\x00\xae&\x00\x00\x17\x00\x00\x00\xbf&\x00\x00\n\x00\x00\x00\xd7&\x00\x00\x0c\x00\x00\x00\xe2&\x00\x00\x1e\x00\x00\x00\xef&\x00\x00\t\x00\x00\x00\x0e\'\x00\x00\x0c\x00\x00\x00\x18\'\x00\x00\x08\x00\x00\x00%\'\x00\x00\x14\x00\x00\x00.\'\x00\x00\x0e\x00\x00\x00C\'\x00\x00\r\x00\x00\x00R\'\x00\x00\x0e\x00\x00\x00`\'\x00\x00\x08\x00\x00\x00o\'\x00\x00\x08\x00\x00\x00x\'\x00\x00\x07\x00\x00\x00\x81\'\x00\x00\x0c\x00\x00\x00\x89\'\x00\x00\x0e\x00\x00\x00\x96\'\x00\x00\x12\x00\x00\x00\xa5\'\x00\x00\x05\x00\x00\x00\xb8\'\x00\x00\x08\x00\x00\x00\xbe\'\x00\x00\x0c\x00\x00\x00\xc7\'\x00\x00\n\x00\x00\x00\xd4\'\x00\x00\x0e\x00\x00\x00\xdf\'\x00\x00\x03\x00\x00\x00\xee\'\x00\x001\x00\x00\x00\xf2\'\x00\x00"\x00\x00\x00$(\x00\x00=\x00\x00\x00G(\x00\x00\x18\x00\x00\x00\x85(\x00\x00+\x00\x00\x00\x9e(\x00\x00\x00\x02\x00\x00\xca(\x00\x00\xa3\x01\x00\x00\xcb*\x00\x00|\x02\x00\x00o,\x00\x00>\x00\x00\x00\xec.\x00\x00S\x00\x00\x00+/\x00\x005\x00\x00\x00\x7f/\x00\x00p\x00\x00\x00\xb5/\x00\x00a\x00\x00\x00&0\x00\x00G\x00\x00\x00\x880\x00\x00(\x00\x00\x00\xd00\x00\x00\xa7\x00\x00\x00\xf90\x00\x00W\x00\x00\x00\xa11\x00\x00\x96\x00\x00\x00\xf91\x00\x00=\x01\x00\x00\x902\x00\x002\x00\x00\x00\xce3\x00\x00T\x00\x00\x00\x014\x00\x00\x01\x00\x00\x00V4\x00\x00C\x00\x00\x00X4\x00\x00X\x00\x00\x00\x9c4\x00\x00\r\x00\x00\x00\xf54\x00\x00\x0f\x00\x00\x00\x035\x00\x00\x0b\x00\x00\x00\x135\x00\x00\x0b\x00\x00\x00\x1f5\x00\x00\x18\x00\x00\x00+5\x00\x007\x00\x00\x00D5\x00\x004\x00\x00\x00|5\x00\x00.\x00\x00\x00\xb15\x00\x00\t\x00\x00\x00\xe05\x00\x00!\x00\x00\x00\xea5\x00\x00b\x00\x00\x00\x0c6\x00\x00o\x00\x00\x00o6\x00\x00\x16\x00\x00\x00\xdf6\x00\x00\x12\x00\x00\x00\xf66\x00\x006\x00\x00\x00\t7\x00\x00\x12\x00\x00\x00@7\x00\x00m\x00\x00\x00S7\x00\x00\x08\x00\x00\x00\xc17\x00\x00\x0f\x00\x00\x00\xca7\x00\x00\x0f\x00\x00\x00\xda7\x00\x00\x0e\x00\x00\x00\xea7\x00\x00\x05\x00\x00\x00\xf97\x00\x00F\x00\x00\x00\xff7\x00\x00\x03\x00\x00\x00F8\x00\x005\x01\x00\x00J8\x00\x00\x19\x00\x00\x00\x809\x00\x00\x1b\x00\x00\x00\x9a9\x00\x00\x16\x00\x00\x00\xb69\x00\x00\x06\x00\x00\x00\xcd9\x00\x00\x0e\x00\x00\x00\xd49\x00\x00\r\x00\x00\x00\xe39\x00\x00\t\x00\x00\x00\xf19\x00\x00\x08\x00\x00\x00\xfb9\x00\x00\x11\x00\x00\x00\x04:\x00\x00\x16\x00\x00\x00\x16:\x00\x00\x04\x00\x00\x00-:\x00\x00\r\x00\x00\x002:\x00\x00\x10\x00\x00\x00@:\x00\x00;\x00\x00\x00Q:\x00\x00\x05\x00\x00\x00\x8d:\x00\x00!\x00\x00\x00\x93:\x00\x00\x10\x00\x00\x00\xb5:\x00\x00\x1b\x00\x00\x00\xc6:\x00\x00\x05\x00\x00\x00\xe2:\x00\x00(\x00\x00\x00\xe8:\x00\x00\n\x00\x00\x00\x11;\x00\x00.\x00\x00\x00\x1c;\x00\x005\x00\x00\x00K;\x00\x00$\x00\x00\x00\x81;\x00\x00\x0c\x00\x00\x00\xa6;\x00\x00\x1a\x00\x00\x00\xb3;\x00\x00\x19\x00\x00\x00\xce;\x00\x00\x10\x00\x00\x00\xe8;\x00\x00.\x00\x00\x00\xf9;\x00\x00\x0e\x00\x00\x00(<\x00\x00\x0e\x00\x00\x007<\x00\x007\x00\x00\x00F<\x00\x00\x14\x00\x00\x00~<\x00\x00\x12\x00\x00\x00\x93<\x00\x00#\x00\x00\x00\xa6<\x00\x00\x0f\x00\x00\x00\xca<\x00\x00Z\x00\x00\x00\xda<\x00\x00\x19\x00\x00\x005=\x00\x00\x0b\x00\x00\x00O=\x00\x00\x14\x00\x00\x00[=\x00\x00\x13\x00\x00\x00p=\x00\x00\x0b\x00\x00\x00\x84=\x00\x00\x11\x00\x00\x00\x90=\x00\x00\x08\x00\x00\x00\xa2=\x00\x00\x14\x00\x00\x00\xab=\x00\x00\x0f\x00\x00\x00\xc0=\x00\x00R\x00\x00\x00\xd0=\x00\x00!\x00\x00\x00#>\x00\x00\x1d\x00\x00\x00E>\x00\x00H\x00\x00\x00c>\x00\x00\x11\x00\x00\x00\xac>\x00\x00\r\x00\x00\x00\xbe>\x00\x00%\x00\x00\x00\xcc>\x00\x00\x19\x00\x00\x00\xf2>\x00\x00!\x00\x00\x00\x0c?\x00\x007\x00\x00\x00.?\x00\x00\x08\x00\x00\x00f?\x00\x00+\x00\x00\x00o?\x00\x00\r\x00\x00\x00\x9b?\x00\x00\r\x00\x00\x00\xa9?\x00\x00\t\x00\x00\x00\xb7?\x00\x00\x10\x00\x00\x00\xc1?\x00\x00\x11\x00\x00\x00\xd2?\x00\x00\x0f\x00\x00\x00\xe4?\x00\x00)\x00\x00\x00\xf4?\x00\x00\x14\x00\x00\x00\x1e@\x00\x00\x0e\x00\x00\x003@\x00\x00\x0e\x00\x00\x00B@\x00\x00\x1c\x00\x00\x00Q@\x00\x00;\x00\x00\x00n@\x00\x00\x15\x00\x00\x00\xaa@\x00\x00R\x00\x00\x00\xc0@\x00\x00\x17\x00\x00\x00\x13A\x00\x00\x18\x00\x00\x00+A\x00\x00\x1e\x00\x00\x00DA\x00\x00\x1e\x00\x00\x00cA\x00\x00\x0e\x00\x00\x00\x82A\x00\x00\x0b\x00\x00\x00\x91A\x00\x00\x0f\x00\x00\x00\x9dA\x00\x00\x13\x00\x00\x00\xadA\x00\x00\x04\x00\x00\x00\xc1A\x00\x00\x19\x00\x00\x00\xc6A\x00\x00\x03\x00\x00\x00\xe0A\x00\x00h\x00\x00\x00\xe4A\x00\x00\x0e\x00\x00\x00MB\x00\x00\x19\x00\x00\x00\\B\x00\x00 \x00\x00\x00vB\x00\x00\x1b\x00\x00\x00\x97B\x00\x00\x1a\x00\x00\x00\xb3B\x00\x00&\x00\x00\x00\xceB\x00\x00\x11\x00\x00\x00\xf5B\x00\x00\x19\x00\x00\x00\x07C\x00\x00\x11\x00\x00\x00!C\x00\x00\x01\x00\x00\x003C\x00\x00\x05\x00\x00\x005C\x00\x00\x15\x00\x00\x00;C\x00\x00\x15\x00\x00\x00QC\x00\x00\x15\x00\x00\x00gC\x00\x00\x15\x00\x00\x00}C\x00\x00\x1a\x00\x00\x00\x93C\x00\x00\x0e\x00\x00\x00\xaeC\x00\x00\x1f\x00\x00\x00\xbdC\x00\x00C\x00\x00\x00\xddC\x00\x00\x05\x00\x00\x00!D\x00\x00\x1f\x00\x00\x00\'D\x00\x00\x12\x00\x00\x00GD\x00\x00\x17\x00\x00\x00ZD\x00\x00\x1f\x00\x00\x00rD\x00\x00\'\x00\x00\x00\x92D\x00\x003\x00\x00\x00\xbaD\x00\x00*\x00\x00\x00\xeeD\x00\x00\x1a\x00\x00\x00\x19E\x00\x00\x1a\x00\x00\x004E\x00\x00\n\x00\x00\x00OE\x00\x00\x14\x00\x00\x00ZE\x00\x00\x16\x00\x00\x00oE\x00\x00\x16\x00\x00\x00\x86E\x00\x00\x0f\x00\x00\x00\x9dE\x00\x00\x05\x00\x00\x00\xadE\x00\x00\x1d\x00\x00\x00\xb3E\x00\x00\x0e\x00\x00\x00\xd1E\x00\x00\x1a\x00\x00\x00\xe0E\x00\x00\n\x00\x00\x00\xfbE\x00\x00\x10\x00\x00\x00\x06F\x00\x00\r\x00\x00\x00\x17F\x00\x00\x11\x00\x00\x00%F\x00\x00\x1f\x00\x00\x007F\x00\x00\x13\x00\x00\x00WF\x00\x00\x1b\x00\x00\x00kF\x00\x00\x05\x00\x00\x00\x87F\x00\x00\x0b\x00\x00\x00\x8dF\x00\x008\x00\x00\x00\x99F\x00\x00\x08\x00\x00\x00\xd2F\x00\x00\x88\x00\x00\x00\xdbF\x00\x00\x1d\x01\x00\x00dG\x00\x00J\x00\x00\x00\x82H\x00\x00#\x00\x00\x00\xcdH\x00\x00\x04\x00\x00\x00\xf1H\x00\x00\x06\x00\x00\x00\xf6H\x00\x00\x07\x00\x00\x00\xfdH\x00\x00\x07\x00\x00\x00\x05I\x00\x00\'\x00\x00\x00\rI\x00\x00\x1b\x00\x00\x005I\x00\x00\x19\x00\x00\x00QI\x00\x00\x06\x00\x00\x00kI\x00\x00\x0c\x00\x00\x00rI\x00\x00\t\x00\x00\x00\x7fI\x00\x00\x06\x00\x00\x00\x89I\x00\x00\xdc\x01\x00\x00\x90I\x00\x00n\x00\x00\x00mK\x00\x00a\x00\x00\x00\xdcK\x00\x00\x0e\x00\x00\x00>L\x00\x00\x0e\x00\x00\x00ML\x00\x00\xa8\x00\x00\x00\\L\x00\x00&\x00\x00\x00\x05M\x00\x00\x10\x00\x00\x00,M\x00\x00\x19\x00\x00\x00=M\x00\x00\x1a\x00\x00\x00WM\x00\x00.\x00\x00\x00rM\x00\x00\r\x00\x00\x00\xa1M\x00\x00\x1a\x00\x00\x00\xafM\x00\x00\x1e\x00\x00\x00\xcaM\x00\x00\x03\x00\x00\x00\xe9M\x00\x00\x12\x00\x00\x00\xedM\x00\x00\x05\x00\x00\x00\x00N\x00\x00\n\x00\x00\x00\x06N\x00\x00\x0f\x00\x00\x00\x11N\x00\x00,\x00\x00\x00!N\x00\x00\x07\x00\x00\x00NN\x00\x00-\x00\x00\x00VN\x00\x00\x0b\x00\x00\x00\x84N\x00\x00$\x00\x00\x00\x90N\x00\x00$\x00\x00\x00\xb5N\x00\x00\x07\x00\x00\x00\xdaN\x00\x000\x00\x00\x00\xe2N\x00\x00S\x00\x00\x00\x13O\x00\x00\x10\x00\x00\x00gO\x00\x00\x08\x00\x00\x00xO\x00\x00y\x00\x00\x00\x81O\x00\x00\x10\x00\x00\x00\xfbO\x00\x00N\x00\x00\x00\x0cP\x00\x00`\x00\x00\x00[P\x00\x00\x04\x00\x00\x00\xbcP\x00\x00\x06\x00\x00\x00\xc1P\x00\x00"\x00\x00\x00\xc8P\x00\x00\t\x00\x00\x00\xebP\x00\x00\n\x00\x00\x00\xf5P\x00\x00\x14\x00\x00\x00\x00Q\x00\x00\x10\x00\x00\x00\x15Q\x00\x00\x11\x00\x00\x00&Q\x00\x00\x1d\x00\x00\x008Q\x00\x00\x16\x00\x00\x00VQ\x00\x00\x08\x00\x00\x00mQ\x00\x00\x10\x00\x00\x00vQ\x00\x00\x12\x00\x00\x00\x87Q\x00\x00\x04\x00\x00\x00\x9aQ\x00\x00^\x00\x00\x00\x9fQ\x00\x00\x14\x00\x00\x00\xfeQ\x00\x00\xdc\x00\x00\x00\x13R\x00\x00\x0f\x00\x00\x00\xf0R\x00\x00\n\x00\x00\x00\x00S\x00\x00\x07\x00\x00\x00\x0bS\x00\x00-\x00\x00\x00\x13S\x00\x00+\x00\x00\x00AS\x00\x00F\x00\x00\x00mS\x00\x00\x0f\x00\x00\x00\xb4S\x00\x000\x00\x00\x00\xc4S\x00\x008\x00\x00\x00\xf5S\x00\x00s\x00\x00\x00.T\x00\x00\x0f\x00\x00\x00\xa2T\x00\x00\n\x00\x00\x00\xb2T\x00\x00\x10\x00\x00\x00\xbdT\x00\x00\x0e\x00\x00\x00\xceT\x00\x00:\x00\x00\x00\xddT\x00\x00\x0f\x00\x00\x00\x18U\x00\x00\x04\x00\x00\x00(U\x00\x00;\x00\x00\x00-U\x00\x00G\x00\x00\x00iU\x00\x001\x00\x00\x00\xb1U\x00\x00Y\x00\x00\x00\xe3U\x00\x00\x13\x00\x00\x00=V\x00\x004\x00\x00\x00QV\x00\x00\x80\x00\x00\x00\x86V\x00\x00H\x00\x00\x00\x07W\x00\x00\r\x00\x00\x00PW\x00\x00(\x00\x00\x00^W\x00\x00\r\x00\x00\x00\x87W\x00\x00\xbc\x00\x00\x00\x95W\x00\x00\x08\x00\x00\x00RX\x00\x00\t\x00\x00\x00[X\x00\x00\x06\x00\x00\x00eX\x00\x00\x1e\x00\x00\x00lX\x00\x00\x16\x00\x00\x00\x8bX\x00\x00\x13\x00\x00\x00\xa2X\x00\x00\x0e\x00\x00\x00\xb6X\x00\x00\x1b\x00\x00\x00\xc5X\x00\x00\x13\x00\x00\x00\xe1X\x00\x00+\x00\x00\x00\xf5X\x00\x00*\x00\x00\x00!Y\x00\x000\x00\x00\x00LY\x00\x00)\x00\x00\x00}Y\x00\x00<\x00\x00\x00\xa7Y\x00\x00\x0c\x00\x00\x00\xe4Y\x00\x00\x17\x00\x00\x00\xf1Y\x00\x00<\x00\x00\x00\tZ\x00\x000\x00\x00\x00FZ\x00\x00\x84\x00\x00\x00wZ\x00\x00X\x00\x00\x00\xfcZ\x00\x00\x0f\x00\x00\x00U[\x00\x00\x12\x00\x00\x00e[\x00\x00-\x00\x00\x00x[\x00\x00\x0c\x00\x00\x00\xa6[\x00\x00\x0c\x00\x00\x00\xb3[\x00\x00\x0c\x00\x00\x00\xc0[\x00\x00"\x00\x00\x00\xcd[\x00\x009\x00\x00\x00\xf0[\x00\x00\x0f\x00\x00\x00*\\\x00\x00V\x00\x00\x00:\\\x00\x00r\x00\x00\x00\x91\\\x00\x00G\x00\x00\x00\x04]\x00\x00\'\x00\x00\x00L]\x00\x00\x0e\x00\x00\x00t]\x00\x00\x13\x00\x00\x00\x83]\x00\x00\x14\x00\x00\x00\x97]\x00\x00#\x00\x00\x00\xac]\x00\x00\x06\x00\x00\x00\xd0]\x00\x00\r\x00\x00\x00\xd7]\x00\x00\r\x00\x00\x00\xe5]\x00\x00\x07\x00\x00\x00\xf3]\x00\x00\x1e\x00\x00\x00\xfb]\x00\x00\x0b\x00\x00\x00\x1a^\x00\x00\x17\x00\x00\x00&^\x00\x00\x1b\x00\x00\x00>^\x00\x00\x1a\x00\x00\x00Z^\x00\x00\x0e\x00\x00\x00u^\x00\x00^\x00\x00\x00\x84^\x00\x00\x0f\x00\x00\x00\xe3^\x00\x00\x12\x00\x00\x00\xf3^\x00\x00\x10\x00\x00\x00\x06_\x00\x00\x0f\x00\x00\x00\x17_\x00\x00\x10\x00\x00\x00\'_\x00\x00g\x00\x00\x008_\x00\x00c\x00\x00\x00\xa0_\x00\x007\x00\x00\x00\x04`\x00\x00!\x00\x00\x00<`\x00\x006\x00\x00\x00^`\x00\x00d\x00\x00\x00\x95`\x00\x00\t\x00\x00\x00\xfa`\x00\x00\x17\x00\x00\x00\x04a\x00\x00\x16\x00\x00\x00\x1ca\x00\x00\x11\x00\x00\x003a\x00\x00\x04\x01\x00\x00Ea\x00\x00z\x00\x00\x00Jb\x00\x00\x85\x00\x00\x00\xc5b\x00\x00\xb6\x00\x00\x00Kc\x00\x00\r\x01\x00\x00\x02d\x00\x00P\x00\x00\x00\x10e\x00\x00+\x01\x00\x00ae\x00\x00#\x00\x00\x00\x8df\x00\x00\x06\x00\x00\x00\xb1f\x00\x00\x17\x00\x00\x00\xb8f\x00\x00\x14\x00\x00\x00\xd0f\x00\x00\x07\x00\x00\x00\xe5f\x00\x00 \x00\x00\x00\xedf\x00\x00\x03\x00\x00\x00\x0eg\x00\x00\n\x00\x00\x00\x12g\x00\x00\x13\x00\x00\x00\x1dg\x00\x00\x04\x00\x00\x001g\x00\x00\x85\x00\x00\x006g\x00\x00\x04\x00\x00\x00\xbcg\x00\x00\t\x00\x00\x00\xc1g\x00\x00.\x00\x00\x00\xcbg\x00\x00%\x00\x00\x00\xfag\x00\x000\x00\x00\x00 h\x00\x00q\x00\x00\x00Qh\x00\x00X\x00\x00\x00\xc3h\x00\x00\x1b\x00\x00\x00\x1ci\x00\x00\x1a\x00\x00\x008i\x00\x00k\x00\x00\x00Si\x00\x00\x9d\x00\x00\x00\xbfi\x00\x00&\x00\x00\x00]j\x00\x00\x1e\x00\x00\x00\x84j\x00\x00(\x00\x00\x00\xa3j\x00\x00v\x00\x00\x00\xccj\x00\x00\'\x00\x00\x00Ck\x00\x00"\x00\x00\x00kk\x00\x00B\x00\x00\x00\x8ek\x00\x00^\x00\x00\x00\xd1k\x00\x00$\x00\x00\x000l\x00\x00h\x00\x00\x00Ul\x00\x00.\x00\x00\x00\xbel\x00\x00N\x00\x00\x00\xedl\x00\x00\t\x00\x00\x00<m\x00\x00\x05\x00\x00\x00Fm\x00\x00\x15\x00\x00\x00Lm\x00\x00\x06\x00\x00\x00bm\x00\x00+\x00\x00\x00im\x00\x00\x1b\x00\x00\x00\x95m\x00\x00%\x00\x00\x00\xb1m\x00\x00#\x00\x00\x00\xd7m\x00\x00&\x00\x00\x00\xfbm\x00\x00\x0b\x00\x00\x00"n\x00\x00\x07\x00\x00\x00.n\x00\x00\x13\x00\x00\x006n\x00\x00\x0c\x00\x00\x00Jn\x00\x00\x10\x00\x00\x00Wn\x00\x00\x10\x00\x00\x00hn\x00\x00\x06\x00\x00\x00yn\x00\x00]\x00\x00\x00\x80n\x00\x00\xdb\x00\x00\x00\xden\x00\x00K\x00\x00\x00\xbao\x00\x00Q\x00\x00\x00\x06p\x00\x00\x12\x00\x00\x00Xp\x00\x00\x18\x00\x00\x00kp\x00\x00%\x00\x00\x00\x84p\x00\x00\x1b\x00\x00\x00\xaap\x00\x00\xb4\x00\x00\x00\xc6p\x00\x002\x00\x00\x00{q\x00\x00\x14\x00\x00\x00\xaeq\x00\x00_\x00\x00\x00\xc3q\x00\x00:\x00\x00\x00#r\x00\x00\x12\x00\x00\x00^r\x00\x00*\x00\x00\x00qr\x00\x00\x04\x00\x00\x00\x9cr\x00\x00\x14\x00\x00\x00\xa1r\x00\x00\x07\x00\x00\x00\xb6r\x00\x00\x07\x00\x00\x00\xber\x00\x00\x1d\x00\x00\x00\xc6r\x00\x00-\x00\x00\x00\xe4r\x00\x00R\x00\x00\x00\x12s\x00\x00d\x00\x00\x00es\x00\x00#\x00\x00\x00\xcas\x00\x002\x00\x00\x00\xees\x00\x003\x00\x00\x00!t\x00\x00\xdf\x00\x00\x00Ut\x00\x00\x07\x00\x00\x005u\x00\x00\x08\x00\x00\x00=u\x00\x00\x0b\x00\x00\x00Fu\x00\x00)\x01\x00\x00Ru\x00\x00)\x00\x00\x00|v\x00\x00\x1d\x00\x00\x00\xa6v\x00\x00\x17\x00\x00\x00\xc4v\x00\x00 \x00\x00\x00\xdcv\x00\x00\x13\x00\x00\x00\xfdv\x00\x00e\x00\x00\x00\x11w\x00\x00\\\x01\x00\x00ww\x00\x00\x1d\x00\x00\x00\xd4x\x00\x00\x05\x00\x00\x00\xf2x\x00\x00\x04\x00\x00\x00\xf8x\x00\x00\x1b\x00\x00\x00\xfdx\x00\x00\r\x00\x00\x00\x19y\x00\x00\x04\x00\x00\x00\'y\x00\x00\x03\x00\x00\x00,y\x00\x00\t\x00\x00\x000y\x00\x00\t\x00\x00\x00:y\x00\x00+\x02\x00\x00Dy\x00\x00)\x00\x00\x00p{\x00\x00F\x00\x00\x00\x9a{\x00\x00T\x00\x00\x00\xe1{\x00\x00P\x00\x00\x006|\x00\x00P\x00\x00\x00\x87|\x00\x00P\x00\x00\x00\xd8|\x00\x00\x1e\x00\x00\x00)}\x00\x00U\x00\x00\x00H}\x00\x00"\x00\x00\x00\x9e}\x00\x00\x12\x00\x00\x00\xc1}\x00\x00\x0c\x00\x00\x00\xd4}\x00\x00\x0e\x00\x00\x00\xe1}\x00\x00\x0f\x00\x00\x00\xf0}\x00\x00\n\x00\x00\x00\x00~\x00\x00\x0e\x00\x00\x00\x0b~\x00\x00\x15\x00\x00\x00\x1a~\x00\x00&\x00\x00\x000~\x00\x00\x0c\x00\x00\x00W~\x00\x00$\x00\x00\x00d~\x00\x00\x15\x00\x00\x00\x89~\x00\x00\x0f\x00\x00\x00\x9f~\x00\x001\x00\x00\x00\xaf~\x00\x00&\x00\x00\x00\xe1~\x00\x00\x1e\x00\x00\x00\x08\x7f\x00\x00\x0c\x00\x00\x00\'\x7f\x00\x00\x13\x00\x00\x004\x7f\x00\x00\x1b\x00\x00\x00H\x7f\x00\x00\x0f\x00\x00\x00d\x7f\x00\x00\r\x00\x00\x00t\x7f\x00\x00+\x00\x00\x00\x82\x7f\x00\x00\t\x00\x00\x00\xae\x7f\x00\x00\n\x00\x00\x00\xb8\x7f\x00\x00\x07\x00\x00\x00\xc3\x7f\x00\x00\x19\x00\x00\x00\xcb\x7f\x00\x00\x11\x00\x00\x00\xe5\x7f\x00\x00\x1a\x00\x00\x00\xf7\x7f\x00\x00\x0f\x00\x00\x00\x12\x80\x00\x00\x0c\x00\x00\x00"\x80\x00\x00\n\x00\x00\x00/\x80\x00\x00\x08\x00\x00\x00:\x80\x00\x00\x13\x00\x00\x00C\x80\x00\x00\x18\x00\x00\x00W\x80\x00\x00\x1e\x00\x00\x00p\x80\x00\x00\x05\x00\x00\x00\x8f\x80\x00\x00\x08\x00\x00\x00\x95\x80\x00\x00\x0e\x00\x00\x00\x9e\x80\x00\x00\x17\x00\x00\x00\xad\x80\x00\x00\x18\x00\x00\x00\xc5\x80\x00\x00\x03\x00\x00\x00\xde\x80\x00\x00V\x00\x00\x00\xe2\x80\x00\x00A\x00\x00\x009\x81\x00\x003\x00\x00\x00{\x81\x00\x00\x1e\x00\x00\x00\xaf\x81\x00\x006\x00\x00\x00\xce\x81\x00\x00M\x02\x00\x00\x05\x82\x00\x00\xa3\x01\x00\x00S\x84\x00\x00\x86\x02\x00\x00\xf7\x85\x00\x00L\x00\x00\x00~\x88\x00\x00O\x00\x00\x00\xcb\x88\x00\x004\x00\x00\x00\x1b\x89\x00\x00\x8f\x00\x00\x00P\x89\x00\x00j\x00\x00\x00\xe0\x89\x00\x00d\x00\x00\x00K\x8a\x00\x00/\x00\x00\x00\xb0\x8a\x00\x00\xd5\x00\x00\x00\xe0\x8a\x00\x00\x7f\x00\x00\x00\xb6\x8b\x00\x00\xcd\x00\x00\x006\x8c\x00\x00\xa4\x01\x00\x00\x04\x8d\x00\x00<\x00\x00\x00\xa9\x8e\x00\x00T\x00\x00\x00\xe6\x8e\x00\x00\x01\x00\x00\x00;\x8f\x00\x00M\x00\x00\x00=\x8f\x00\x00p\x00\x00\x00\x8b\x8f\x00\x00\n\x00\x00\x00\xfc\x8f\x00\x00\x16\x00\x00\x00\x07\x90\x00\x00\x14\x00\x00\x00\x1e\x90\x00\x00\x10\x00\x00\x003\x90\x00\x00/\x00\x00\x00D\x90\x00\x00I\x00\x00\x00t\x90\x00\x00D\x00\x00\x00\xbe\x90\x00\x00@\x00\x00\x00\x03\x91\x00\x00\x10\x00\x00\x00D\x91\x00\x003\x00\x00\x00U\x91\x00\x00}\x00\x00\x00\x89\x91\x00\x00\x98\x00\x00\x00\x07\x92\x00\x00$\x00\x00\x00\xa0\x92\x00\x00\x1b\x00\x00\x00\xc5\x92\x00\x00M\x00\x00\x00\xe1\x92\x00\x00"\x00\x00\x00/\x93\x00\x00\x8f\x00\x00\x00R\x93\x00\x00\t\x00\x00\x00\xe2\x93\x00\x00\x10\x00\x00\x00\xec\x93\x00\x00\x10\x00\x00\x00\xfd\x93\x00\x00\x10\x00\x00\x00\x0e\x94\x00\x00\x05\x00\x00\x00\x1f\x94\x00\x00^\x00\x00\x00%\x94\x00\x00\t\x00\x00\x00\x84\x94\x00\x00_\x01\x00\x00\x8e\x94\x00\x00\'\x00\x00\x00\xee\x95\x00\x00!\x00\x00\x00\x16\x96\x00\x00\x13\x00\x00\x008\x96\x00\x00\x05\x00\x00\x00L\x96\x00\x00\x1a\x00\x00\x00R\x96\x00\x00\x12\x00\x00\x00m\x96\x00\x00\t\x00\x00\x00\x80\x96\x00\x00\x08\x00\x00\x00\x8a\x96\x00\x00\x13\x00\x00\x00\x93\x96\x00\x00\x1c\x00\x00\x00\xa7\x96\x00\x00\x06\x00\x00\x00\xc4\x96\x00\x00\x15\x00\x00\x00\xcb\x96\x00\x00\x1f\x00\x00\x00\xe1\x96\x00\x00O\x00\x00\x00\x01\x97\x00\x00\x07\x00\x00\x00Q\x97\x00\x003\x00\x00\x00Y\x97\x00\x00\x16\x00\x00\x00\x8d\x97\x00\x003\x00\x00\x00\xa4\x97\x00\x00\x05\x00\x00\x00\xd8\x97\x00\x00)\x00\x00\x00\xde\x97\x00\x00\x13\x00\x00\x00\x08\x98\x00\x007\x00\x00\x00\x1c\x98\x00\x00A\x00\x00\x00T\x98\x00\x006\x00\x00\x00\x96\x98\x00\x00\x12\x00\x00\x00\xcd\x98\x00\x00%\x00\x00\x00\xe0\x98\x00\x00\'\x00\x00\x00\x06\x99\x00\x00\x18\x00\x00\x00.\x99\x00\x00?\x00\x00\x00G\x99\x00\x00\x1a\x00\x00\x00\x87\x99\x00\x00\x15\x00\x00\x00\xa2\x99\x00\x00P\x00\x00\x00\xb8\x99\x00\x00 \x00\x00\x00\t\x9a\x00\x004\x00\x00\x00*\x9a\x00\x005\x00\x00\x00_\x9a\x00\x00\x1d\x00\x00\x00\x95\x9a\x00\x00g\x00\x00\x00\xb3\x9a\x00\x00-\x00\x00\x00\x1b\x9b\x00\x00\x12\x00\x00\x00I\x9b\x00\x00\x1c\x00\x00\x00\\\x9b\x00\x00%\x00\x00\x00y\x9b\x00\x00\x18\x00\x00\x00\x9f\x9b\x00\x00\x13\x00\x00\x00\xb8\x9b\x00\x00\n\x00\x00\x00\xcc\x9b\x00\x00\x18\x00\x00\x00\xd7\x9b\x00\x00\x17\x00\x00\x00\xf0\x9b\x00\x00T\x00\x00\x00\x08\x9c\x00\x00\x1b\x00\x00\x00]\x9c\x00\x00\x19\x00\x00\x00y\x9c\x00\x00V\x00\x00\x00\x93\x9c\x00\x00\x18\x00\x00\x00\xea\x9c\x00\x00\x11\x00\x00\x00\x03\x9d\x00\x00&\x00\x00\x00\x15\x9d\x00\x00\x1b\x00\x00\x00<\x9d\x00\x00&\x00\x00\x00X\x9d\x00\x00E\x00\x00\x00\x7f\x9d\x00\x00\x0c\x00\x00\x00\xc5\x9d\x00\x00\'\x00\x00\x00\xd2\x9d\x00\x00\x16\x00\x00\x00\xfa\x9d\x00\x00\r\x00\x00\x00\x11\x9e\x00\x00\r\x00\x00\x00\x1f\x9e\x00\x00\x1e\x00\x00\x00-\x9e\x00\x00\x17\x00\x00\x00L\x9e\x00\x00\x14\x00\x00\x00d\x9e\x00\x00<\x00\x00\x00y\x9e\x00\x00\x17\x00\x00\x00\xb6\x9e\x00\x00\x10\x00\x00\x00\xce\x9e\x00\x00\x13\x00\x00\x00\xdf\x9e\x00\x00#\x00\x00\x00\xf3\x9e\x00\x00W\x00\x00\x00\x17\x9f\x00\x004\x00\x00\x00o\x9f\x00\x00}\x00\x00\x00\xa4\x9f\x00\x00.\x00\x00\x00"\xa0\x00\x00"\x00\x00\x00Q\xa0\x00\x00$\x00\x00\x00t\xa0\x00\x00#\x00\x00\x00\x99\xa0\x00\x00\x1e\x00\x00\x00\xbd\xa0\x00\x00\n\x00\x00\x00\xdc\xa0\x00\x00\x0f\x00\x00\x00\xe7\xa0\x00\x00\x1f\x00\x00\x00\xf7\xa0\x00\x00\x04\x00\x00\x00\x17\xa1\x00\x002\x00\x00\x00\x1c\xa1\x00\x00\x0b\x00\x00\x00O\xa1\x00\x00\x8f\x00\x00\x00[\xa1\x00\x00\x14\x00\x00\x00\xeb\xa1\x00\x00 \x00\x00\x00\x00\xa2\x00\x00$\x00\x00\x00!\xa2\x00\x00 \x00\x00\x00F\xa2\x00\x00!\x00\x00\x00g\xa2\x00\x002\x00\x00\x00\x89\xa2\x00\x00\x10\x00\x00\x00\xbc\xa2\x00\x00\x18\x00\x00\x00\xcd\xa2\x00\x00#\x00\x00\x00\xe6\xa2\x00\x00\x01\x00\x00\x00\n\xa3\x00\x00\x06\x00\x00\x00\x0c\xa3\x00\x00\x14\x00\x00\x00\x13\xa3\x00\x00 \x00\x00\x00(\xa3\x00\x00\x14\x00\x00\x00I\xa3\x00\x00\x1c\x00\x00\x00^\xa3\x00\x00%\x00\x00\x00{\xa3\x00\x00\x0f\x00\x00\x00\xa1\xa3\x00\x00"\x00\x00\x00\xb1\xa3\x00\x00Q\x00\x00\x00\xd4\xa3\x00\x00\x06\x00\x00\x00&\xa4\x00\x00=\x00\x00\x00-\xa4\x00\x00\x1f\x00\x00\x00k\xa4\x00\x00=\x00\x00\x00\x8b\xa4\x00\x00"\x00\x00\x00\xc9\xa4\x00\x00,\x00\x00\x00\xec\xa4\x00\x00:\x00\x00\x00\x19\xa5\x00\x00/\x00\x00\x00T\xa5\x00\x00)\x00\x00\x00\x84\xa5\x00\x00&\x00\x00\x00\xae\xa5\x00\x00\n\x00\x00\x00\xd5\xa5\x00\x00\x17\x00\x00\x00\xe0\xa5\x00\x00\x1a\x00\x00\x00\xf8\xa5\x00\x00$\x00\x00\x00\x13\xa6\x00\x00\x11\x00\x00\x008\xa6\x00\x00\n\x00\x00\x00J\xa6\x00\x009\x00\x00\x00U\xa6\x00\x00\x1b\x00\x00\x00\x8f\xa6\x00\x00-\x00\x00\x00\xab\xa6\x00\x00\x14\x00\x00\x00\xd9\xa6\x00\x00\x17\x00\x00\x00\xee\xa6\x00\x00\x0c\x00\x00\x00\x06\xa7\x00\x00\x10\x00\x00\x00\x13\xa7\x00\x00*\x00\x00\x00$\xa7\x00\x00\x17\x00\x00\x00O\xa7\x00\x00\x1d\x00\x00\x00g\xa7\x00\x00\x07\x00\x00\x00\x85\xa7\x00\x00\x0b\x00\x00\x00\x8d\xa7\x00\x00B\x00\x00\x00\x99\xa7\x00\x00\x06\x00\x00\x00\xdc\xa7\x00\x00\xc1\x00\x00\x00\xe3\xa7\x00\x005\x01\x00\x00\xa5\xa8\x00\x00[\x00\x00\x00\xdb\xa9\x00\x00)\x00\x00\x007\xaa\x00\x00\x03\x00\x00\x00a\xaa\x00\x00\x06\x00\x00\x00e\xaa\x00\x00\x07\x00\x00\x00l\xaa\x00\x00\x06\x00\x00\x00t\xaa\x00\x004\x00\x00\x00{\xaa\x00\x00#\x00\x00\x00\xb0\xaa\x00\x00\x1e\x00\x00\x00\xd4\xaa\x00\x00\t\x00\x00\x00\xf3\xaa\x00\x00\x04\x00\x00\x00\xfd\xaa\x00\x00\x0b\x00\x00\x00\x02\xab\x00\x00\x07\x00\x00\x00\x0e\xab\x00\x00\x1b\x02\x00\x00\x16\xab\x00\x00\x8f\x00\x00\x002\xad\x00\x00n\x00\x00\x00\xc2\xad\x00\x00\x16\x00\x00\x001\xae\x00\x00\x12\x00\x00\x00H\xae\x00\x00\xcc\x00\x00\x00[\xae\x00\x002\x00\x00\x00(\xaf\x00\x00\x19\x00\x00\x00[\xaf\x00\x00\x1e\x00\x00\x00u\xaf\x00\x00\x1e\x00\x00\x00\x94\xaf\x00\x006\x00\x00\x00\xb3\xaf\x00\x00\x12\x00\x00\x00\xea\xaf\x00\x00\x1f\x00\x00\x00\xfd\xaf\x00\x00#\x00\x00\x00\x1d\xb0\x00\x00\x07\x00\x00\x00A\xb0\x00\x00"\x00\x00\x00I\xb0\x00\x00\t\x00\x00\x00l\xb0\x00\x00\x11\x00\x00\x00v\xb0\x00\x00\x12\x00\x00\x00\x88\xb0\x00\x002\x00\x00\x00\x9b\xb0\x00\x00\t\x00\x00\x00\xce\xb0\x00\x00C\x00\x00\x00\xd8\xb0\x00\x00\r\x00\x00\x00\x1c\xb1\x00\x003\x00\x00\x00*\xb1\x00\x009\x00\x00\x00^\xb1\x00\x00\x19\x00\x00\x00\x98\xb1\x00\x001\x00\x00\x00\xb2\xb1\x00\x00i\x00\x00\x00\xe4\xb1\x00\x00\x17\x00\x00\x00N\xb2\x00\x00\x08\x00\x00\x00f\xb2\x00\x00\xa1\x00\x00\x00o\xb2\x00\x00\x17\x00\x00\x00\x11\xb3\x00\x00e\x00\x00\x00)\xb3\x00\x00y\x00\x00\x00\x8f\xb3\x00\x00\x04\x00\x00\x00\t\xb4\x00\x00\n\x00\x00\x00\x0e\xb4\x00\x006\x00\x00\x00\x19\xb4\x00\x00\r\x00\x00\x00P\xb4\x00\x00\x11\x00\x00\x00^\xb4\x00\x00\x17\x00\x00\x00p\xb4\x00\x00\x19\x00\x00\x00\x88\xb4\x00\x00\x19\x00\x00\x00\xa2\xb4\x00\x00(\x00\x00\x00\xbc\xb4\x00\x00\x19\x00\x00\x00\xe5\xb4\x00\x00\x0c\x00\x00\x00\xff\xb4\x00\x00\x0f\x00\x00\x00\x0c\xb5\x00\x00>\x00\x00\x00\x1c\xb5\x00\x00\x05\x00\x00\x00[\xb5\x00\x00_\x00\x00\x00a\xb5\x00\x00\x15\x00\x00\x00\xc1\xb5\x00\x00\xf6\x00\x00\x00\xd7\xb5\x00\x00\x1e\x00\x00\x00\xce\xb6\x00\x00\x0f\x00\x00\x00\xed\xb6\x00\x00\x07\x00\x00\x00\xfd\xb6\x00\x00\x1d\x00\x00\x00\x05\xb7\x00\x00\x1b\x00\x00\x00#\xb7\x00\x00H\x00\x00\x00?\xb7\x00\x00\x11\x00\x00\x00\x88\xb7\x00\x00=\x00\x00\x00\x9a\xb7\x00\x00D\x00\x00\x00\xd8\xb7\x00\x00\x95\x00\x00\x00\x1d\xb8\x00\x00\x12\x00\x00\x00\xb3\xb8\x00\x00\x0c\x00\x00\x00\xc6\xb8\x00\x00\x14\x00\x00\x00\xd3\xb8\x00\x00\x12\x00\x00\x00\xe8\xb8\x00\x00J\x00\x00\x00\xfb\xb8\x00\x00\x18\x00\x00\x00F\xb9\x00\x00\x06\x00\x00\x00_\xb9\x00\x00F\x00\x00\x00f\xb9\x00\x00[\x00\x00\x00\xad\xb9\x00\x00@\x00\x00\x00\t\xba\x00\x00r\x00\x00\x00J\xba\x00\x00\x12\x00\x00\x00\xbd\xba\x00\x00M\x00\x00\x00\xd0\xba\x00\x00\x8c\x00\x00\x00\x1e\xbb\x00\x00S\x00\x00\x00\xab\xbb\x00\x00\x11\x00\x00\x00\xff\xbb\x00\x00;\x00\x00\x00\x11\xbc\x00\x00\r\x00\x00\x00M\xbc\x00\x00\xbc\x00\x00\x00[\xbc\x00\x00\x0b\x00\x00\x00\x18\xbd\x00\x00\x07\x00\x00\x00$\xbd\x00\x00\x04\x00\x00\x00,\xbd\x00\x00$\x00\x00\x001\xbd\x00\x00!\x00\x00\x00V\xbd\x00\x00\x16\x00\x00\x00x\xbd\x00\x00\x13\x00\x00\x00\x8f\xbd\x00\x00 \x00\x00\x00\xa3\xbd\x00\x00\x14\x00\x00\x00\xc4\xbd\x00\x00-\x00\x00\x00\xd9\xbd\x00\x00-\x00\x00\x00\x07\xbe\x00\x002\x00\x00\x005\xbe\x00\x00+\x00\x00\x00h\xbe\x00\x00J\x00\x00\x00\x94\xbe\x00\x00\x14\x00\x00\x00\xdf\xbe\x00\x00\x1d\x00\x00\x00\xf4\xbe\x00\x00E\x00\x00\x00\x12\xbf\x00\x001\x00\x00\x00X\xbf\x00\x00\xae\x00\x00\x00\x8a\xbf\x00\x00N\x00\x00\x009\xc0\x00\x00\x10\x00\x00\x00\x88\xc0\x00\x00(\x00\x00\x00\x99\xc0\x00\x002\x00\x00\x00\xc2\xc0\x00\x00\x08\x00\x00\x00\xf5\xc0\x00\x00\r\x00\x00\x00\xfe\xc0\x00\x00\x19\x00\x00\x00\x0c\xc1\x00\x004\x00\x00\x00&\xc1\x00\x00=\x00\x00\x00[\xc1\x00\x00\r\x00\x00\x00\x99\xc1\x00\x00i\x00\x00\x00\xa7\xc1\x00\x00\x87\x00\x00\x00\x11\xc2\x00\x00Q\x00\x00\x00\x99\xc2\x00\x000\x00\x00\x00\xeb\xc2\x00\x00\x12\x00\x00\x00\x1c\xc3\x00\x00!\x00\x00\x00/\xc3\x00\x00\x1c\x00\x00\x00Q\xc3\x00\x000\x00\x00\x00n\xc3\x00\x00\x07\x00\x00\x00\x9f\xc3\x00\x00\x10\x00\x00\x00\xa7\xc3\x00\x00\r\x00\x00\x00\xb8\xc3\x00\x00\x07\x00\x00\x00\xc6\xc3\x00\x001\x00\x00\x00\xce\xc3\x00\x00\x16\x00\x00\x00\x00\xc4\x00\x002\x00\x00\x00\x17\xc4\x00\x00%\x00\x00\x00J\xc4\x00\x00%\x00\x00\x00p\xc4\x00\x00\x11\x00\x00\x00\x96\xc4\x00\x00b\x00\x00\x00\xa8\xc4\x00\x00\x10\x00\x00\x00\x0b\xc5\x00\x00\x1a\x00\x00\x00\x1c\xc5\x00\x00\x16\x00\x00\x007\xc5\x00\x00\x12\x00\x00\x00N\xc5\x00\x00\x17\x00\x00\x00a\xc5\x00\x00\x95\x00\x00\x00y\xc5\x00\x00r\x00\x00\x00\x0f\xc6\x00\x00B\x00\x00\x00\x82\xc6\x00\x000\x00\x00\x00\xc5\xc6\x00\x00@\x00\x00\x00\xf6\xc6\x00\x00}\x00\x00\x007\xc7\x00\x00\x0b\x00\x00\x00\xb5\xc7\x00\x00\x19\x00\x00\x00\xc1\xc7\x00\x00\x19\x00\x00\x00\xdb\xc7\x00\x00\x1c\x00\x00\x00\xf5\xc7\x00\x00\x1c\x01\x00\x00\x12\xc8\x00\x00\x81\x00\x00\x00/\xc9\x00\x00\x96\x00\x00\x00\xb1\xc9\x00\x00\xbd\x00\x00\x00H\xca\x00\x00]\x01\x00\x00\x06\xcb\x00\x00c\x00\x00\x00d\xcc\x00\x00b\x01\x00\x00\xc8\xcc\x00\x00%\x00\x00\x00+\xce\x00\x00\x06\x00\x00\x00Q\xce\x00\x00\x1f\x00\x00\x00X\xce\x00\x00\x18\x00\x00\x00x\xce\x00\x00\x07\x00\x00\x00\x91\xce\x00\x00(\x00\x00\x00\x99\xce\x00\x00\x07\x00\x00\x00\xc2\xce\x00\x00\x15\x00\x00\x00\xca\xce\x00\x00\x1e\x00\x00\x00\xe0\xce\x00\x00\x04\x00\x00\x00\xff\xce\x00\x00\x94\x00\x00\x00\x04\xcf\x00\x00\x04\x00\x00\x00\x99\xcf\x00\x00\t\x00\x00\x00\x9e\xcf\x00\x00=\x00\x00\x00\xa8\xcf\x00\x00\x1f\x00\x00\x00\xe6\xcf\x00\x00A\x00\x00\x00\x06\xd0\x00\x00~\x00\x00\x00H\xd0\x00\x00l\x00\x00\x00\xc7\xd0\x00\x00\x1a\x00\x00\x004\xd1\x00\x00\x1a\x00\x00\x00O\xd1\x00\x00z\x00\x00\x00j\xd1\x00\x00\xb2\x00\x00\x00\xe5\xd1\x00\x00)\x00\x00\x00\x98\xd2\x00\x00#\x00\x00\x00\xc2\xd2\x00\x00%\x00\x00\x00\xe6\xd2\x00\x00\xa6\x00\x00\x00\x0c\xd3\x00\x00*\x00\x00\x00\xb3\xd3\x00\x00%\x00\x00\x00\xde\xd3\x00\x00^\x00\x00\x00\x04\xd4\x00\x00s\x00\x00\x00c\xd4\x00\x00\x1f\x00\x00\x00\xd7\xd4\x00\x00\xae\x00\x00\x00\xf7\xd4\x00\x005\x00\x00\x00\xa6\xd5\x00\x00W\x00\x00\x00\xdc\xd5\x00\x00\n\x00\x00\x004\xd6\x00\x00\x05\x00\x00\x00?\xd6\x00\x00 \x00\x00\x00E\xd6\x00\x00\x06\x00\x00\x00f\xd6\x00\x008\x00\x00\x00m\xd6\x00\x00!\x00\x00\x00\xa6\xd6\x00\x00,\x00\x00\x00\xc8\xd6\x00\x00/\x00\x00\x00\xf5\xd6\x00\x00%\x00\x00\x00%\xd7\x00\x00\x0c\x00\x00\x00K\xd7\x00\x00\x07\x00\x00\x00X\xd7\x00\x00\x1b\x00\x00\x00`\xd7\x00\x00\x0e\x00\x00\x00|\xd7\x00\x00\x12\x00\x00\x00\x8b\xd7\x00\x00\x12\x00\x00\x00\x9e\xd7\x00\x00\n\x00\x00\x00\xb1\xd7\x00\x00m\x00\x00\x00\xbc\xd7\x00\x00\x1d\x01\x00\x00*\xd8\x00\x00[\x00\x00\x00H\xd9\x00\x00a\x00\x00\x00\xa4\xd9\x00\x00\x1b\x00\x00\x00\x06\xda\x00\x00!\x00\x00\x00"\xda\x00\x00;\x00\x00\x00D\xda\x00\x000\x00\x00\x00\x80\xda\x00\x00\xca\x00\x00\x00\xb1\xda\x00\x00F\x00\x00\x00|\xdb\x00\x00\x1e\x00\x00\x00\xc3\xdb\x00\x00i\x00\x00\x00\xe2\xdb\x00\x00N\x00\x00\x00L\xdc\x00\x00\x1c\x00\x00\x00\x9b\xdc\x00\x007\x00\x00\x00\xb8\xdc\x00\x00\n\x00\x00\x00\xf0\xdc\x00\x00\x19\x00\x00\x00\xfb\xdc\x00\x00\n\x00\x00\x00\x15\xdd\x00\x00\x08\x00\x00\x00 \xdd\x00\x00\'\x00\x00\x00)\xdd\x00\x00B\x00\x00\x00Q\xdd\x00\x00q\x00\x00\x00\x94\xdd\x00\x00s\x00\x00\x00\x06\xde\x00\x001\x00\x00\x00z\xde\x00\x00<\x00\x00\x00\xac\xde\x00\x002\x00\x00\x00\xe9\xde\x00\x00\xf3\x00\x00\x00\x1c\xdf\x00\x00\x07\x00\x00\x00\x10\xe0\x00\x00\n\x00\x00\x00\x18\xe0\x00\x00\x0e\x00\x00\x00#\xe0\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">calibre</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://calibre.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00calibre\x00contains\x00mybook.epub\x00Project-Id-Version: calibre 0.4.22\nPOT-Creation-Date: 2008-04-07 16:11+IST\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\tBaen Datei erkannt. Analysiere erneut...\x00\tBook Designer Datei erkannt.\x00\tKonvertiere in BBeB...\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\tAnalysiere HTML...\x00\n%prog [options] ISBN\n\nUmschlagbild des Buches mit der angegebenen ISBN von LibraryThing.com abrufen\n\x00\n%prog [options] key\n\nRufe Metadaten der B\xc3\xbccher von isndb.com ab. Sie k\xc3\xb6nnen entweder die\nISBN oder den Titel und den Autor des Buches angeben. Wenn Sie Titel und Autor angeben,\nkann es sein, dass mehrere B\xc3\xbccher gefunden werden.\n\nkey steht f\xc3\xbcr den Konto-Schl\xc3\xbcssel, der nach der kostenfreien Registrierung bei isbndb.com erstellt werden kann.\n\n\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%%prog [options] ARG\n\n%%prog analysiert eine Online-Quelle von Artikeln, z.B. einen RSS oder ATOM Feed und \nruft die Artikelinhalte hierarchisch organisiert ab.\n\nARG kann eines der folgenden sein:\n\ndateiname - %%prog versucht ein Rezept aus der Datei zu laden\n\ninstalliertes Rezept - %%prog l\xc3\xa4dt ein installiertes Rezept und benutzt es, um den Feed abzurufen. Z.B. f\xc3\xbcr Newsweek or "The BBC" or "The New York Times"\n\nRezept als eine Reihung - %%prog l\xc3\xa4dt das Rezept direkt nach der angegebenen Reihung.\n\nVerf\xc3\xbcgbare installierte Rezepte:\n%s\n\x00%prog URL\n\nURL ist z.B. http://google.com\x00%prog [options] datei.lrs\nErstellt eine LRF Datei aus einer LRS Datei.\x00%prog [options] dateiname.lrf\n\n\nZeigt/ver\xc3\xa4ndert die Metadaten in einer LRF Datei.\n\n\x00%prog [options] dateiname.pdf\n\n\n%prog konvertiert dateiname.pdf in dateiname.lrf\x00%prog [options] dateiname.rtf\n\n\n%prog konvertiert dateiname.rtf in dateiname.lrf\x00%prog [options] dateiname.txt\n\n\n%prog konvertiert dateiname.txt in dateiname.lrf\x00%prog [options] dateiname.mobi\x00%prog dateiname.lrf\nKonvertiert eine LRF Datei in eine LRS (XML UTF-8 kodierte) Datei\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00&Access Key;\x00Feed &anf\xc3\xbcgen\x00Ajoute mot-clef\x00&Auteurs :\x00Marge &Basse :\x00Datenbank verdi&chten\x00&D\xc3\xa9sactive la d\xc3\xa9tection de chapitres\x00&Feed Titel:\x00&Force un saut de page avant le tag:\x00Format de l\'&en-t\xc3\xaate\x00Marge &Gauche :\x00&Emplacement de la base de donn\xc3\xa9es (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace :\x00\xc3\x84<ester Artikel:\x00Saut de &page avant le tag:\x00Mot de &passe :\x00&Preprocess :\x00&Priorit\xc3\xa9 pour les travaux de conversion :\x00&Profil :\x00&Editeur :\x00&Note :\x00Expression &R\xc3\xa9guli\xc3\xa8re :\x00Rezept entfe&rnen\x00&Supprime des mots-clefs :\x00Marge &Droite :\x00&Recherche :\x00&S\xc3\xa9ries :\x00&Serif :\x00&Affiche l\'en-t\xc3\xaate\x00&Affiche le mot de passe\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&Titre :\x00Marge &Haute :\x00Nom de l\'&utilisateur :\x00Espacement entre &mots :\x00...\x00<b>Les modifications ne seront prises en compte qu\'apr\xc3\xa8s avoir relanc\xc3\xa9 le programme.\x00<b>Erreur \xc3\xa0 la r\xc3\xa9cup\xc3\xa9ration de l\'image de couverture.</b><br/>\x00<b>Aucun r\xc3\xa9sultat</b> pour la recherche <i>%s</i>.\x00<br>Doit \xc3\xaatre un r\xc3\xa9pertoire.\x00<font color="gray">Aucune aide n\'est disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hilfe gibt es online bei <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">calibre</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Fichiers HTML0 g\xc3\xa9n\xc3\xa9r\xc3\xa9s avec Book Designer</li>\x00<li><b>pdftohtml</b> - fichiers HTML g\xc3\xa9n\xc3\xa9r\xc3\xa9s par le programme pdftohtml</li>\x00<ol><li><b>baen</b> -Livres des \xc3\xa9ditions BAEN </li>\x00<p>Une base de donn\xc3\xa9es invalide existe d\xc3\xa9j\xc3\xa0 ici : %s, spprimez la avant d\'essayer de d\xc3\xa9placer la base de donn\xc3\xa9es existante.<br>Erreur : %s\x00<p>Des livres ayant le m\xc3\xaame titre existent d\xc3\xa9j\xc3\xa0 dans la base de donn\xc3\xa9es. Les ajouter quand m\xc3\xaame ?<ul>\x00<p>Impossible d\'envoyer les livres sur le lecteur : il n\'y a plus assez d\'espace m\xc3\xa9moire disponible\x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Veuillez saisir votre nom d\'utilisateur et votre mot de passe de <b>LibraryThing.com</b>. <br/>Si vous n\'en avez pas, vous pouvez <a href=\'http://www.librarything.com\'>y cr\xc3\xa9er un compte </a> gratuitement !</p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Il y a eu une erreur \xc3\xa0 la lecture du fichier : <br /><b>\x00<span style="color:red; font-weight:bold">Letzte Version: <a href="%s">%s</a></span>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Une expression r\xc3\xa9guli\xc3\xa8re. Les tags <a> qui respectent cette expression seront ignor\xc3\xa9s. Par d\xc3\xa9faut : %default\x00Mots-clefs\x00Mots-clefs disponibles\x00Ex\xc3\xa9cutions en cours\x00Ajout de Ta&gs :\x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Ajouter un r\xc3\xa9petoire \xc3\xa0 la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Rajoute une en-t\xc3\xaate \xc3\xa0 toutes les pages, avec le titre et l\'auteur.\x00Ajout d\'un nouveau format dans la base de donn\xc3\xa9es pour ce livre\x00Ajout d\'un livre\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Ajuste la pr\xc3\xa9sentation du fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9 en d\xc3\xa9finissant des param\xc3\xa8tres tels que la taille des polices et l\'espacement entre les mots.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Ein Fehler trat w\xc3\xa4hrend der Bearbeitung einer Tabelle auf: %s. Tabellenformat wird ignoriert.\x00Irgendein\x00Jeder Link, der diesem Regul\xc3\xa4ren Ausdruck entspricht, wird ignoriert. Diese Option kann mehrmals angegeben werden, somit werden Links ignoriert, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden keine Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben sind, wird --filter-regexp zuerst angewendet.\x00Applique le mot-clef au livre en cours.\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00Cl\xc3\xa9 de tr&i de l\'auteur :\x00T&ri de l\'auteur :\x00Auteur(s)\x00Autoren:\x00Formats disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Recule\x00Schlechte Tabelle:\n%s\x00Taille de &police par d\xc3\xa9faut :\x00Grundverzeichnis, in das die URL gespeichert wird. Voreinstellung ist %default \x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\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\x00Konnte Link %s nicht zu TOC hinzuf\xc3\xbcgen\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\x00Lesen nicht m\xc3\xb6glich von: %s\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\x00Verdichte Datenbank. Das kann dauern...\x00Verdichte Datenbank...\x00Configuration\x00Configuration\x00Configuration du visualisateur\x00Conversion de %s en LRF\x00Convertir des ebooks\x00Konvertierung von LRS in LRS, hilfreich bei der Fehlersuche.\x00Convertion individuelle\x00Convertir en LRF\x00Zu LRS konvertieren\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\x00Konnte Bild nicht verarbeiten: %s\n%s\x00Konnte Umschlagbild nicht lesen: %s\x00Umschlagbild gespeichert unter\x00Cr\xc3\xa9\xc3\xa9 par\x00Erstelle XML...\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\x00Ger\xc3\xa4tedatenbank ist besch\xc3\xa4digt\x00Lade CSS Stylesheets nicht herunter.\x00Je ne sais pas \xc3\xa0 quoi cela sert\x00Fortschrittsbalken nicht anzeigen\x00Doppelklick erm\xc3\xb6glicht <b>Bearbeitung</b><br><br>\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:\x00Fehlschlag bei der Analysierung von %s %s\x00Verarbeitung der OPF Datei schlug fehl\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00R\xc3\xa9cup\xc3\xa8re\x00R\xc3\xa9cup\xc3\xa9ration de l\'image de couverture depuis le serveur\x00R\xc3\xa9cup\xc3\xa9ration des metadata\x00R\xc3\xa9cup\xc3\xa9ration des metadata depuis le serveur\x00R\xc3\xa9cup\xc3\xa9rer des News\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00R\xc3\xa9cup\xc3\xa9ration des metadata pour <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Peaufiner la d\xc3\xa9tection des chapitres et des en-t\xc3\xaates de section.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://calibre.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Impose un saut de page avant un \xc3\xa9l\xc3\xa9ment avec l\'attribut sp\xc3\xa9cifi\xc3\xa9. Le format de cette option est : tagname regexp,attribute name,attribute value regexp.Par exemple, pour utiliser tous les tags de titres qui ont l\'attribut de classe "chapter" il faudrait saisir : "h\\d,class,chapter". Par d\xc3\xa9faut : %default\x00Impose un saut de page avant chaque tags dont le nom respecte cette expression r\xc3\xa9guli\xc3\xa8re.\x00Force un saut de page avant l\'&attribut :\x00Art\x00Format\x00Formats\x00Avance\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00R\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Feeds der Index Seite erhalten\x00En-t\xc3\xaatre\x00Aide\x00Hyphenation\x00I&SBN :\x00Si html2lrf ne trouve aucun saut de page dans le fichier html et ne peut pas d\xc3\xa9tecter de chapitres, il ins\xc3\xa8rera automatiquement des sauts de pages avant les tags dont le nom respectent cette expression r\xc3\xa9guli\xc3\xa8re. Par d\xc3\xa9faut : %default. Vous pouvez d\xc3\xa9sactiver cette fonction en saisissant "$". Le but de cette option est d\'essayer de s\'assurer qu\'il n\'y a pas de vraiment trop longues pages, car cela d\xc3\xa9grades les performances lorsque l\'on change de page. De ce fait, cette option est ignor\xc3\xa9e si la page courante a peu d\'\xc3\xa9l\xc3\xa9ments.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si une couverture est d\xc3\xa9ctect\xc3\xa9e dans le fichier source, utilise cette image plut\xc3\xb4t que l\'image sp\xc3\xa9cifi\xc3\xa9e.\x00Farben nicht bea&chten\x00Ignore les &tables\x00Augmente la taille de la police de 2 * FONT_DELTA points et l\'espacement entre lignes de FONT_DELTA points. FONT_DELTA peut-\xc3\xaatre un r\xc3\xa9el. Si FONT_DELTA est n\xc3\xa9gatif, la taille de la police est r\xc3\xa9duite.\x00Ins\xc3\xa8re des lignes &blanches entre les paragraphes\x00Base de donn\xc3\xa9es invalide\x00Chemin de la database invalide\x00Chemin de la database invalide\x00Chemin de la database invalide.<br>Erreur en \xc3\xa9criture\x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Travaux\x00Auftrag durch Benutzer abgebrochen\x00Travaux :\x00Visualisateur LRF\x00LRS gespeichert in\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.\x00Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt werden. Voreinstellung %default\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:\x00Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. Voreinstellung ist %default s\x00Mindest-Zeileneinzug von Paragraphen (Zeileneinzug der ersten Zeile eines Paragraphen) in Punkt. Voreinstellung: %default\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\x00Keine Datei zur Konvertierung angegeben.\x00Kein Dateiname angegeben.\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\x00OEB eBook erstellt in\x00Nur Links, die diesem Regul\xc3\xa4ren Ausdruck entsprechen, werden verfolgt. Diese Option kann mehrmals angegeben werden, somit werden Links verfolgt, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden alle Links verfolgt.\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)\x00Ausgabe LRS Datei\x00Ausgabeverzeichnis. Voreinstellung ist akutelles Verzeichnis.\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\x00Analysieren 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.\x00Pfad zur Zieldatei\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\x00Gebe erstellte HTML auf stdout aus und beende das Programm.\x00Verarbeite %s\x00Le profil du lecteur pour lequel le LRF est g\xc3\xa9n\xc3\xa9r\xc3\xa9. Ce profil d\xc3\xa9termine des param\xc3\xa8tres comme la r\xc3\xa9solution et la taille de l\'\xc3\xa9cran du lecteur. Par d\xc3\xa9faut : %s Profils support\xc3\xa9s : \x00Progression\x00Editeur\x00Note\x00Note de ce livre. de 0 \xc3\xa0 5 \xc3\xa9toiles\x00Original MOBI HTML gespeichert in\x00Lecteur \n%s disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Supprime un r\xc3\xa9petoire de la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Suppression du livre\x00Feed aus dem Rezept entfernen\x00Retire les formats s\xc3\xa9lectionn\xc3\xa9s de ce livre de la base de donn\xc3\xa9es.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Affiche les tables HTML comme de simples blocs de textes au lieu de v\xc3\xa9ritables tables. Cela peut \xc3\xaatre n\xc3\xa9cessaire si le HTML contient des tables trop grosses ou complexes .\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00R\xc3\xa9initialisation de la recherche rapide\x00La marge de droite. Par d\xc3\xa9faut : %default points.\x00Laufzeit\x00S&ans-serif :\x00Enregistrer sur le disque\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Recherche les livres par titre ou auteur <br><br>Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00Recherche les livres par titre, auteur, \xc3\xa9diteur, tags et commentaires <br><br>Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00S\xc3\xa9lectionnez le livre qui correspond le mieux au votre dans la liste ci-dessous.\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Envoyer au lecteur\x00Envoi vers la m\xc3\xa9moire du lecteur\x00Envoi vers la carte m\xc3\xa9moire\x00S\xc3\xa9pare les paragraphe avec des lignes blanches.\x00S\xc3\xa9ries\x00Index de s\xc3\xa9ries\x00Serien Index:\x00Serien:\x00Erreur Serveur. Veuillez essayer ult\xc3\xa9rieurement.\x00D\xc3\xa9finit l\'ID du livre\x00D\xc3\xa9finir les param\xc3\xa8tres par d\xc3\xa9faut de conversion\x00D\xc3\xa9finit la clef de tri pour l\'auteur\x00D\xc3\xa9finit la cl\xc3\xa9 de tri pour le titre\x00D\xc3\xa9finit l\'auteur\x00D\xc3\xa9finir le(s) auteur(s). Si plusieurs auteurs, les s\xc3\xa9parer d\'une virgule. Par d\xc3\xa9faut : %default\x00Gebe Autoren ein\x00D\xc3\xa9finit le titre du livre\x00D\xc3\xa9finir la cat\xc3\xa9gorie\x00Gebe Kommentar ein\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.\x00Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche.\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.\x00Geben Sie die Zeichenkodierung der Ausgangsdatei an. Sollte die ausgegebene LRF Datei seltsame Zeichen enthalten, \xc3\xa4ndern Sie diese Einstellung. Eine gebr\xc3\xa4uchliche Kodierung von Dateien, die von Windows Computern stammen, ist cp-1252. Eine andere gebr\xc3\xa4uchliche Alternative ist utf-8. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00D\xc3\xa9finit les param\xc3\xa8tres de la pages tels que les marges et la taille de l\'\xc3\xa9cran du lecteur cible.\x00D\xc3\xa9finit des familles de polices truetype pour les polices serif, sans-serif et monospace. Ces polices seront inclues dans le fichier LRF. Attention : inclure des polices dans le fichier ralentit les changements de pages. Chaque d\xc3\xa9finition de famille est de la forme : "chemin du r\xc3\xa9pertoir, famille" Par exemple : --serif-family "%s, Times New Roman"\x00Starte Download von [%d Thread(s)]...\x00Statut\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Ta&gs :\x00Tabelle enth\xc3\xa4lt Zelle, die zu gro\xc3\x9f ist\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\x00Die ISBN des Buches, f\xc3\xbcr das Sie Metadaten abrufen m\xc3\xb6chten.\x00Der Autor des gesuchten Buches.\x00La cat\xc3\xa9gorie \xc3\xa0 laquelle le livre appartient. Exemple : Histoire\x00Zeichenkodierung f\xc3\xbcr Webseiten, die zu laden versucht werden. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00H\xc3\xb6chstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus <a href> Tags zu. Voreinstellung ist %default\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\x00Der Herausgeber des gesuchten Buches.\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.\x00Der Titel des gesuchten Buches.\x00Une erreur temporaire s\'est d\xc3\xa9clench\xc3\xa9e pendant la communication avec le lecteur \xc3\xa9lectronique. Veuillez d\xc3\xa9connecter et reconnecter le lecteur \xc3\xa9lectronique et red\xc3\xa9marrer.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: %default s\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...\x00Konnte Bild %s nicht verarbeiten. Fehler: %s\x00Konnte verschachteltes PNG %s nicht verarbeiten\x00Enl\xc3\xa8ve le mot-clef du livre en cours\x00Indisponible\x00Inconnu\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Benutzung:\x00Benutzung: %prog [options] dateiname.epub\n \n \n%prog konvertiert dateiname.epub in dateiname.lrf\x00Benutzung: %prog [options] dateiname.html\n\n\n%prog konvertiert dateiname.html in dateiname.lrf. \n%prog folgt allen Hyperlinks in dateiname.html, die rekursiv auf \nlokale Dateien verweisen. Somit k\xc3\xb6nnen Sie es verwenden,\num einen ganzen Verzeichnisbaum von HTML Dateien zu konvertieren.\x00Benutzung: %prog [options] dateiname.lit\n\n\n%prog konvertiert dateiname.lit in dateiname.lrf\x00Benutzung: %prog [options] dateiname.mobi|prc\n\n\n%prog konvertiert dateiname.mobi in dateiname.lrf\x00Benutzung: %s dateiname.lit\x00Benutzung: pdf-meta dateiname.pdf\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.\x00Mit mehr W\xc3\xb6rtern fortfahren\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Visualiser\x00Spezielles Format ansehen\x00En attente\x00En cours\x00Vorverarbeitetes HTML gespeichert unter\x00Vous n\'avez pas les permissions n\xc3\xa9cessaires pour lire ce fichier:\x00Sichern Sie die Website %s zuerst als HTML Datei und benutzen Sie dann html2lrf mit der gespeicherten HTML Datei.\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.\x00any2lrf [options] dateiname\n\nKonvertiert verschiedene eBook Formate in LRF Dateien. Unterst\xc3\xbctzte Formate:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC und PDF. any2lrf verarbeitet auch RAR oder\nZIP Archive, indem es nach einem eBook im Archiv sucht.\n\x00calibre\x00beinhaltet\x00dateiname.epub\x00', 'ca': '\xde\x12\x04\x95\x00\x00\x00\x00\xee\x01\x00\x00\x1c\x00\x00\x00\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x1e\x00\x00"\x00\x00\x00\xfd\x1e\x00\x00\x1d\x00\x00\x00 \x1f\x00\x00\x16\x00\x00\x00>\x1f\x00\x00\x0e\x00\x00\x00U\x1f\x00\x00\x10\x00\x00\x00d\x1f\x00\x00a\x00\x00\x00u\x1f\x00\x00+\x01\x00\x00\xd7\x1f\x00\x00!\x00\x00\x00\x03!\x00\x00\x05\x00\x00\x00%!\x00\x00\x06\x00\x00\x00+!\x00\x00\x17\x00\x00\x002!\x00\x00\x0b\x00\x00\x00J!\x00\x00\x04\x00\x00\x00V!\x00\x00\x03\x00\x00\x00[!\x00\x00\x08\x00\x00\x00_!\x00\x00\x06\x00\x00\x00h!\x00\x00\xfd\x01\x00\x00o!\x00\x005\x00\x00\x00m#\x00\x00>\x00\x00\x00\xa3#\x00\x00E\x00\x00\x00\xe2#\x00\x00D\x00\x00\x00($\x00\x00D\x00\x00\x00m$\x00\x00D\x00\x00\x00\xb2$\x00\x00\x1c\x00\x00\x00\xf7$\x00\x00G\x00\x00\x00\x14%\x00\x00\x1c\x00\x00\x00\\%\x00\x00\x0e\x00\x00\x00y%\x00\x00\x0c\x00\x00\x00\x88%\x00\x00\t\x00\x00\x00\x95%\x00\x00\t\x00\x00\x00\x9f%\x00\x00\x0c\x00\x00\x00\xa9%\x00\x00\x0f\x00\x00\x00\xb6%\x00\x00\x11\x00\x00\x00\xc6%\x00\x00\x1a\x00\x00\x00\xd8%\x00\x00\x0c\x00\x00\x00\xf3%\x00\x00\x1d\x00\x00\x00\x00&\x00\x00\x0f\x00\x00\x00\x1e&\x00\x00\r\x00\x00\x00.&\x00\x00)\x00\x00\x00<&\x00\x00"\x00\x00\x00f&\x00\x00\x18\x00\x00\x00\x89&\x00\x00\x0b\x00\x00\x00\xa2&\x00\x00\x10\x00\x00\x00\xae&\x00\x00\x17\x00\x00\x00\xbf&\x00\x00\n\x00\x00\x00\xd7&\x00\x00\x0c\x00\x00\x00\xe2&\x00\x00\x1e\x00\x00\x00\xef&\x00\x00\t\x00\x00\x00\x0e\'\x00\x00\x0c\x00\x00\x00\x18\'\x00\x00\x08\x00\x00\x00%\'\x00\x00\x14\x00\x00\x00.\'\x00\x00\x0e\x00\x00\x00C\'\x00\x00\r\x00\x00\x00R\'\x00\x00\x0e\x00\x00\x00`\'\x00\x00\x08\x00\x00\x00o\'\x00\x00\x08\x00\x00\x00x\'\x00\x00\x07\x00\x00\x00\x81\'\x00\x00\x0c\x00\x00\x00\x89\'\x00\x00\x0e\x00\x00\x00\x96\'\x00\x00\x12\x00\x00\x00\xa5\'\x00\x00\x05\x00\x00\x00\xb8\'\x00\x00\x08\x00\x00\x00\xbe\'\x00\x00\x0c\x00\x00\x00\xc7\'\x00\x00\n\x00\x00\x00\xd4\'\x00\x00\x0e\x00\x00\x00\xdf\'\x00\x00\x03\x00\x00\x00\xee\'\x00\x001\x00\x00\x00\xf2\'\x00\x00"\x00\x00\x00$(\x00\x00=\x00\x00\x00G(\x00\x00\x18\x00\x00\x00\x85(\x00\x00+\x00\x00\x00\x9e(\x00\x00\x00\x02\x00\x00\xca(\x00\x00\xa3\x01\x00\x00\xcb*\x00\x00|\x02\x00\x00o,\x00\x00>\x00\x00\x00\xec.\x00\x00S\x00\x00\x00+/\x00\x005\x00\x00\x00\x7f/\x00\x00p\x00\x00\x00\xb5/\x00\x00a\x00\x00\x00&0\x00\x00G\x00\x00\x00\x880\x00\x00(\x00\x00\x00\xd00\x00\x00\xa7\x00\x00\x00\xf90\x00\x00W\x00\x00\x00\xa11\x00\x00\x96\x00\x00\x00\xf91\x00\x00=\x01\x00\x00\x902\x00\x002\x00\x00\x00\xce3\x00\x00T\x00\x00\x00\x014\x00\x00\x01\x00\x00\x00V4\x00\x00C\x00\x00\x00X4\x00\x00X\x00\x00\x00\x9c4\x00\x00\r\x00\x00\x00\xf54\x00\x00\x0f\x00\x00\x00\x035\x00\x00\x0b\x00\x00\x00\x135\x00\x00\x0b\x00\x00\x00\x1f5\x00\x00\x18\x00\x00\x00+5\x00\x007\x00\x00\x00D5\x00\x004\x00\x00\x00|5\x00\x00.\x00\x00\x00\xb15\x00\x00\t\x00\x00\x00\xe05\x00\x00!\x00\x00\x00\xea5\x00\x00b\x00\x00\x00\x0c6\x00\x00o\x00\x00\x00o6\x00\x00\x16\x00\x00\x00\xdf6\x00\x00\x12\x00\x00\x00\xf66\x00\x006\x00\x00\x00\t7\x00\x00\x12\x00\x00\x00@7\x00\x00m\x00\x00\x00S7\x00\x00\x08\x00\x00\x00\xc17\x00\x00\x0f\x00\x00\x00\xca7\x00\x00\x0f\x00\x00\x00\xda7\x00\x00\x0e\x00\x00\x00\xea7\x00\x00\x05\x00\x00\x00\xf97\x00\x00F\x00\x00\x00\xff7\x00\x00\x03\x00\x00\x00F8\x00\x005\x01\x00\x00J8\x00\x00\x19\x00\x00\x00\x809\x00\x00\x1b\x00\x00\x00\x9a9\x00\x00\x16\x00\x00\x00\xb69\x00\x00\x06\x00\x00\x00\xcd9\x00\x00\x0e\x00\x00\x00\xd49\x00\x00\r\x00\x00\x00\xe39\x00\x00\t\x00\x00\x00\xf19\x00\x00\x08\x00\x00\x00\xfb9\x00\x00\x11\x00\x00\x00\x04:\x00\x00\x16\x00\x00\x00\x16:\x00\x00\x04\x00\x00\x00-:\x00\x00\r\x00\x00\x002:\x00\x00\x10\x00\x00\x00@:\x00\x00;\x00\x00\x00Q:\x00\x00\x05\x00\x00\x00\x8d:\x00\x00!\x00\x00\x00\x93:\x00\x00\x10\x00\x00\x00\xb5:\x00\x00\x1b\x00\x00\x00\xc6:\x00\x00\x05\x00\x00\x00\xe2:\x00\x00(\x00\x00\x00\xe8:\x00\x00\n\x00\x00\x00\x11;\x00\x00.\x00\x00\x00\x1c;\x00\x005\x00\x00\x00K;\x00\x00$\x00\x00\x00\x81;\x00\x00\x0c\x00\x00\x00\xa6;\x00\x00\x1a\x00\x00\x00\xb3;\x00\x00\x19\x00\x00\x00\xce;\x00\x00\x10\x00\x00\x00\xe8;\x00\x00.\x00\x00\x00\xf9;\x00\x00\x0e\x00\x00\x00(<\x00\x00\x0e\x00\x00\x007<\x00\x007\x00\x00\x00F<\x00\x00\x14\x00\x00\x00~<\x00\x00\x12\x00\x00\x00\x93<\x00\x00#\x00\x00\x00\xa6<\x00\x00\x0f\x00\x00\x00\xca<\x00\x00Z\x00\x00\x00\xda<\x00\x00\x19\x00\x00\x005=\x00\x00\x0b\x00\x00\x00O=\x00\x00\x14\x00\x00\x00[=\x00\x00\x13\x00\x00\x00p=\x00\x00\x0b\x00\x00\x00\x84=\x00\x00\x11\x00\x00\x00\x90=\x00\x00\x08\x00\x00\x00\xa2=\x00\x00\x14\x00\x00\x00\xab=\x00\x00\x0f\x00\x00\x00\xc0=\x00\x00R\x00\x00\x00\xd0=\x00\x00!\x00\x00\x00#>\x00\x00\x1d\x00\x00\x00E>\x00\x00H\x00\x00\x00c>\x00\x00\x11\x00\x00\x00\xac>\x00\x00\r\x00\x00\x00\xbe>\x00\x00%\x00\x00\x00\xcc>\x00\x00\x19\x00\x00\x00\xf2>\x00\x00!\x00\x00\x00\x0c?\x00\x007\x00\x00\x00.?\x00\x00\x08\x00\x00\x00f?\x00\x00+\x00\x00\x00o?\x00\x00\r\x00\x00\x00\x9b?\x00\x00\r\x00\x00\x00\xa9?\x00\x00\t\x00\x00\x00\xb7?\x00\x00\x10\x00\x00\x00\xc1?\x00\x00\x11\x00\x00\x00\xd2?\x00\x00\x0f\x00\x00\x00\xe4?\x00\x00)\x00\x00\x00\xf4?\x00\x00\x14\x00\x00\x00\x1e@\x00\x00\x0e\x00\x00\x003@\x00\x00\x0e\x00\x00\x00B@\x00\x00\x1c\x00\x00\x00Q@\x00\x00;\x00\x00\x00n@\x00\x00\x15\x00\x00\x00\xaa@\x00\x00R\x00\x00\x00\xc0@\x00\x00\x17\x00\x00\x00\x13A\x00\x00\x18\x00\x00\x00+A\x00\x00\x1e\x00\x00\x00DA\x00\x00\x1e\x00\x00\x00cA\x00\x00\x0e\x00\x00\x00\x82A\x00\x00\x0b\x00\x00\x00\x91A\x00\x00\x0f\x00\x00\x00\x9dA\x00\x00\x13\x00\x00\x00\xadA\x00\x00\x04\x00\x00\x00\xc1A\x00\x00\x19\x00\x00\x00\xc6A\x00\x00\x03\x00\x00\x00\xe0A\x00\x00h\x00\x00\x00\xe4A\x00\x00\x0e\x00\x00\x00MB\x00\x00\x19\x00\x00\x00\\B\x00\x00 \x00\x00\x00vB\x00\x00\x1b\x00\x00\x00\x97B\x00\x00\x1a\x00\x00\x00\xb3B\x00\x00&\x00\x00\x00\xceB\x00\x00\x11\x00\x00\x00\xf5B\x00\x00\x19\x00\x00\x00\x07C\x00\x00\x11\x00\x00\x00!C\x00\x00\x01\x00\x00\x003C\x00\x00\x05\x00\x00\x005C\x00\x00\x15\x00\x00\x00;C\x00\x00\x15\x00\x00\x00QC\x00\x00\x15\x00\x00\x00gC\x00\x00\x15\x00\x00\x00}C\x00\x00\x1a\x00\x00\x00\x93C\x00\x00\x0e\x00\x00\x00\xaeC\x00\x00\x1f\x00\x00\x00\xbdC\x00\x00C\x00\x00\x00\xddC\x00\x00\x05\x00\x00\x00!D\x00\x00\x1f\x00\x00\x00\'D\x00\x00\x12\x00\x00\x00GD\x00\x00\x17\x00\x00\x00ZD\x00\x00\x1f\x00\x00\x00rD\x00\x00\'\x00\x00\x00\x92D\x00\x003\x00\x00\x00\xbaD\x00\x00*\x00\x00\x00\xeeD\x00\x00\x1a\x00\x00\x00\x19E\x00\x00\x1a\x00\x00\x004E\x00\x00\n\x00\x00\x00OE\x00\x00\x14\x00\x00\x00ZE\x00\x00\x16\x00\x00\x00oE\x00\x00\x16\x00\x00\x00\x86E\x00\x00\x0f\x00\x00\x00\x9dE\x00\x00\x05\x00\x00\x00\xadE\x00\x00\x1d\x00\x00\x00\xb3E\x00\x00\x0e\x00\x00\x00\xd1E\x00\x00\x1a\x00\x00\x00\xe0E\x00\x00\n\x00\x00\x00\xfbE\x00\x00\x10\x00\x00\x00\x06F\x00\x00\r\x00\x00\x00\x17F\x00\x00\x11\x00\x00\x00%F\x00\x00\x1f\x00\x00\x007F\x00\x00\x13\x00\x00\x00WF\x00\x00\x1b\x00\x00\x00kF\x00\x00\x05\x00\x00\x00\x87F\x00\x00\x0b\x00\x00\x00\x8dF\x00\x008\x00\x00\x00\x99F\x00\x00\x08\x00\x00\x00\xd2F\x00\x00\x88\x00\x00\x00\xdbF\x00\x00\x1d\x01\x00\x00dG\x00\x00J\x00\x00\x00\x82H\x00\x00#\x00\x00\x00\xcdH\x00\x00\x04\x00\x00\x00\xf1H\x00\x00\x06\x00\x00\x00\xf6H\x00\x00\x07\x00\x00\x00\xfdH\x00\x00\x07\x00\x00\x00\x05I\x00\x00\'\x00\x00\x00\rI\x00\x00\x1b\x00\x00\x005I\x00\x00\x19\x00\x00\x00QI\x00\x00\x06\x00\x00\x00kI\x00\x00\x0c\x00\x00\x00rI\x00\x00\t\x00\x00\x00\x7fI\x00\x00\x06\x00\x00\x00\x89I\x00\x00\xdc\x01\x00\x00\x90I\x00\x00n\x00\x00\x00mK\x00\x00a\x00\x00\x00\xdcK\x00\x00\x0e\x00\x00\x00>L\x00\x00\x0e\x00\x00\x00ML\x00\x00\xa8\x00\x00\x00\\L\x00\x00&\x00\x00\x00\x05M\x00\x00\x10\x00\x00\x00,M\x00\x00\x19\x00\x00\x00=M\x00\x00\x1a\x00\x00\x00WM\x00\x00.\x00\x00\x00rM\x00\x00\r\x00\x00\x00\xa1M\x00\x00\x1a\x00\x00\x00\xafM\x00\x00\x1e\x00\x00\x00\xcaM\x00\x00\x03\x00\x00\x00\xe9M\x00\x00\x12\x00\x00\x00\xedM\x00\x00\x05\x00\x00\x00\x00N\x00\x00\n\x00\x00\x00\x06N\x00\x00\x0f\x00\x00\x00\x11N\x00\x00,\x00\x00\x00!N\x00\x00\x07\x00\x00\x00NN\x00\x00-\x00\x00\x00VN\x00\x00\x0b\x00\x00\x00\x84N\x00\x00$\x00\x00\x00\x90N\x00\x00$\x00\x00\x00\xb5N\x00\x00\x07\x00\x00\x00\xdaN\x00\x000\x00\x00\x00\xe2N\x00\x00S\x00\x00\x00\x13O\x00\x00\x10\x00\x00\x00gO\x00\x00\x08\x00\x00\x00xO\x00\x00y\x00\x00\x00\x81O\x00\x00\x10\x00\x00\x00\xfbO\x00\x00N\x00\x00\x00\x0cP\x00\x00`\x00\x00\x00[P\x00\x00\x04\x00\x00\x00\xbcP\x00\x00\x06\x00\x00\x00\xc1P\x00\x00"\x00\x00\x00\xc8P\x00\x00\t\x00\x00\x00\xebP\x00\x00\n\x00\x00\x00\xf5P\x00\x00\x14\x00\x00\x00\x00Q\x00\x00\x10\x00\x00\x00\x15Q\x00\x00\x11\x00\x00\x00&Q\x00\x00\x1d\x00\x00\x008Q\x00\x00\x16\x00\x00\x00VQ\x00\x00\x08\x00\x00\x00mQ\x00\x00\x10\x00\x00\x00vQ\x00\x00\x12\x00\x00\x00\x87Q\x00\x00\x04\x00\x00\x00\x9aQ\x00\x00^\x00\x00\x00\x9fQ\x00\x00\x14\x00\x00\x00\xfeQ\x00\x00\xdc\x00\x00\x00\x13R\x00\x00\x0f\x00\x00\x00\xf0R\x00\x00\n\x00\x00\x00\x00S\x00\x00\x07\x00\x00\x00\x0bS\x00\x00-\x00\x00\x00\x13S\x00\x00+\x00\x00\x00AS\x00\x00F\x00\x00\x00mS\x00\x00\x0f\x00\x00\x00\xb4S\x00\x000\x00\x00\x00\xc4S\x00\x008\x00\x00\x00\xf5S\x00\x00s\x00\x00\x00.T\x00\x00\x0f\x00\x00\x00\xa2T\x00\x00\n\x00\x00\x00\xb2T\x00\x00\x10\x00\x00\x00\xbdT\x00\x00\x0e\x00\x00\x00\xceT\x00\x00:\x00\x00\x00\xddT\x00\x00\x0f\x00\x00\x00\x18U\x00\x00\x04\x00\x00\x00(U\x00\x00;\x00\x00\x00-U\x00\x00G\x00\x00\x00iU\x00\x001\x00\x00\x00\xb1U\x00\x00Y\x00\x00\x00\xe3U\x00\x00\x13\x00\x00\x00=V\x00\x004\x00\x00\x00QV\x00\x00\x80\x00\x00\x00\x86V\x00\x00H\x00\x00\x00\x07W\x00\x00\r\x00\x00\x00PW\x00\x00(\x00\x00\x00^W\x00\x00\r\x00\x00\x00\x87W\x00\x00\xbc\x00\x00\x00\x95W\x00\x00\x08\x00\x00\x00RX\x00\x00\t\x00\x00\x00[X\x00\x00\x06\x00\x00\x00eX\x00\x00\x1e\x00\x00\x00lX\x00\x00\x16\x00\x00\x00\x8bX\x00\x00\x13\x00\x00\x00\xa2X\x00\x00\x0e\x00\x00\x00\xb6X\x00\x00\x1b\x00\x00\x00\xc5X\x00\x00\x13\x00\x00\x00\xe1X\x00\x00+\x00\x00\x00\xf5X\x00\x00*\x00\x00\x00!Y\x00\x000\x00\x00\x00LY\x00\x00)\x00\x00\x00}Y\x00\x00<\x00\x00\x00\xa7Y\x00\x00\x0c\x00\x00\x00\xe4Y\x00\x00\x17\x00\x00\x00\xf1Y\x00\x00<\x00\x00\x00\tZ\x00\x000\x00\x00\x00FZ\x00\x00\x84\x00\x00\x00wZ\x00\x00X\x00\x00\x00\xfcZ\x00\x00\x0f\x00\x00\x00U[\x00\x00\x12\x00\x00\x00e[\x00\x00-\x00\x00\x00x[\x00\x00\x0c\x00\x00\x00\xa6[\x00\x00\x0c\x00\x00\x00\xb3[\x00\x00\x0c\x00\x00\x00\xc0[\x00\x00"\x00\x00\x00\xcd[\x00\x009\x00\x00\x00\xf0[\x00\x00\x0f\x00\x00\x00*\\\x00\x00V\x00\x00\x00:\\\x00\x00r\x00\x00\x00\x91\\\x00\x00G\x00\x00\x00\x04]\x00\x00\'\x00\x00\x00L]\x00\x00\x0e\x00\x00\x00t]\x00\x00\x13\x00\x00\x00\x83]\x00\x00\x14\x00\x00\x00\x97]\x00\x00#\x00\x00\x00\xac]\x00\x00\x06\x00\x00\x00\xd0]\x00\x00\r\x00\x00\x00\xd7]\x00\x00\r\x00\x00\x00\xe5]\x00\x00\x07\x00\x00\x00\xf3]\x00\x00\x1e\x00\x00\x00\xfb]\x00\x00\x0b\x00\x00\x00\x1a^\x00\x00\x17\x00\x00\x00&^\x00\x00\x1b\x00\x00\x00>^\x00\x00\x1a\x00\x00\x00Z^\x00\x00\x0e\x00\x00\x00u^\x00\x00^\x00\x00\x00\x84^\x00\x00\x0f\x00\x00\x00\xe3^\x00\x00\x12\x00\x00\x00\xf3^\x00\x00\x10\x00\x00\x00\x06_\x00\x00\x0f\x00\x00\x00\x17_\x00\x00\x10\x00\x00\x00\'_\x00\x00g\x00\x00\x008_\x00\x00c\x00\x00\x00\xa0_\x00\x007\x00\x00\x00\x04`\x00\x00!\x00\x00\x00<`\x00\x006\x00\x00\x00^`\x00\x00d\x00\x00\x00\x95`\x00\x00\t\x00\x00\x00\xfa`\x00\x00\x17\x00\x00\x00\x04a\x00\x00\x16\x00\x00\x00\x1ca\x00\x00\x11\x00\x00\x003a\x00\x00\x04\x01\x00\x00Ea\x00\x00z\x00\x00\x00Jb\x00\x00\x85\x00\x00\x00\xc5b\x00\x00\xb6\x00\x00\x00Kc\x00\x00\r\x01\x00\x00\x02d\x00\x00P\x00\x00\x00\x10e\x00\x00+\x01\x00\x00ae\x00\x00#\x00\x00\x00\x8df\x00\x00\x06\x00\x00\x00\xb1f\x00\x00\x17\x00\x00\x00\xb8f\x00\x00\x14\x00\x00\x00\xd0f\x00\x00\x07\x00\x00\x00\xe5f\x00\x00 \x00\x00\x00\xedf\x00\x00\x03\x00\x00\x00\x0eg\x00\x00\n\x00\x00\x00\x12g\x00\x00\x13\x00\x00\x00\x1dg\x00\x00\x04\x00\x00\x001g\x00\x00\x85\x00\x00\x006g\x00\x00\x04\x00\x00\x00\xbcg\x00\x00\t\x00\x00\x00\xc1g\x00\x00.\x00\x00\x00\xcbg\x00\x00%\x00\x00\x00\xfag\x00\x000\x00\x00\x00 h\x00\x00q\x00\x00\x00Qh\x00\x00X\x00\x00\x00\xc3h\x00\x00\x1b\x00\x00\x00\x1ci\x00\x00\x1a\x00\x00\x008i\x00\x00k\x00\x00\x00Si\x00\x00\x9d\x00\x00\x00\xbfi\x00\x00&\x00\x00\x00]j\x00\x00\x1e\x00\x00\x00\x84j\x00\x00(\x00\x00\x00\xa3j\x00\x00v\x00\x00\x00\xccj\x00\x00\'\x00\x00\x00Ck\x00\x00"\x00\x00\x00kk\x00\x00B\x00\x00\x00\x8ek\x00\x00^\x00\x00\x00\xd1k\x00\x00$\x00\x00\x000l\x00\x00h\x00\x00\x00Ul\x00\x00.\x00\x00\x00\xbel\x00\x00N\x00\x00\x00\xedl\x00\x00\t\x00\x00\x00<m\x00\x00\x05\x00\x00\x00Fm\x00\x00\x15\x00\x00\x00Lm\x00\x00\x06\x00\x00\x00bm\x00\x00+\x00\x00\x00im\x00\x00\x1b\x00\x00\x00\x95m\x00\x00%\x00\x00\x00\xb1m\x00\x00#\x00\x00\x00\xd7m\x00\x00&\x00\x00\x00\xfbm\x00\x00\x0b\x00\x00\x00"n\x00\x00\x07\x00\x00\x00.n\x00\x00\x13\x00\x00\x006n\x00\x00\x0c\x00\x00\x00Jn\x00\x00\x10\x00\x00\x00Wn\x00\x00\x10\x00\x00\x00hn\x00\x00\x06\x00\x00\x00yn\x00\x00]\x00\x00\x00\x80n\x00\x00\xdb\x00\x00\x00\xden\x00\x00K\x00\x00\x00\xbao\x00\x00Q\x00\x00\x00\x06p\x00\x00\x12\x00\x00\x00Xp\x00\x00\x18\x00\x00\x00kp\x00\x00%\x00\x00\x00\x84p\x00\x00\x1b\x00\x00\x00\xaap\x00\x00\xb4\x00\x00\x00\xc6p\x00\x002\x00\x00\x00{q\x00\x00\x14\x00\x00\x00\xaeq\x00\x00_\x00\x00\x00\xc3q\x00\x00:\x00\x00\x00#r\x00\x00\x12\x00\x00\x00^r\x00\x00*\x00\x00\x00qr\x00\x00\x04\x00\x00\x00\x9cr\x00\x00\x14\x00\x00\x00\xa1r\x00\x00\x07\x00\x00\x00\xb6r\x00\x00\x07\x00\x00\x00\xber\x00\x00\x1d\x00\x00\x00\xc6r\x00\x00-\x00\x00\x00\xe4r\x00\x00R\x00\x00\x00\x12s\x00\x00d\x00\x00\x00es\x00\x00#\x00\x00\x00\xcas\x00\x002\x00\x00\x00\xees\x00\x003\x00\x00\x00!t\x00\x00\xdf\x00\x00\x00Ut\x00\x00\x07\x00\x00\x005u\x00\x00\x08\x00\x00\x00=u\x00\x00\x0b\x00\x00\x00Fu\x00\x00\x1c\x01\x00\x00Ru\x00\x00)\x00\x00\x00ov\x00\x00\x1d\x00\x00\x00\x99v\x00\x00\x17\x00\x00\x00\xb7v\x00\x00 \x00\x00\x00\xcfv\x00\x00\x13\x00\x00\x00\xf0v\x00\x00e\x00\x00\x00\x04w\x00\x00\\\x01\x00\x00jw\x00\x00\x1d\x00\x00\x00\xc7x\x00\x00\x05\x00\x00\x00\xe5x\x00\x00\x04\x00\x00\x00\xebx\x00\x00\x1a\x00\x00\x00\xf0x\x00\x00\x10\x00\x00\x00\x0by\x00\x00\x06\x00\x00\x00\x1cy\x00\x00\n\x00\x00\x00#y\x00\x00\t\x00\x00\x00.y\x00\x00\t\x00\x00\x008y\x00\x00+\x02\x00\x00By\x00\x00)\x00\x00\x00n{\x00\x00F\x00\x00\x00\x98{\x00\x00T\x00\x00\x00\xdf{\x00\x00P\x00\x00\x004|\x00\x00P\x00\x00\x00\x85|\x00\x00P\x00\x00\x00\xd6|\x00\x00\x1e\x00\x00\x00\'}\x00\x00U\x00\x00\x00F}\x00\x00"\x00\x00\x00\x9c}\x00\x00\x12\x00\x00\x00\xbf}\x00\x00\x0f\x00\x00\x00\xd2}\x00\x00\x0e\x00\x00\x00\xe2}\x00\x00\x12\x00\x00\x00\xf1}\x00\x00\n\x00\x00\x00\x04~\x00\x00\x10\x00\x00\x00\x0f~\x00\x00\x15\x00\x00\x00 ~\x00\x00$\x00\x00\x006~\x00\x00\x0c\x00\x00\x00[~\x00\x00-\x00\x00\x00h~\x00\x00\x19\x00\x00\x00\x96~\x00\x00\x10\x00\x00\x00\xb0~\x00\x00,\x00\x00\x00\xc1~\x00\x00&\x00\x00\x00\xee~\x00\x00\x1e\x00\x00\x00\x15\x7f\x00\x00\x0e\x00\x00\x004\x7f\x00\x00\x13\x00\x00\x00C\x7f\x00\x00.\x00\x00\x00W\x7f\x00\x00\r\x00\x00\x00\x86\x7f\x00\x00\x11\x00\x00\x00\x94\x7f\x00\x00(\x00\x00\x00\xa6\x7f\x00\x00\x08\x00\x00\x00\xcf\x7f\x00\x00\x0b\x00\x00\x00\xd8\x7f\x00\x00\x0c\x00\x00\x00\xe4\x7f\x00\x00\x14\x00\x00\x00\xf1\x7f\x00\x00\x11\x00\x00\x00\x06\x80\x00\x00\x15\x00\x00\x00\x18\x80\x00\x00\x0c\x00\x00\x00.\x80\x00\x00\t\x00\x00\x00;\x80\x00\x00\t\x00\x00\x00E\x80\x00\x00\x07\x00\x00\x00O\x80\x00\x00\x13\x00\x00\x00W\x80\x00\x00\x12\x00\x00\x00k\x80\x00\x00\x1e\x00\x00\x00~\x80\x00\x00\x05\x00\x00\x00\x9d\x80\x00\x00\n\x00\x00\x00\xa3\x80\x00\x00\x10\x00\x00\x00\xae\x80\x00\x00\x0e\x00\x00\x00\xbf\x80\x00\x00\x19\x00\x00\x00\xce\x80\x00\x00\x03\x00\x00\x00\xe8\x80\x00\x00/\x00\x00\x00\xec\x80\x00\x00)\x00\x00\x00\x1c\x81\x00\x00>\x00\x00\x00F\x81\x00\x00\x1e\x00\x00\x00\x85\x81\x00\x00-\x00\x00\x00\xa4\x81\x00\x00M\x02\x00\x00\xd2\x81\x00\x00\xa3\x01\x00\x00 \x84\x00\x00\x86\x02\x00\x00\xc4\x85\x00\x00>\x00\x00\x00K\x88\x00\x00L\x00\x00\x00\x8a\x88\x00\x004\x00\x00\x00\xd7\x88\x00\x00\x90\x00\x00\x00\x0c\x89\x00\x00\x86\x00\x00\x00\x9d\x89\x00\x00D\x00\x00\x00$\x8a\x00\x00/\x00\x00\x00i\x8a\x00\x00\xcd\x00\x00\x00\x99\x8a\x00\x00\x7f\x00\x00\x00g\x8b\x00\x00\xcd\x00\x00\x00\xe7\x8b\x00\x00\xa4\x01\x00\x00\xb5\x8c\x00\x00&\x00\x00\x00Z\x8e\x00\x00T\x00\x00\x00\x81\x8e\x00\x00\x01\x00\x00\x00\xd6\x8e\x00\x00M\x00\x00\x00\xd8\x8e\x00\x00_\x00\x00\x00&\x8f\x00\x00\x16\x00\x00\x00\x86\x8f\x00\x00\x16\x00\x00\x00\x9d\x8f\x00\x00\x0f\x00\x00\x00\xb4\x8f\x00\x00\x18\x00\x00\x00\xc4\x8f\x00\x00/\x00\x00\x00\xdd\x8f\x00\x007\x00\x00\x00\r\x90\x00\x00I\x00\x00\x00E\x90\x00\x00;\x00\x00\x00\x8f\x90\x00\x00\x0f\x00\x00\x00\xcb\x90\x00\x003\x00\x00\x00\xdb\x90\x00\x00}\x00\x00\x00\x0f\x91\x00\x00\x98\x00\x00\x00\x8d\x91\x00\x00$\x00\x00\x00&\x92\x00\x00\x1b\x00\x00\x00K\x92\x00\x00Q\x00\x00\x00g\x92\x00\x00"\x00\x00\x00\xb9\x92\x00\x00m\x00\x00\x00\xdc\x92\x00\x00\t\x00\x00\x00J\x93\x00\x00\x10\x00\x00\x00T\x93\x00\x00\x10\x00\x00\x00e\x93\x00\x00\x10\x00\x00\x00v\x93\x00\x00\x05\x00\x00\x00\x87\x93\x00\x00^\x00\x00\x00\x8d\x93\x00\x00\t\x00\x00\x00\xec\x93\x00\x00_\x01\x00\x00\xf6\x93\x00\x00#\x00\x00\x00V\x95\x00\x00!\x00\x00\x00z\x95\x00\x00\x13\x00\x00\x00\x9c\x95\x00\x00\x05\x00\x00\x00\xb0\x95\x00\x00\x0f\x00\x00\x00\xb6\x95\x00\x00\x11\x00\x00\x00\xc6\x95\x00\x00\x08\x00\x00\x00\xd8\x95\x00\x00\x08\x00\x00\x00\xe1\x95\x00\x00\x13\x00\x00\x00\xea\x95\x00\x00\x1c\x00\x00\x00\xfe\x95\x00\x00\t\x00\x00\x00\x1b\x96\x00\x00\x15\x00\x00\x00%\x96\x00\x00\x1a\x00\x00\x00;\x96\x00\x00O\x00\x00\x00V\x96\x00\x00\x07\x00\x00\x00\xa6\x96\x00\x003\x00\x00\x00\xae\x96\x00\x00\x16\x00\x00\x00\xe2\x96\x00\x003\x00\x00\x00\xf9\x96\x00\x00\x07\x00\x00\x00-\x97\x00\x00*\x00\x00\x005\x97\x00\x00\x07\x00\x00\x00`\x97\x00\x007\x00\x00\x00h\x97\x00\x00?\x00\x00\x00\xa0\x97\x00\x00+\x00\x00\x00\xe0\x97\x00\x00\x0f\x00\x00\x00\x0c\x98\x00\x00%\x00\x00\x00\x1c\x98\x00\x00\'\x00\x00\x00B\x98\x00\x00\x14\x00\x00\x00j\x98\x00\x00/\x00\x00\x00\x7f\x98\x00\x00\x10\x00\x00\x00\xaf\x98\x00\x00\x13\x00\x00\x00\xc0\x98\x00\x009\x00\x00\x00\xd4\x98\x00\x00\x1c\x00\x00\x00\x0e\x99\x00\x00\x1c\x00\x00\x00+\x99\x00\x005\x00\x00\x00H\x99\x00\x00\x1d\x00\x00\x00~\x99\x00\x00g\x00\x00\x00\x9c\x99\x00\x00-\x00\x00\x00\x04\x9a\x00\x00\x10\x00\x00\x002\x9a\x00\x00\x1c\x00\x00\x00C\x9a\x00\x00\x14\x00\x00\x00`\x9a\x00\x00\x11\x00\x00\x00u\x9a\x00\x00\x1e\x00\x00\x00\x87\x9a\x00\x00\t\x00\x00\x00\xa6\x9a\x00\x00 \x00\x00\x00\xb0\x9a\x00\x00\x10\x00\x00\x00\xd1\x9a\x00\x00F\x00\x00\x00\xe2\x9a\x00\x00\x1d\x00\x00\x00)\x9b\x00\x00\x1d\x00\x00\x00G\x9b\x00\x00H\x00\x00\x00e\x9b\x00\x00\x18\x00\x00\x00\xae\x9b\x00\x00\x0c\x00\x00\x00\xc7\x9b\x00\x00#\x00\x00\x00\xd4\x9b\x00\x00\x1b\x00\x00\x00\xf8\x9b\x00\x00&\x00\x00\x00\x14\x9c\x00\x00J\x00\x00\x00;\x9c\x00\x00\n\x00\x00\x00\x86\x9c\x00\x00\'\x00\x00\x00\x91\x9c\x00\x00\x16\x00\x00\x00\xb9\x9c\x00\x00\r\x00\x00\x00\xd0\x9c\x00\x00\t\x00\x00\x00\xde\x9c\x00\x00\x12\x00\x00\x00\xe8\x9c\x00\x00\x13\x00\x00\x00\xfb\x9c\x00\x00\x11\x00\x00\x00\x0f\x9d\x00\x00<\x00\x00\x00!\x9d\x00\x00\x19\x00\x00\x00^\x9d\x00\x00\x0f\x00\x00\x00x\x9d\x00\x00\x13\x00\x00\x00\x88\x9d\x00\x00#\x00\x00\x00\x9c\x9d\x00\x00W\x00\x00\x00\xc0\x9d\x00\x00\x1c\x00\x00\x00\x18\x9e\x00\x00e\x00\x00\x005\x9e\x00\x00\x1d\x00\x00\x00\x9b\x9e\x00\x00"\x00\x00\x00\xb9\x9e\x00\x00$\x00\x00\x00\xdc\x9e\x00\x00#\x00\x00\x00\x01\x9f\x00\x00\x1e\x00\x00\x00%\x9f\x00\x00\n\x00\x00\x00D\x9f\x00\x00\x0f\x00\x00\x00O\x9f\x00\x00\x1f\x00\x00\x00_\x9f\x00\x00\x04\x00\x00\x00\x7f\x9f\x00\x00B\x00\x00\x00\x84\x9f\x00\x00\x07\x00\x00\x00\xc7\x9f\x00\x00r\x00\x00\x00\xcf\x9f\x00\x00\x14\x00\x00\x00B\xa0\x00\x00 \x00\x00\x00W\xa0\x00\x00$\x00\x00\x00x\xa0\x00\x00\x1b\x00\x00\x00\x9d\xa0\x00\x00!\x00\x00\x00\xb9\xa0\x00\x002\x00\x00\x00\xdb\xa0\x00\x00\x10\x00\x00\x00\x0e\xa1\x00\x00\x18\x00\x00\x00\x1f\xa1\x00\x00\x12\x00\x00\x008\xa1\x00\x00\x01\x00\x00\x00K\xa1\x00\x00\x05\x00\x00\x00M\xa1\x00\x00\x19\x00\x00\x00S\xa1\x00\x00\x17\x00\x00\x00m\xa1\x00\x00\x19\x00\x00\x00\x85\xa1\x00\x00\x18\x00\x00\x00\x9f\xa1\x00\x00\x1e\x00\x00\x00\xb8\xa1\x00\x00\x11\x00\x00\x00\xd7\xa1\x00\x00)\x00\x00\x00\xe9\xa1\x00\x00V\x00\x00\x00\x13\xa2\x00\x00\x06\x00\x00\x00j\xa2\x00\x00*\x00\x00\x00q\xa2\x00\x00\x15\x00\x00\x00\x9c\xa2\x00\x00"\x00\x00\x00\xb2\xa2\x00\x00"\x00\x00\x00\xd5\xa2\x00\x00,\x00\x00\x00\xf8\xa2\x00\x00:\x00\x00\x00%\xa3\x00\x00/\x00\x00\x00`\xa3\x00\x00)\x00\x00\x00\x90\xa3\x00\x00&\x00\x00\x00\xba\xa3\x00\x00\n\x00\x00\x00\xe1\xa3\x00\x00\x17\x00\x00\x00\xec\xa3\x00\x00\x1a\x00\x00\x00\x04\xa4\x00\x00$\x00\x00\x00\x1f\xa4\x00\x00\x11\x00\x00\x00D\xa4\x00\x00\x06\x00\x00\x00V\xa4\x00\x00$\x00\x00\x00]\xa4\x00\x00\x10\x00\x00\x00\x82\xa4\x00\x00!\x00\x00\x00\x93\xa4\x00\x00\x18\x00\x00\x00\xb5\xa4\x00\x00\x17\x00\x00\x00\xce\xa4\x00\x00\x0c\x00\x00\x00\xe6\xa4\x00\x00\x10\x00\x00\x00\xf3\xa4\x00\x00#\x00\x00\x00\x04\xa5\x00\x00\x17\x00\x00\x00(\xa5\x00\x00\x1d\x00\x00\x00@\xa5\x00\x00\x07\x00\x00\x00^\xa5\x00\x00\x0b\x00\x00\x00f\xa5\x00\x000\x00\x00\x00r\xa5\x00\x00\x06\x00\x00\x00\xa3\xa5\x00\x00\xc1\x00\x00\x00\xaa\xa5\x00\x00%\x01\x00\x00l\xa6\x00\x00]\x00\x00\x00\x92\xa7\x00\x00.\x00\x00\x00\xf0\xa7\x00\x00\x03\x00\x00\x00\x1f\xa8\x00\x00\x06\x00\x00\x00#\xa8\x00\x00\x07\x00\x00\x00*\xa8\x00\x00\x08\x00\x00\x002\xa8\x00\x004\x00\x00\x00;\xa8\x00\x00#\x00\x00\x00p\xa8\x00\x00\x1e\x00\x00\x00\x94\xa8\x00\x00\n\x00\x00\x00\xb3\xa8\x00\x00\x13\x00\x00\x00\xbe\xa8\x00\x00\x11\x00\x00\x00\xd2\xa8\x00\x00\x06\x00\x00\x00\xe4\xa8\x00\x00\xf1\x01\x00\x00\xeb\xa8\x00\x00\x8f\x00\x00\x00\xdd\xaa\x00\x00o\x00\x00\x00m\xab\x00\x00\x16\x00\x00\x00\xdd\xab\x00\x00\x12\x00\x00\x00\xf4\xab\x00\x00\xc7\x00\x00\x00\x07\xac\x00\x00*\x00\x00\x00\xcf\xac\x00\x00\x14\x00\x00\x00\xfa\xac\x00\x00)\x00\x00\x00\x0f\xad\x00\x00)\x00\x00\x009\xad\x00\x00@\x00\x00\x00c\xad\x00\x00\x12\x00\x00\x00\xa4\xad\x00\x00\x1f\x00\x00\x00\xb7\xad\x00\x00#\x00\x00\x00\xd7\xad\x00\x00\x07\x00\x00\x00\xfb\xad\x00\x00"\x00\x00\x00\x03\xae\x00\x00\t\x00\x00\x00&\xae\x00\x00\t\x00\x00\x000\xae\x00\x00\x12\x00\x00\x00:\xae\x00\x007\x00\x00\x00M\xae\x00\x00\n\x00\x00\x00\x85\xae\x00\x007\x00\x00\x00\x90\xae\x00\x00\t\x00\x00\x00\xc8\xae\x00\x003\x00\x00\x00\xd2\xae\x00\x009\x00\x00\x00\x06\xaf\x00\x00\x0e\x00\x00\x00@\xaf\x00\x001\x00\x00\x00O\xaf\x00\x00i\x00\x00\x00\x81\xaf\x00\x00\x10\x00\x00\x00\xeb\xaf\x00\x00\t\x00\x00\x00\xfc\xaf\x00\x00\x84\x00\x00\x00\x06\xb0\x00\x00\x17\x00\x00\x00\x8b\xb0\x00\x00e\x00\x00\x00\xa3\xb0\x00\x00y\x00\x00\x00\t\xb1\x00\x00\x04\x00\x00\x00\x83\xb1\x00\x00\n\x00\x00\x00\x88\xb1\x00\x006\x00\x00\x00\x93\xb1\x00\x00\x10\x00\x00\x00\xca\xb1\x00\x00\x16\x00\x00\x00\xdb\xb1\x00\x00\x16\x00\x00\x00\xf2\xb1\x00\x00\x16\x00\x00\x00\t\xb2\x00\x00\x16\x00\x00\x00 \xb2\x00\x00(\x00\x00\x007\xb2\x00\x00\x19\x00\x00\x00`\xb2\x00\x00\x0c\x00\x00\x00z\xb2\x00\x00\x1e\x00\x00\x00\x87\xb2\x00\x00\x19\x00\x00\x00\xa6\xb2\x00\x00\x03\x00\x00\x00\xc0\xb2\x00\x00_\x00\x00\x00\xc4\xb2\x00\x00\x15\x00\x00\x00$\xb3\x00\x00\xf6\x00\x00\x00:\xb3\x00\x00\x18\x00\x00\x001\xb4\x00\x00\x0c\x00\x00\x00J\xb4\x00\x00\x07\x00\x00\x00W\xb4\x00\x00\x1d\x00\x00\x00_\xb4\x00\x00\x1b\x00\x00\x00}\xb4\x00\x00H\x00\x00\x00\x99\xb4\x00\x00\x11\x00\x00\x00\xe2\xb4\x00\x00=\x00\x00\x00\xf4\xb4\x00\x00D\x00\x00\x002\xb5\x00\x00\x96\x00\x00\x00w\xb5\x00\x00\x12\x00\x00\x00\x0e\xb6\x00\x00\x1b\x00\x00\x00!\xb6\x00\x00\x1e\x00\x00\x00=\xb6\x00\x00\x12\x00\x00\x00\\\xb6\x00\x00J\x00\x00\x00o\xb6\x00\x00\x1d\x00\x00\x00\xba\xb6\x00\x00\x05\x00\x00\x00\xd8\xb6\x00\x00<\x00\x00\x00\xde\xb6\x00\x00F\x00\x00\x00\x1b\xb7\x00\x008\x00\x00\x00b\xb7\x00\x00r\x00\x00\x00\x9b\xb7\x00\x00\x12\x00\x00\x00\x0e\xb8\x00\x00H\x00\x00\x00!\xb8\x00\x00o\x00\x00\x00j\xb8\x00\x00T\x00\x00\x00\xda\xb8\x00\x00\x10\x00\x00\x00/\xb9\x00\x00;\x00\x00\x00@\xb9\x00\x00\r\x00\x00\x00|\xb9\x00\x00\xc0\x00\x00\x00\x8a\xb9\x00\x00\x0b\x00\x00\x00K\xba\x00\x00\t\x00\x00\x00W\xba\x00\x00\n\x00\x00\x00a\xba\x00\x00"\x00\x00\x00l\xba\x00\x00!\x00\x00\x00\x8f\xba\x00\x00"\x00\x00\x00\xb1\xba\x00\x00\x13\x00\x00\x00\xd4\xba\x00\x00 \x00\x00\x00\xe8\xba\x00\x00\x14\x00\x00\x00\t\xbb\x00\x00-\x00\x00\x00\x1e\xbb\x00\x00-\x00\x00\x00L\xbb\x00\x002\x00\x00\x00z\xbb\x00\x00+\x00\x00\x00\xad\xbb\x00\x008\x00\x00\x00\xd9\xbb\x00\x00\x11\x00\x00\x00\x12\xbc\x00\x00\x1d\x00\x00\x00$\xbc\x00\x00I\x00\x00\x00B\xbc\x00\x001\x00\x00\x00\x8c\xbc\x00\x00\x94\x00\x00\x00\xbe\xbc\x00\x00N\x00\x00\x00S\xbd\x00\x00\x10\x00\x00\x00\xa2\xbd\x00\x00 \x00\x00\x00\xb3\xbd\x00\x003\x00\x00\x00\xd4\xbd\x00\x00\x08\x00\x00\x00\x08\xbe\x00\x00\x0c\x00\x00\x00\x11\xbe\x00\x00\x0c\x00\x00\x00\x1e\xbe\x00\x004\x00\x00\x00+\xbe\x00\x00=\x00\x00\x00`\xbe\x00\x00\r\x00\x00\x00\x9e\xbe\x00\x00c\x00\x00\x00\xac\xbe\x00\x00\x8d\x00\x00\x00\x10\xbf\x00\x00D\x00\x00\x00\x9e\xbf\x00\x000\x00\x00\x00\xe3\xbf\x00\x00\x13\x00\x00\x00\x14\xc0\x00\x00\x1b\x00\x00\x00(\xc0\x00\x00\x1e\x00\x00\x00D\xc0\x00\x00+\x00\x00\x00c\xc0\x00\x00\x07\x00\x00\x00\x8f\xc0\x00\x00\x11\x00\x00\x00\x97\xc0\x00\x00\r\x00\x00\x00\xa9\xc0\x00\x00\x07\x00\x00\x00\xb7\xc0\x00\x005\x00\x00\x00\xbf\xc0\x00\x00(\x00\x00\x00\xf5\xc0\x00\x00(\x00\x00\x00\x1e\xc1\x00\x00\'\x00\x00\x00G\xc1\x00\x00*\x00\x00\x00o\xc1\x00\x00\x10\x00\x00\x00\x9a\xc1\x00\x00d\x00\x00\x00\xab\xc1\x00\x00\x10\x00\x00\x00\x10\xc2\x00\x00\x1a\x00\x00\x00!\xc2\x00\x00\x16\x00\x00\x00<\xc2\x00\x00\x12\x00\x00\x00S\xc2\x00\x00\x18\x00\x00\x00f\xc2\x00\x00\x95\x00\x00\x00\x7f\xc2\x00\x00k\x00\x00\x00\x15\xc3\x00\x00;\x00\x00\x00\x81\xc3\x00\x00/\x00\x00\x00\xbd\xc3\x00\x00@\x00\x00\x00\xed\xc3\x00\x00m\x00\x00\x00.\xc4\x00\x00\x0f\x00\x00\x00\x9c\xc4\x00\x00\x1a\x00\x00\x00\xac\xc4\x00\x00\x1d\x00\x00\x00\xc7\xc4\x00\x00\x1c\x00\x00\x00\xe5\xc4\x00\x00\x1c\x01\x00\x00\x02\xc5\x00\x00}\x00\x00\x00\x1f\xc6\x00\x00\x8e\x00\x00\x00\x9d\xc6\x00\x00\xc5\x00\x00\x00,\xc7\x00\x00]\x01\x00\x00\xf2\xc7\x00\x00m\x00\x00\x00P\xc9\x00\x00e\x01\x00\x00\xbe\xc9\x00\x00%\x00\x00\x00$\xcb\x00\x00\x05\x00\x00\x00J\xcb\x00\x00\x1f\x00\x00\x00P\xcb\x00\x00\x18\x00\x00\x00p\xcb\x00\x00\x0b\x00\x00\x00\x89\xcb\x00\x00(\x00\x00\x00\x95\xcb\x00\x00\x07\x00\x00\x00\xbe\xcb\x00\x00\x10\x00\x00\x00\xc6\xcb\x00\x00\x1b\x00\x00\x00\xd7\xcb\x00\x00\t\x00\x00\x00\xf3\xcb\x00\x00\x91\x00\x00\x00\xfd\xcb\x00\x00\x04\x00\x00\x00\x8f\xcc\x00\x00\t\x00\x00\x00\x94\xcc\x00\x00=\x00\x00\x00\x9e\xcc\x00\x00\x1f\x00\x00\x00\xdc\xcc\x00\x00<\x00\x00\x00\xfc\xcc\x00\x00~\x00\x00\x009\xcd\x00\x00l\x00\x00\x00\xb8\xcd\x00\x00\x1a\x00\x00\x00%\xce\x00\x00\x1a\x00\x00\x00@\xce\x00\x00z\x00\x00\x00[\xce\x00\x00\x9e\x00\x00\x00\xd6\xce\x00\x004\x00\x00\x00u\xcf\x00\x00#\x00\x00\x00\xaa\xcf\x00\x00%\x00\x00\x00\xce\xcf\x00\x00\x91\x00\x00\x00\xf4\xcf\x00\x001\x00\x00\x00\x86\xd0\x00\x00,\x00\x00\x00\xb8\xd0\x00\x00^\x00\x00\x00\xe5\xd0\x00\x00s\x00\x00\x00D\xd1\x00\x00\x1f\x00\x00\x00\xb8\xd1\x00\x00|\x00\x00\x00\xd8\xd1\x00\x005\x00\x00\x00U\xd2\x00\x00W\x00\x00\x00\x8b\xd2\x00\x00\x0e\x00\x00\x00\xe3\xd2\x00\x00\x08\x00\x00\x00\xf2\xd2\x00\x00\x1f\x00\x00\x00\xfb\xd2\x00\x00\x06\x00\x00\x00\x1b\xd3\x00\x007\x00\x00\x00"\xd3\x00\x00!\x00\x00\x00Z\xd3\x00\x00,\x00\x00\x00|\xd3\x00\x00/\x00\x00\x00\xa9\xd3\x00\x00$\x00\x00\x00\xd9\xd3\x00\x00\r\x00\x00\x00\xfe\xd3\x00\x00\n\x00\x00\x00\x0c\xd4\x00\x00\x1b\x00\x00\x00\x17\xd4\x00\x00\x0e\x00\x00\x003\xd4\x00\x00\x12\x00\x00\x00B\xd4\x00\x00\x12\x00\x00\x00U\xd4\x00\x00\n\x00\x00\x00h\xd4\x00\x00m\x00\x00\x00s\xd4\x00\x00\x1d\x01\x00\x00\xe1\xd4\x00\x00[\x00\x00\x00\xff\xd5\x00\x00a\x00\x00\x00[\xd6\x00\x00\x1b\x00\x00\x00\xbd\xd6\x00\x00!\x00\x00\x00\xd9\xd6\x00\x005\x00\x00\x00\xfb\xd6\x00\x00&\x00\x00\x001\xd7\x00\x00\xb6\x00\x00\x00X\xd7\x00\x00>\x00\x00\x00\x0f\xd8\x00\x00\x13\x00\x00\x00N\xd8\x00\x00i\x00\x00\x00b\xd8\x00\x00N\x00\x00\x00\xcc\xd8\x00\x00\x1c\x00\x00\x00\x1b\xd9\x00\x007\x00\x00\x008\xd9\x00\x00\x06\x00\x00\x00p\xd9\x00\x00\x19\x00\x00\x00w\xd9\x00\x00\x0c\x00\x00\x00\x91\xd9\x00\x00\x13\x00\x00\x00\x9e\xd9\x00\x00\'\x00\x00\x00\xb2\xd9\x00\x00(\x00\x00\x00\xda\xd9\x00\x00q\x00\x00\x00\x03\xda\x00\x00h\x00\x00\x00u\xda\x00\x001\x00\x00\x00\xde\xda\x00\x00:\x00\x00\x00\x10\xdb\x00\x00/\x00\x00\x00K\xdb\x00\x00\xf3\x00\x00\x00{\xdb\x00\x00\x07\x00\x00\x00o\xdc\x00\x00\n\x00\x00\x00w\xdc\x00\x00\x0e\x00\x00\x00\x82\xdc\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">calibre</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://calibre.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00calibre\x00contains\x00mybook.epub\x00Project-Id-Version: ca\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2008-04-07 16:11+IST\nPO-Revision-Date: 2007-11-16 09:07+0100\nLast-Translator: calibre\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\tBaen Datei erkannt. Analysiere erneut...\x00\tBook Designer Datei erkannt.\x00\tKonvertiere in BBeB...\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\tAnalysiere HTML...\x00\n%prog [options] ISBN\n\nUmschlagbild des Buches mit der angegebenen ISBN von LibraryThing.com abrufen\n\x00\n%prog [options] key\n\nRufe Metadaten der B\xc3\xbccher von isndb.com ab. Sie k\xc3\xb6nnen entweder die\nISBN oder den Titel und den Autor des Buches angeben. Wenn Sie Titel und Autor angeben,\nkann es sein, dass mehrere B\xc3\xbccher gefunden werden.\n\nkey steht f\xc3\xbcr den Konto-Schl\xc3\xbcssel, der nach der kostenfreien Registrierung bei isbndb.com erstellt werden kann.\n\n\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%%prog [options] ARG\n\n%%prog analysiert eine Online-Quelle von Artikeln, z.B. einen RSS oder ATOM Feed und \nruft die Artikelinhalte hierarchisch organisiert ab.\n\nARG kann eines der folgenden sein:\n\ndateiname - %%prog versucht ein Rezept aus der Datei zu laden\n\ninstalliertes Rezept - %%prog l\xc3\xa4dt ein installiertes Rezept und benutzt es, um den Feed abzurufen. Z.B. f\xc3\xbcr Newsweek or "The BBC" or "The New York Times"\n\nRezept als eine Reihung - %%prog l\xc3\xa4dt das Rezept direkt nach der angegebenen Reihung.\n\nVerf\xc3\xbcgbare installierte Rezepte:\n%s\n\x00%prog URL\n\nURL ist z.B. http://google.com\x00%prog [options] datei.lrs\nErstellt eine LRF Datei aus einer LRS Datei.\x00%prog [options] dateiname.lrf\n\n\nZeigt/ver\xc3\xa4ndert die Metadaten in einer LRF Datei.\n\n\x00%prog [options] dateiname.pdf\n\n\n%prog konvertiert dateiname.pdf in dateiname.lrf\x00%prog [options] dateiname.rtf\n\n\n%prog konvertiert dateiname.rtf in dateiname.lrf\x00%prog [options] dateiname.txt\n\n\n%prog konvertiert dateiname.txt in dateiname.lrf\x00%prog [options] dateiname.mobi\x00%prog dateiname.lrf\nKonvertiert eine LRF Datei in eine LRS (XML UTF-8 kodierte) Datei\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00Clau d\'&acc\xc3\xa9s;\x00Feed &anf\xc3\xbcgen\x00Etikett &anf\xc3\xbcgen:\x00&Autor(s):\x00Marge &Inferior:\x00Datenbank verdi&chten\x00&Desactivar detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols\x00&Feed Titel:\x00&For\xc3\xa7a un salt de p\xc3\xa0gina abans de la marca:\x00&Format de la cap\xc3\xa7alera:\x00Marge &Esquerre:\x00&Ubicaci\xc3\xb3 de la base de dades (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monoespaiada:\x00\xc3\x84<ester Artikel:\x00Inserta un salt de &p\xc3\xa0gina abans de la marca:\x00&Contrasenya:\x00&Preprocessament:\x00&Priorit\xc3\xa4t der Konvertierungsauftr\xc3\xa4ge:\x00&Perfil:\x00&Editorial:\x00&Valoraci\xc3\xb3:\x00Expressi\xc3\xb3 &Regular:\x00Rezept entfe&rnen\x00Etiketten entfe&rnen:\x00Marge &Dret:\x00Re&cerca:\x00&S\xc3\xa8ries:\x00&Serif:\x00&Mostrar cap\xc3\xa7alera\x00Pa&sswort anzeigen\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&T\xc3\xad\xc2\xadtol:\x00Marge &Superior:\x00Nom d\'&usuari:\x00&Espaiat de les paraules:\x00...\x00<b>Els canvis s\'ignoren fins que el re-inicieu.\x00<b>No puc aconseguir la coberta.</b><br/>\x00<b>No</b> s\'han trobat coincid\xc3\xa8ncies per al text "<i>%s</i>".\x00<br>Cal que siga un directori.\x00<font color="gray">Ajuda no disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hilfe gibt es online bei <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">calibre</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Arxius HTML0 del Book Designer</li>\x00<li><b>pdftohtml</b> - Arxius HTML obtinguts amb l\'aplicaci\xc3\xb3 pdftohtml</li>\x00<ol><li><b>baen</b> - Llibre de BAEN Publishers</li>\x00<p>Es existiert bereits eine ung\xc3\xbcltige Datenbank in %s, bitte l\xc3\xb6schen Sie diese, bevor sie die bestehende Datenbank verschieben.<br>Fehler: %s\x00<p>Es existieren bereits B\xc3\xbccher mit dem selben Titel in der Datenbank. Sollen die folgenden B\xc3\xbccher trotzdem hinzugef\xc3\xbcgt werden?<ul>\x00<p>No puc desar llibres al dispositiu perqu\xc3\xa8 no hi ha espai restant\x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr <b>LibraryThing.com</b> an. <br/>Insofern Sie dies nicht besitzen, k\xc3\xb6nnen Sie sich kostenlos <a href=\'http://www.librarything.com\'>anmelden</a>! </p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Error llegint de l\'arxiu: <br /><b>\x00<span style="color:red; font-weight:bold">Letzte Version: <a href="%s">%s</a></span>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Expressi\xc3\xb3 regular. Les marques <a> amb href coincidents, s\xc3\xb3n ignorades. Per defecte: %default\x00Zuge&wiesene Etiketten\x00&Verf\xc3\xbcgbare Etiketten\x00Treballs actius\x00Afe&geix les etiquetes: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Afegir el directori al llistat de directoris freq\xc3\xbcents\x00Afegeix la cap\xc3\xa7alera a totes les p\xc3\xa0gines, ficant el t\xc3\xad\xc2\xadtol i l\'autor.\x00Afegir un nou format per a aquest llibre a la base de dades\x00Afegeix llibres\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Milloreu l\'aparen\xc3\xa7a del fitxer LRF generat, especificant la grand\xc3\xa0ria de lletra i l\'espaiat entre paraules.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Ein Fehler trat w\xc3\xa4hrend der Bearbeitung einer Tabelle auf: %s. Tabellenformat wird ignoriert.\x00Irgendein\x00Jeder Link, der diesem Regul\xc3\xa4ren Ausdruck entspricht, wird ignoriert. Diese Option kann mehrmals angegeben werden, somit werden Links ignoriert, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden keine Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben sind, wird --filter-regexp zuerst angewendet.\x00Etikett dem aktuellen Buch zuweisen\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00&Ordena autors:\x00Ord&re per autor:\x00Autor(s)\x00Autoren:\x00Formats disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Precedent\x00Schlechte Tabelle:\n%s\x00Grand\xc3\xa0ria de lletra base:\x00Grundverzeichnis, in das die URL gespeichert wird. Voreinstellung ist %default \x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\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\x00Konnte Link %s nicht zu TOC hinzuf\xc3\xbcgen\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\x00Lesen nicht m\xc3\xb6glich von: %s\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\x00Verdichte Datenbank. Das kann dauern...\x00Verdichte Datenbank...\x00Configuraci\xc3\xb3\x00Configura\x00Configura el visor\x00Converteix %s a LRF\x00Converteix Ebooks\x00Konvertierung von LRS in LRS, hilfreich bei der Fehlersuche.\x00Converteix individualment\x00Convertir a LRF\x00Zu LRS konvertieren\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\x00Konnte Bild nicht verarbeiten: %s\n%s\x00Konnte Umschlagbild nicht lesen: %s\x00Umschlagbild gespeichert unter\x00Creat per \x00Erstelle XML...\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\x00Ger\xc3\xa4tedatenbank ist besch\xc3\xa4digt\x00Lade CSS Stylesheets nicht herunter.\x00No s\xc3\xa9 per a qu\xc3\xa9 \xc3\xa9s aix\xc3\xb3\x00Fortschrittsbalken nicht anzeigen\x00Doppelklick erm\xc3\xb6glicht <b>Bearbeitung</b><br><br>\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:\x00Fehlschlag bei der Analysierung von %s %s\x00Verarbeitung der OPF Datei schlug fehl\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Recull\x00Recolliu la coberta des del servidor\x00Recull metadades\x00Recull metadades des del servidor\x00Recull not\xc3\xad\xc2\xadcies (RSS)\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Recollint metadades per a <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Milloreu la detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols i seccions.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://calibre.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00For\xc3\xa7a un salt de p\xc3\xa0gina davant d\'un element amb un atribut concret. El format d\'aquesta opci\xc3\xb3 \xc3\xa9s regexp_marca,nom_atribut,tegexp_valor_atribut. Per exemple, amb "h\\d,class,chapter", serien coincidents totes les marques de encap\xc3\xa7alament amb l\'atribut class="chapter". Per defecte: %default\x00For\xc3\xa7a un salt de p\xc3\xa0gina abans de les marques amb noms coincidents amb l\'expressi\xc3\xb3 regular.\x00For\xc3\xa7a un salt de p\xc3\xa0gina abans de l\'&atribut:\x00Art\x00Format\x00Formats\x00Seg\xc3\xbcent\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00Directoris emprats amb freq\xc3\xbc\xc3\xa8ncia\x00Feeds der Index Seite erhalten\x00Cap\xc3\xa7alera\x00Ajuda amb l\'\xc3\xad\xc2\xadtem\x00Partici\xc3\xb3 de mots\x00IS&BN:\x00Si l\'html2lrf no troba cap salt de p\xc3\xa0gina en el fitxer html i no pot detectar els encap\xc3\xa7alaments dels cap\xc3\xad\xc2\xadtols, insereix autom\xc3\xa0ticament un salt de p\xc3\xa0gina abans de les marques que tinguen un nom coincident amb l\'expressi\xc3\xb3 regular. Per defecte: %default. Aquesta opci\xc3\xb3 s\'inhabilita establint la regexp com a "$".El prop\xc3\xb2sit de tot plegat \xc3\xa9s evitar p\xc3\xa0gines massa llargues, que alentirien al canvi de fulla del fitxer LRF. Aquesta opci\xc3\xb3 s\'ignora si la p\xc3\xa0gina actual en t\xc3\xa9 pocs elements.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si es detecta un gr\xc3\xa0fic per a la coberta al fitxer d\'entrada, utilitzar-la en lloc de la coberta especificada.\x00Farben nicht bea&chten\x00Ignora les &taules\x00Augmenta la grand\xc3\xa0ria de la lletra en 2 * FONT_DELTA punts i l\'espai de l\xc3\xad\xc2\xadnia en FONT_DELTA punts. FONT_DELTA pot ser una fracci\xc3\xb3. Si \xc3\xa9s un valor negatiu, la grand\xc3\xa0ria de la lletra disminueix.\x00Inserta l\xc3\xad\xc2\xadnies &buides entre par\xc3\xa0grafs\x00Ung\xc3\xbcltige Datenbank\x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida \x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida \x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida.<br>No es pot escriure \x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Treball\x00Auftrag durch Benutzer abgebrochen\x00Treballs:\x00Visor LRF\x00LRS gespeichert in\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.\x00Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt werden. Voreinstellung %default\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:\x00Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. Voreinstellung ist %default s\x00Mindest-Zeileneinzug von Paragraphen (Zeileneinzug der ersten Zeile eines Paragraphen) in Punkt. Voreinstellung: %default\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\x00Keine Datei zur Konvertierung angegeben.\x00Kein Dateiname angegeben.\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\x00OEB eBook erstellt in\x00Nur Links, die diesem Regul\xc3\xa4ren Ausdruck entsprechen, werden verfolgt. Diese Option kann mehrmals angegeben werden, somit werden Links verfolgt, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden alle Links verfolgt.\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)\x00Ausgabe LRS Datei\x00Ausgabeverzeichnis. Voreinstellung ist akutelles Verzeichnis.\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\x00Analysieren 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.\x00Pfad zur Zieldatei\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\x00Gebe erstellte HTML auf stdout aus und beende das Programm.\x00Verarbeite %s\x00Perfil del dispositiu per al que es genera el fitxer LRF. Aquest perfil determina la resoluci\xc3\xb3 i la grand\xc3\xa0ria de la pantalla del dispositiu, entre d\'altres. Per defecte:%s Perfils suportats:\x00Progressi\xc3\xb3\x00Editorial\x00Valoraci\xc3\xb3\x00Valora aquest llibre: 0-5 estreles\x00Original MOBI HTML gespeichert in\x00El Sony Reader\n%s est\xc3\xa0 disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Elimiar el directori al llistat de directoris freq\xc3\xbcents\x00Suprimeix llibres\x00Feed aus dem Rezept entfernen\x00Elimina els formats seleccionats per a aquest llibre de la base de dades.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Renderitza les taules HTML com a blocs de text en lloc de les taules actuals. \xc3\x89s necessari si el fitxer HTML cont\xc3\xa9 taules massa grans o complexes.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Reinicialitza la recerca r\xc3\xa0pida\x00Marge dret de la p\xc3\xa0gina. Per defecte: %default px.\x00Laufzeit\x00S&ans-serif:\x00Desa al disc\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Recerca llibres pel t\xc3\xad\xc2\xadtol o l\'autor. <br><br>Els espais entre paraules es substitueixen per AND.\x00Recerca llibres pel t\xc3\xad\xc2\xadtol, l\'autor, l\'editorial, les etiquetes i els comentaris<br><br>Els espais entre paraules es substitueixen per AND.\x00Seleccioneu el llibre que m\xc3\xa9s s\'acoste del llistat que hi ha a sota\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Envia al dispositiu\x00Envia a la mem\xc3\xb2ria interna\x00Envia a la targeta de mem\xc3\xb2ria\x00Separa els par\xc3\xa0grafs amb l\xc3\xad\xc2\xadnies buides.\x00S\xc3\xa8ries\x00\xc3\x8dndex de s\xc3\xa8rie.\x00Serien Index:\x00Serien:\x00Server-Fehler. Bitte versuchen Sie es sp\xc3\xa4ter wieder.\x00Indiqueu l\'ID (identificador) del llibre\x00Fixa els valors de conversi\xc3\xb3 er defecte\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per autor\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per t\xc3\xad\xc2\xadtol\x00Indiqueu l\'autor\x00Indiqueu l\'autor(s). Si indique m\xc3\xa9s d\'un autor, separeu el llistat amb comes. Per defecte: %default\x00Gebe Autoren ein\x00Indiqueu el nom del llibre\x00Indiqueu la categoria.\x00Gebe Kommentar ein\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.\x00Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche.\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.\x00Geben Sie die Zeichenkodierung der Ausgangsdatei an. Sollte die ausgegebene LRF Datei seltsame Zeichen enthalten, \xc3\xa4ndern Sie diese Einstellung. Eine gebr\xc3\xa4uchliche Kodierung von Dateien, die von Windows Computern stammen, ist cp-1252. Eine andere gebr\xc3\xa4uchliche Alternative ist utf-8. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Configuraci\xc3\xb3 de la p\xc3\xa0gina del dispositiu, especificant ,marges i grand\xc3\xa0ria de la pantalla, entre d\'altres.\x00Especifiqueu lletres truetype per a les fam\xc3\xad\xc2\xadlies serif, sans-serif i monoespaiades. Aquestes lletres s\xc3\xb3n inserides al fitxer LRF. Tingueu en compte que afegir lletres personalitzades alenteix el canvi de p\xc3\xa0gina. Per especificar cadascuna de les fam\xc3\xad\xc2\xadlies s\'empra: "cam\xc3\xad\xc2\xad a la carpeta de lletres, fam\xc3\xad\xc2\xadlia" ( --serif-family "%s, Times New Roman")\n\x00Starte Download von [%d Thread(s)]...\x00Estat\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Etique&tes:\x00Tabelle enth\xc3\xa4lt Zelle, die zu gro\xc3\x9f ist\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\x00Die ISBN des Buches, f\xc3\xbcr das Sie Metadaten abrufen m\xc3\xb6chten.\x00Der Autor des gesuchten Buches.\x00Categoria a la que pertany el llibre. Per exemple, Hist\xc3\xb2ria\x00Zeichenkodierung f\xc3\xbcr Webseiten, die zu laden versucht werden. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00H\xc3\xb6chstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus <a href> Tags zu. Voreinstellung ist %default\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\x00Der Herausgeber des gesuchten Buches.\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.\x00Der Titel des gesuchten Buches.\x00Hi ha hagut un error de comunicaci\xc3\xb3 amb el dispositiu. Lleve, torne a connectar el dispositiu i torne a iniciar el programa\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: %default s\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...\x00Konnte Bild %s nicht verarbeiten. Fehler: %s\x00Konnte verschachteltes PNG %s nicht verarbeiten\x00Etikett vom aktuellen Buch entfernen\x00No disponible\x00Desconegut\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Benutzung:\x00Benutzung: %prog [options] dateiname.epub\n \n \n%prog konvertiert dateiname.epub in dateiname.lrf\x00Benutzung: %prog [options] dateiname.html\n\n\n%prog konvertiert dateiname.html in dateiname.lrf. \n%prog folgt allen Hyperlinks in dateiname.html, die rekursiv auf \nlokale Dateien verweisen. Somit k\xc3\xb6nnen Sie es verwenden,\num einen ganzen Verzeichnisbaum von HTML Dateien zu konvertieren.\x00Benutzung: %prog [options] dateiname.lit\n\n\n%prog konvertiert dateiname.lit in dateiname.lrf\x00Benutzung: %prog [options] dateiname.mobi|prc\n\n\n%prog konvertiert dateiname.mobi in dateiname.lrf\x00Benutzung: %s dateiname.lit\x00Benutzung: pdf-meta dateiname.pdf\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.\x00Mit mehr W\xc3\xb6rtern fortfahren\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Mostra\x00Spezielles Format ansehen\x00En espera...\x00Est\xc3\xa0 treballant...\x00Vorverarbeitetes HTML gespeichert unter\x00No tens permissos per a llegir l\'arxiu: \x00Sichern Sie die Website %s zuerst als HTML Datei und benutzen Sie dann html2lrf mit der gespeicherten HTML Datei.\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.\x00any2lrf [options] dateiname\n\nKonvertiert verschiedene eBook Formate in LRF Dateien. Unterst\xc3\xbctzte Formate:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC und PDF. any2lrf verarbeitet auch RAR oder\nZIP Archive, indem es nach einem eBook im Archiv sucht.\n\x00calibre\x00beinhaltet\x00dateiname.epub\x00', 'de': '\xde\x12\x04\x95\x00\x00\x00\x00\xed\x01\x00\x00\x1c\x00\x00\x00\x84\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xec\x1e\x00\x00"\x00\x00\x00\xed\x1e\x00\x00\x1d\x00\x00\x00\x10\x1f\x00\x00\x16\x00\x00\x00.\x1f\x00\x00\x0e\x00\x00\x00E\x1f\x00\x00\x10\x00\x00\x00T\x1f\x00\x00a\x00\x00\x00e\x1f\x00\x00+\x01\x00\x00\xc7\x1f\x00\x00!\x00\x00\x00\xf3 \x00\x00\x05\x00\x00\x00\x15!\x00\x00\x06\x00\x00\x00\x1b!\x00\x00\x17\x00\x00\x00"!\x00\x00\x0b\x00\x00\x00:!\x00\x00\x04\x00\x00\x00F!\x00\x00\x03\x00\x00\x00K!\x00\x00\x08\x00\x00\x00O!\x00\x00\x06\x00\x00\x00X!\x00\x00\xfd\x01\x00\x00_!\x00\x005\x00\x00\x00]#\x00\x00>\x00\x00\x00\x93#\x00\x00E\x00\x00\x00\xd2#\x00\x00D\x00\x00\x00\x18$\x00\x00D\x00\x00\x00]$\x00\x00D\x00\x00\x00\xa2$\x00\x00\x1c\x00\x00\x00\xe7$\x00\x00G\x00\x00\x00\x04%\x00\x00\x1c\x00\x00\x00L%\x00\x00\x0e\x00\x00\x00i%\x00\x00\x0c\x00\x00\x00x%\x00\x00\t\x00\x00\x00\x85%\x00\x00\t\x00\x00\x00\x8f%\x00\x00\x0c\x00\x00\x00\x99%\x00\x00\x0f\x00\x00\x00\xa6%\x00\x00\x11\x00\x00\x00\xb6%\x00\x00\x1a\x00\x00\x00\xc8%\x00\x00\x0c\x00\x00\x00\xe3%\x00\x00\x1d\x00\x00\x00\xf0%\x00\x00\x0f\x00\x00\x00\x0e&\x00\x00\r\x00\x00\x00\x1e&\x00\x00)\x00\x00\x00,&\x00\x00"\x00\x00\x00V&\x00\x00\x18\x00\x00\x00y&\x00\x00\x0b\x00\x00\x00\x92&\x00\x00\x10\x00\x00\x00\x9e&\x00\x00\x17\x00\x00\x00\xaf&\x00\x00\n\x00\x00\x00\xc7&\x00\x00\x0c\x00\x00\x00\xd2&\x00\x00\x1e\x00\x00\x00\xdf&\x00\x00\t\x00\x00\x00\xfe&\x00\x00\x0c\x00\x00\x00\x08\'\x00\x00\x08\x00\x00\x00\x15\'\x00\x00\x14\x00\x00\x00\x1e\'\x00\x00\x0e\x00\x00\x003\'\x00\x00\r\x00\x00\x00B\'\x00\x00\x0e\x00\x00\x00P\'\x00\x00\x08\x00\x00\x00_\'\x00\x00\x08\x00\x00\x00h\'\x00\x00\x07\x00\x00\x00q\'\x00\x00\x0c\x00\x00\x00y\'\x00\x00\x0e\x00\x00\x00\x86\'\x00\x00\x12\x00\x00\x00\x95\'\x00\x00\x05\x00\x00\x00\xa8\'\x00\x00\x08\x00\x00\x00\xae\'\x00\x00\x0c\x00\x00\x00\xb7\'\x00\x00\n\x00\x00\x00\xc4\'\x00\x00\x0e\x00\x00\x00\xcf\'\x00\x00\x03\x00\x00\x00\xde\'\x00\x001\x00\x00\x00\xe2\'\x00\x00"\x00\x00\x00\x14(\x00\x00=\x00\x00\x007(\x00\x00\x18\x00\x00\x00u(\x00\x00+\x00\x00\x00\x8e(\x00\x00\x00\x02\x00\x00\xba(\x00\x00\xa3\x01\x00\x00\xbb*\x00\x00|\x02\x00\x00_,\x00\x00>\x00\x00\x00\xdc.\x00\x00S\x00\x00\x00\x1b/\x00\x005\x00\x00\x00o/\x00\x00p\x00\x00\x00\xa5/\x00\x00a\x00\x00\x00\x160\x00\x00G\x00\x00\x00x0\x00\x00(\x00\x00\x00\xc00\x00\x00\xa7\x00\x00\x00\xe90\x00\x00W\x00\x00\x00\x911\x00\x00\x96\x00\x00\x00\xe91\x00\x00=\x01\x00\x00\x802\x00\x002\x00\x00\x00\xbe3\x00\x00T\x00\x00\x00\xf13\x00\x00\x01\x00\x00\x00F4\x00\x00C\x00\x00\x00H4\x00\x00\r\x00\x00\x00\x8c4\x00\x00\x0f\x00\x00\x00\x9a4\x00\x00\x0b\x00\x00\x00\xaa4\x00\x00\x0b\x00\x00\x00\xb64\x00\x00\x18\x00\x00\x00\xc24\x00\x007\x00\x00\x00\xdb4\x00\x004\x00\x00\x00\x135\x00\x00.\x00\x00\x00H5\x00\x00\t\x00\x00\x00w5\x00\x00!\x00\x00\x00\x815\x00\x00b\x00\x00\x00\xa35\x00\x00o\x00\x00\x00\x066\x00\x00\x16\x00\x00\x00v6\x00\x00\x12\x00\x00\x00\x8d6\x00\x006\x00\x00\x00\xa06\x00\x00\x12\x00\x00\x00\xd76\x00\x00m\x00\x00\x00\xea6\x00\x00\x08\x00\x00\x00X7\x00\x00\x0f\x00\x00\x00a7\x00\x00\x0f\x00\x00\x00q7\x00\x00\x0e\x00\x00\x00\x817\x00\x00\x05\x00\x00\x00\x907\x00\x00F\x00\x00\x00\x967\x00\x00\x03\x00\x00\x00\xdd7\x00\x005\x01\x00\x00\xe17\x00\x00\x19\x00\x00\x00\x179\x00\x00\x1b\x00\x00\x0019\x00\x00\x16\x00\x00\x00M9\x00\x00\x06\x00\x00\x00d9\x00\x00\x0e\x00\x00\x00k9\x00\x00\r\x00\x00\x00z9\x00\x00\t\x00\x00\x00\x889\x00\x00\x08\x00\x00\x00\x929\x00\x00\x11\x00\x00\x00\x9b9\x00\x00\x16\x00\x00\x00\xad9\x00\x00\x04\x00\x00\x00\xc49\x00\x00\r\x00\x00\x00\xc99\x00\x00\x10\x00\x00\x00\xd79\x00\x00;\x00\x00\x00\xe89\x00\x00\x05\x00\x00\x00$:\x00\x00!\x00\x00\x00*:\x00\x00\x10\x00\x00\x00L:\x00\x00\x1b\x00\x00\x00]:\x00\x00\x05\x00\x00\x00y:\x00\x00(\x00\x00\x00\x7f:\x00\x00\n\x00\x00\x00\xa8:\x00\x00.\x00\x00\x00\xb3:\x00\x005\x00\x00\x00\xe2:\x00\x00$\x00\x00\x00\x18;\x00\x00\x0c\x00\x00\x00=;\x00\x00\x1a\x00\x00\x00J;\x00\x00\x19\x00\x00\x00e;\x00\x00\x10\x00\x00\x00\x7f;\x00\x00.\x00\x00\x00\x90;\x00\x00\x0e\x00\x00\x00\xbf;\x00\x00\x0e\x00\x00\x00\xce;\x00\x007\x00\x00\x00\xdd;\x00\x00\x14\x00\x00\x00\x15<\x00\x00\x12\x00\x00\x00*<\x00\x00#\x00\x00\x00=<\x00\x00\x0f\x00\x00\x00a<\x00\x00Z\x00\x00\x00q<\x00\x00\x19\x00\x00\x00\xcc<\x00\x00\x0b\x00\x00\x00\xe6<\x00\x00\x14\x00\x00\x00\xf2<\x00\x00\x13\x00\x00\x00\x07=\x00\x00\x0b\x00\x00\x00\x1b=\x00\x00\x11\x00\x00\x00\'=\x00\x00\x08\x00\x00\x009=\x00\x00\x14\x00\x00\x00B=\x00\x00\x0f\x00\x00\x00W=\x00\x00R\x00\x00\x00g=\x00\x00!\x00\x00\x00\xba=\x00\x00\x1d\x00\x00\x00\xdc=\x00\x00H\x00\x00\x00\xfa=\x00\x00\x11\x00\x00\x00C>\x00\x00\r\x00\x00\x00U>\x00\x00%\x00\x00\x00c>\x00\x00\x19\x00\x00\x00\x89>\x00\x00!\x00\x00\x00\xa3>\x00\x007\x00\x00\x00\xc5>\x00\x00\x08\x00\x00\x00\xfd>\x00\x00+\x00\x00\x00\x06?\x00\x00\r\x00\x00\x002?\x00\x00\r\x00\x00\x00@?\x00\x00\t\x00\x00\x00N?\x00\x00\x10\x00\x00\x00X?\x00\x00\x11\x00\x00\x00i?\x00\x00\x0f\x00\x00\x00{?\x00\x00)\x00\x00\x00\x8b?\x00\x00\x14\x00\x00\x00\xb5?\x00\x00\x0e\x00\x00\x00\xca?\x00\x00\x0e\x00\x00\x00\xd9?\x00\x00\x1c\x00\x00\x00\xe8?\x00\x00;\x00\x00\x00\x05@\x00\x00\x15\x00\x00\x00A@\x00\x00R\x00\x00\x00W@\x00\x00\x17\x00\x00\x00\xaa@\x00\x00\x18\x00\x00\x00\xc2@\x00\x00\x1e\x00\x00\x00\xdb@\x00\x00\x1e\x00\x00\x00\xfa@\x00\x00\x0e\x00\x00\x00\x19A\x00\x00\x0b\x00\x00\x00(A\x00\x00\x0f\x00\x00\x004A\x00\x00\x13\x00\x00\x00DA\x00\x00\x04\x00\x00\x00XA\x00\x00\x19\x00\x00\x00]A\x00\x00\x03\x00\x00\x00wA\x00\x00h\x00\x00\x00{A\x00\x00\x0e\x00\x00\x00\xe4A\x00\x00\x19\x00\x00\x00\xf3A\x00\x00 \x00\x00\x00\rB\x00\x00\x1b\x00\x00\x00.B\x00\x00\x1a\x00\x00\x00JB\x00\x00&\x00\x00\x00eB\x00\x00\x11\x00\x00\x00\x8cB\x00\x00\x19\x00\x00\x00\x9eB\x00\x00\x11\x00\x00\x00\xb8B\x00\x00\x01\x00\x00\x00\xcaB\x00\x00\x05\x00\x00\x00\xccB\x00\x00\x15\x00\x00\x00\xd2B\x00\x00\x15\x00\x00\x00\xe8B\x00\x00\x15\x00\x00\x00\xfeB\x00\x00\x15\x00\x00\x00\x14C\x00\x00\x1a\x00\x00\x00*C\x00\x00\x0e\x00\x00\x00EC\x00\x00\x1f\x00\x00\x00TC\x00\x00C\x00\x00\x00tC\x00\x00\x05\x00\x00\x00\xb8C\x00\x00\x1f\x00\x00\x00\xbeC\x00\x00\x12\x00\x00\x00\xdeC\x00\x00\x17\x00\x00\x00\xf1C\x00\x00\x1f\x00\x00\x00\tD\x00\x00\'\x00\x00\x00)D\x00\x003\x00\x00\x00QD\x00\x00*\x00\x00\x00\x85D\x00\x00\x1a\x00\x00\x00\xb0D\x00\x00\x1a\x00\x00\x00\xcbD\x00\x00\n\x00\x00\x00\xe6D\x00\x00\x14\x00\x00\x00\xf1D\x00\x00\x16\x00\x00\x00\x06E\x00\x00\x16\x00\x00\x00\x1dE\x00\x00\x0f\x00\x00\x004E\x00\x00\x05\x00\x00\x00DE\x00\x00\x1d\x00\x00\x00JE\x00\x00\x0e\x00\x00\x00hE\x00\x00\x1a\x00\x00\x00wE\x00\x00\n\x00\x00\x00\x92E\x00\x00\x10\x00\x00\x00\x9dE\x00\x00\r\x00\x00\x00\xaeE\x00\x00\x11\x00\x00\x00\xbcE\x00\x00\x1f\x00\x00\x00\xceE\x00\x00\x13\x00\x00\x00\xeeE\x00\x00\x1b\x00\x00\x00\x02F\x00\x00\x05\x00\x00\x00\x1eF\x00\x00\x0b\x00\x00\x00$F\x00\x008\x00\x00\x000F\x00\x00\x08\x00\x00\x00iF\x00\x00\x88\x00\x00\x00rF\x00\x00\x1d\x01\x00\x00\xfbF\x00\x00J\x00\x00\x00\x19H\x00\x00#\x00\x00\x00dH\x00\x00\x04\x00\x00\x00\x88H\x00\x00\x06\x00\x00\x00\x8dH\x00\x00\x07\x00\x00\x00\x94H\x00\x00\x07\x00\x00\x00\x9cH\x00\x00\'\x00\x00\x00\xa4H\x00\x00\x1b\x00\x00\x00\xccH\x00\x00\x19\x00\x00\x00\xe8H\x00\x00\x06\x00\x00\x00\x02I\x00\x00\x0c\x00\x00\x00\tI\x00\x00\t\x00\x00\x00\x16I\x00\x00\x06\x00\x00\x00 I\x00\x00\xdc\x01\x00\x00\'I\x00\x00n\x00\x00\x00\x04K\x00\x00a\x00\x00\x00sK\x00\x00\x0e\x00\x00\x00\xd5K\x00\x00\x0e\x00\x00\x00\xe4K\x00\x00\xa8\x00\x00\x00\xf3K\x00\x00&\x00\x00\x00\x9cL\x00\x00\x10\x00\x00\x00\xc3L\x00\x00\x19\x00\x00\x00\xd4L\x00\x00\x1a\x00\x00\x00\xeeL\x00\x00.\x00\x00\x00\tM\x00\x00\r\x00\x00\x008M\x00\x00\x1a\x00\x00\x00FM\x00\x00\x1e\x00\x00\x00aM\x00\x00\x03\x00\x00\x00\x80M\x00\x00\x12\x00\x00\x00\x84M\x00\x00\x05\x00\x00\x00\x97M\x00\x00\n\x00\x00\x00\x9dM\x00\x00\x0f\x00\x00\x00\xa8M\x00\x00,\x00\x00\x00\xb8M\x00\x00\x07\x00\x00\x00\xe5M\x00\x00-\x00\x00\x00\xedM\x00\x00\x0b\x00\x00\x00\x1bN\x00\x00$\x00\x00\x00\'N\x00\x00$\x00\x00\x00LN\x00\x00\x07\x00\x00\x00qN\x00\x000\x00\x00\x00yN\x00\x00S\x00\x00\x00\xaaN\x00\x00\x10\x00\x00\x00\xfeN\x00\x00\x08\x00\x00\x00\x0fO\x00\x00y\x00\x00\x00\x18O\x00\x00\x10\x00\x00\x00\x92O\x00\x00N\x00\x00\x00\xa3O\x00\x00`\x00\x00\x00\xf2O\x00\x00\x04\x00\x00\x00SP\x00\x00\x06\x00\x00\x00XP\x00\x00"\x00\x00\x00_P\x00\x00\t\x00\x00\x00\x82P\x00\x00\n\x00\x00\x00\x8cP\x00\x00\x14\x00\x00\x00\x97P\x00\x00\x10\x00\x00\x00\xacP\x00\x00\x11\x00\x00\x00\xbdP\x00\x00\x1d\x00\x00\x00\xcfP\x00\x00\x16\x00\x00\x00\xedP\x00\x00\x08\x00\x00\x00\x04Q\x00\x00\x10\x00\x00\x00\rQ\x00\x00\x12\x00\x00\x00\x1eQ\x00\x00\x04\x00\x00\x001Q\x00\x00^\x00\x00\x006Q\x00\x00\x14\x00\x00\x00\x95Q\x00\x00\xdc\x00\x00\x00\xaaQ\x00\x00\x0f\x00\x00\x00\x87R\x00\x00\n\x00\x00\x00\x97R\x00\x00\x07\x00\x00\x00\xa2R\x00\x00-\x00\x00\x00\xaaR\x00\x00+\x00\x00\x00\xd8R\x00\x00F\x00\x00\x00\x04S\x00\x00\x0f\x00\x00\x00KS\x00\x000\x00\x00\x00[S\x00\x008\x00\x00\x00\x8cS\x00\x00s\x00\x00\x00\xc5S\x00\x00\x0f\x00\x00\x009T\x00\x00\n\x00\x00\x00IT\x00\x00\x10\x00\x00\x00TT\x00\x00\x0e\x00\x00\x00eT\x00\x00:\x00\x00\x00tT\x00\x00\x0f\x00\x00\x00\xafT\x00\x00\x04\x00\x00\x00\xbfT\x00\x00;\x00\x00\x00\xc4T\x00\x00G\x00\x00\x00\x00U\x00\x001\x00\x00\x00HU\x00\x00Y\x00\x00\x00zU\x00\x00\x13\x00\x00\x00\xd4U\x00\x004\x00\x00\x00\xe8U\x00\x00\x80\x00\x00\x00\x1dV\x00\x00H\x00\x00\x00\x9eV\x00\x00\r\x00\x00\x00\xe7V\x00\x00(\x00\x00\x00\xf5V\x00\x00\r\x00\x00\x00\x1eW\x00\x00\xbc\x00\x00\x00,W\x00\x00\x08\x00\x00\x00\xe9W\x00\x00\t\x00\x00\x00\xf2W\x00\x00\x06\x00\x00\x00\xfcW\x00\x00\x1e\x00\x00\x00\x03X\x00\x00\x16\x00\x00\x00"X\x00\x00\x13\x00\x00\x009X\x00\x00\x0e\x00\x00\x00MX\x00\x00\x1b\x00\x00\x00\\X\x00\x00\x13\x00\x00\x00xX\x00\x00+\x00\x00\x00\x8cX\x00\x00*\x00\x00\x00\xb8X\x00\x000\x00\x00\x00\xe3X\x00\x00)\x00\x00\x00\x14Y\x00\x00<\x00\x00\x00>Y\x00\x00\x0c\x00\x00\x00{Y\x00\x00\x17\x00\x00\x00\x88Y\x00\x00<\x00\x00\x00\xa0Y\x00\x000\x00\x00\x00\xddY\x00\x00\x84\x00\x00\x00\x0eZ\x00\x00X\x00\x00\x00\x93Z\x00\x00\x0f\x00\x00\x00\xecZ\x00\x00\x12\x00\x00\x00\xfcZ\x00\x00-\x00\x00\x00\x0f[\x00\x00\x0c\x00\x00\x00=[\x00\x00\x0c\x00\x00\x00J[\x00\x00\x0c\x00\x00\x00W[\x00\x00"\x00\x00\x00d[\x00\x009\x00\x00\x00\x87[\x00\x00\x0f\x00\x00\x00\xc1[\x00\x00V\x00\x00\x00\xd1[\x00\x00r\x00\x00\x00(\\\x00\x00G\x00\x00\x00\x9b\\\x00\x00\'\x00\x00\x00\xe3\\\x00\x00\x0e\x00\x00\x00\x0b]\x00\x00\x13\x00\x00\x00\x1a]\x00\x00\x14\x00\x00\x00.]\x00\x00#\x00\x00\x00C]\x00\x00\x06\x00\x00\x00g]\x00\x00\r\x00\x00\x00n]\x00\x00\r\x00\x00\x00|]\x00\x00\x07\x00\x00\x00\x8a]\x00\x00\x1e\x00\x00\x00\x92]\x00\x00\x0b\x00\x00\x00\xb1]\x00\x00\x17\x00\x00\x00\xbd]\x00\x00\x1b\x00\x00\x00\xd5]\x00\x00\x1a\x00\x00\x00\xf1]\x00\x00\x0e\x00\x00\x00\x0c^\x00\x00^\x00\x00\x00\x1b^\x00\x00\x0f\x00\x00\x00z^\x00\x00\x12\x00\x00\x00\x8a^\x00\x00\x10\x00\x00\x00\x9d^\x00\x00\x0f\x00\x00\x00\xae^\x00\x00\x10\x00\x00\x00\xbe^\x00\x00g\x00\x00\x00\xcf^\x00\x00c\x00\x00\x007_\x00\x007\x00\x00\x00\x9b_\x00\x00!\x00\x00\x00\xd3_\x00\x006\x00\x00\x00\xf5_\x00\x00d\x00\x00\x00,`\x00\x00\t\x00\x00\x00\x91`\x00\x00\x17\x00\x00\x00\x9b`\x00\x00\x16\x00\x00\x00\xb3`\x00\x00\x11\x00\x00\x00\xca`\x00\x00\x04\x01\x00\x00\xdc`\x00\x00z\x00\x00\x00\xe1a\x00\x00\x85\x00\x00\x00\\b\x00\x00\xb6\x00\x00\x00\xe2b\x00\x00\r\x01\x00\x00\x99c\x00\x00P\x00\x00\x00\xa7d\x00\x00+\x01\x00\x00\xf8d\x00\x00#\x00\x00\x00$f\x00\x00\x06\x00\x00\x00Hf\x00\x00\x17\x00\x00\x00Of\x00\x00\x14\x00\x00\x00gf\x00\x00\x07\x00\x00\x00|f\x00\x00 \x00\x00\x00\x84f\x00\x00\x03\x00\x00\x00\xa5f\x00\x00\n\x00\x00\x00\xa9f\x00\x00\x13\x00\x00\x00\xb4f\x00\x00\x04\x00\x00\x00\xc8f\x00\x00\x85\x00\x00\x00\xcdf\x00\x00\x04\x00\x00\x00Sg\x00\x00\t\x00\x00\x00Xg\x00\x00.\x00\x00\x00bg\x00\x00%\x00\x00\x00\x91g\x00\x000\x00\x00\x00\xb7g\x00\x00q\x00\x00\x00\xe8g\x00\x00X\x00\x00\x00Zh\x00\x00\x1b\x00\x00\x00\xb3h\x00\x00\x1a\x00\x00\x00\xcfh\x00\x00k\x00\x00\x00\xeah\x00\x00\x9d\x00\x00\x00Vi\x00\x00&\x00\x00\x00\xf4i\x00\x00\x1e\x00\x00\x00\x1bj\x00\x00(\x00\x00\x00:j\x00\x00v\x00\x00\x00cj\x00\x00\'\x00\x00\x00\xdaj\x00\x00"\x00\x00\x00\x02k\x00\x00B\x00\x00\x00%k\x00\x00^\x00\x00\x00hk\x00\x00$\x00\x00\x00\xc7k\x00\x00h\x00\x00\x00\xeck\x00\x00.\x00\x00\x00Ul\x00\x00N\x00\x00\x00\x84l\x00\x00\t\x00\x00\x00\xd3l\x00\x00\x05\x00\x00\x00\xddl\x00\x00\x15\x00\x00\x00\xe3l\x00\x00\x06\x00\x00\x00\xf9l\x00\x00+\x00\x00\x00\x00m\x00\x00\x1b\x00\x00\x00,m\x00\x00%\x00\x00\x00Hm\x00\x00#\x00\x00\x00nm\x00\x00&\x00\x00\x00\x92m\x00\x00\x0b\x00\x00\x00\xb9m\x00\x00\x07\x00\x00\x00\xc5m\x00\x00\x13\x00\x00\x00\xcdm\x00\x00\x0c\x00\x00\x00\xe1m\x00\x00\x10\x00\x00\x00\xeem\x00\x00\x10\x00\x00\x00\xffm\x00\x00\x06\x00\x00\x00\x10n\x00\x00]\x00\x00\x00\x17n\x00\x00\xdb\x00\x00\x00un\x00\x00K\x00\x00\x00Qo\x00\x00Q\x00\x00\x00\x9do\x00\x00\x12\x00\x00\x00\xefo\x00\x00\x18\x00\x00\x00\x02p\x00\x00%\x00\x00\x00\x1bp\x00\x00\x1b\x00\x00\x00Ap\x00\x00\xb4\x00\x00\x00]p\x00\x002\x00\x00\x00\x12q\x00\x00\x14\x00\x00\x00Eq\x00\x00_\x00\x00\x00Zq\x00\x00:\x00\x00\x00\xbaq\x00\x00\x12\x00\x00\x00\xf5q\x00\x00*\x00\x00\x00\x08r\x00\x00\x04\x00\x00\x003r\x00\x00\x14\x00\x00\x008r\x00\x00\x07\x00\x00\x00Mr\x00\x00\x07\x00\x00\x00Ur\x00\x00\x1d\x00\x00\x00]r\x00\x00-\x00\x00\x00{r\x00\x00R\x00\x00\x00\xa9r\x00\x00d\x00\x00\x00\xfcr\x00\x00#\x00\x00\x00as\x00\x002\x00\x00\x00\x85s\x00\x003\x00\x00\x00\xb8s\x00\x00\xdf\x00\x00\x00\xecs\x00\x00\x07\x00\x00\x00\xcct\x00\x00\x08\x00\x00\x00\xd4t\x00\x00\x0b\x00\x00\x00\xddt\x00\x006\x01\x00\x00\xe9t\x00\x00)\x00\x00\x00 v\x00\x00\x1d\x00\x00\x00Jv\x00\x00\x17\x00\x00\x00hv\x00\x00 \x00\x00\x00\x80v\x00\x00\x13\x00\x00\x00\xa1v\x00\x00e\x00\x00\x00\xb5v\x00\x00\\\x01\x00\x00\x1bw\x00\x00\x1d\x00\x00\x00xx\x00\x00\x05\x00\x00\x00\x96x\x00\x00\x04\x00\x00\x00\x9cx\x00\x00\x18\x00\x00\x00\xa1x\x00\x00\x10\x00\x00\x00\xbax\x00\x00\x06\x00\x00\x00\xcbx\x00\x00\x06\x00\x00\x00\xd2x\x00\x00\t\x00\x00\x00\xd9x\x00\x00\x07\x00\x00\x00\xe3x\x00\x00+\x02\x00\x00\xebx\x00\x00)\x00\x00\x00\x17{\x00\x00F\x00\x00\x00A{\x00\x00T\x00\x00\x00\x88{\x00\x00P\x00\x00\x00\xdd{\x00\x00P\x00\x00\x00.|\x00\x00P\x00\x00\x00\x7f|\x00\x00\x1e\x00\x00\x00\xd0|\x00\x00U\x00\x00\x00\xef|\x00\x00"\x00\x00\x00E}\x00\x00\x12\x00\x00\x00h}\x00\x00\x14\x00\x00\x00{}\x00\x00\x0e\x00\x00\x00\x90}\x00\x00\x12\x00\x00\x00\x9f}\x00\x00\x07\x00\x00\x00\xb2}\x00\x00\x0e\x00\x00\x00\xba}\x00\x00\x15\x00\x00\x00\xc9}\x00\x00 \x00\x00\x00\xdf}\x00\x00\x0c\x00\x00\x00\x00~\x00\x00%\x00\x00\x00\r~\x00\x00\x12\x00\x00\x003~\x00\x00\r\x00\x00\x00F~\x00\x00/\x00\x00\x00T~\x00\x00&\x00\x00\x00\x84~\x00\x00\x1e\x00\x00\x00\xab~\x00\x00\x0b\x00\x00\x00\xca~\x00\x00\x13\x00\x00\x00\xd6~\x00\x00\x1b\x00\x00\x00\xea~\x00\x00\n\x00\x00\x00\x06\x7f\x00\x00\x0f\x00\x00\x00\x11\x7f\x00\x00(\x00\x00\x00!\x7f\x00\x00\x08\x00\x00\x00J\x7f\x00\x00\r\x00\x00\x00S\x7f\x00\x00\x0b\x00\x00\x00a\x7f\x00\x00\x15\x00\x00\x00m\x7f\x00\x00\x11\x00\x00\x00\x83\x7f\x00\x00\x15\x00\x00\x00\x95\x7f\x00\x00\x0e\x00\x00\x00\xab\x7f\x00\x00\x07\x00\x00\x00\xba\x7f\x00\x00\x08\x00\x00\x00\xc2\x7f\x00\x00\x07\x00\x00\x00\xcb\x7f\x00\x00\x13\x00\x00\x00\xd3\x7f\x00\x00\x12\x00\x00\x00\xe7\x7f\x00\x00\x1e\x00\x00\x00\xfa\x7f\x00\x00\x05\x00\x00\x00\x19\x80\x00\x00\x07\x00\x00\x00\x1f\x80\x00\x00\r\x00\x00\x00\'\x80\x00\x00\x0e\x00\x00\x005\x80\x00\x00\r\x00\x00\x00D\x80\x00\x00\x03\x00\x00\x00R\x80\x00\x008\x00\x00\x00V\x80\x00\x00-\x00\x00\x00\x8f\x80\x00\x00;\x00\x00\x00\xbd\x80\x00\x00\x1e\x00\x00\x00\xf9\x80\x00\x000\x00\x00\x00\x18\x81\x00\x00M\x02\x00\x00I\x81\x00\x00\xa3\x01\x00\x00\x97\x83\x00\x00\x86\x02\x00\x00;\x85\x00\x00>\x00\x00\x00\xc2\x87\x00\x00X\x00\x00\x00\x01\x88\x00\x006\x00\x00\x00Z\x88\x00\x00\x90\x00\x00\x00\x91\x88\x00\x00\x86\x00\x00\x00"\x89\x00\x00`\x00\x00\x00\xa9\x89\x00\x00/\x00\x00\x00\n\x8a\x00\x00\xcd\x00\x00\x00:\x8a\x00\x00\x7f\x00\x00\x00\x08\x8b\x00\x00\xcd\x00\x00\x00\x88\x8b\x00\x00\xa4\x01\x00\x00V\x8c\x00\x00<\x00\x00\x00\xfb\x8d\x00\x00T\x00\x00\x008\x8e\x00\x00\x01\x00\x00\x00\x8d\x8e\x00\x00M\x00\x00\x00\x8f\x8e\x00\x00\x16\x00\x00\x00\xdd\x8e\x00\x00\x16\x00\x00\x00\xf4\x8e\x00\x00\x10\x00\x00\x00\x0b\x8f\x00\x00\x18\x00\x00\x00\x1c\x8f\x00\x00/\x00\x00\x005\x8f\x00\x00I\x00\x00\x00e\x8f\x00\x00?\x00\x00\x00\xaf\x8f\x00\x00;\x00\x00\x00\xef\x8f\x00\x00\x13\x00\x00\x00+\x90\x00\x003\x00\x00\x00?\x90\x00\x00}\x00\x00\x00s\x90\x00\x00\x98\x00\x00\x00\xf1\x90\x00\x00$\x00\x00\x00\x8a\x91\x00\x00\x1b\x00\x00\x00\xaf\x91\x00\x00Q\x00\x00\x00\xcb\x91\x00\x00"\x00\x00\x00\x1d\x92\x00\x00e\x00\x00\x00@\x92\x00\x00\t\x00\x00\x00\xa6\x92\x00\x00\x10\x00\x00\x00\xb0\x92\x00\x00\x10\x00\x00\x00\xc1\x92\x00\x00\x10\x00\x00\x00\xd2\x92\x00\x00\x05\x00\x00\x00\xe3\x92\x00\x00^\x00\x00\x00\xe9\x92\x00\x00\t\x00\x00\x00H\x93\x00\x00_\x01\x00\x00R\x93\x00\x00#\x00\x00\x00\xb2\x94\x00\x00!\x00\x00\x00\xd6\x94\x00\x00\x13\x00\x00\x00\xf8\x94\x00\x00\x05\x00\x00\x00\x0c\x95\x00\x00\x17\x00\x00\x00\x12\x95\x00\x00\x17\x00\x00\x00*\x95\x00\x00\t\x00\x00\x00B\x95\x00\x00\x08\x00\x00\x00L\x95\x00\x00\x13\x00\x00\x00U\x95\x00\x00\x1c\x00\x00\x00i\x95\x00\x00\x07\x00\x00\x00\x86\x95\x00\x00\x15\x00\x00\x00\x8e\x95\x00\x00\x18\x00\x00\x00\xa4\x95\x00\x00O\x00\x00\x00\xbd\x95\x00\x00\x07\x00\x00\x00\r\x96\x00\x003\x00\x00\x00\x15\x96\x00\x00\x16\x00\x00\x00I\x96\x00\x003\x00\x00\x00`\x96\x00\x00\x04\x00\x00\x00\x94\x96\x00\x00)\x00\x00\x00\x99\x96\x00\x00\x0c\x00\x00\x00\xc3\x96\x00\x00>\x00\x00\x00\xd0\x96\x00\x00 \x00\x00\x00\x0f\x97\x00\x00)\x00\x00\x000\x97\x00\x00\x17\x00\x00\x00Z\x97\x00\x00%\x00\x00\x00r\x97\x00\x00\'\x00\x00\x00\x98\x97\x00\x00\x1c\x00\x00\x00\xc0\x97\x00\x00D\x00\x00\x00\xdd\x97\x00\x00\x19\x00\x00\x00"\x98\x00\x00\x1c\x00\x00\x00<\x98\x00\x00R\x00\x00\x00Y\x98\x00\x00\x1f\x00\x00\x00\xac\x98\x00\x00\x1e\x00\x00\x00\xcc\x98\x00\x005\x00\x00\x00\xeb\x98\x00\x00\x1d\x00\x00\x00!\x99\x00\x00g\x00\x00\x00?\x99\x00\x00-\x00\x00\x00\xa7\x99\x00\x00\x14\x00\x00\x00\xd5\x99\x00\x00\x1c\x00\x00\x00\xea\x99\x00\x00\'\x00\x00\x00\x07\x9a\x00\x00\x16\x00\x00\x00/\x9a\x00\x00\x13\x00\x00\x00F\x9a\x00\x00\t\x00\x00\x00Z\x9a\x00\x00\x16\x00\x00\x00d\x9a\x00\x00\x10\x00\x00\x00{\x9a\x00\x00R\x00\x00\x00\x8c\x9a\x00\x00!\x00\x00\x00\xdf\x9a\x00\x00\x1b\x00\x00\x00\x01\x9b\x00\x00H\x00\x00\x00\x1d\x9b\x00\x00\x16\x00\x00\x00f\x9b\x00\x00\x0e\x00\x00\x00}\x9b\x00\x00:\x00\x00\x00\x8c\x9b\x00\x00\x1b\x00\x00\x00\xc7\x9b\x00\x00&\x00\x00\x00\xe3\x9b\x00\x00J\x00\x00\x00\n\x9c\x00\x00\t\x00\x00\x00U\x9c\x00\x00\'\x00\x00\x00_\x9c\x00\x00\x16\x00\x00\x00\x87\x9c\x00\x00\r\x00\x00\x00\x9e\x9c\x00\x00\r\x00\x00\x00\xac\x9c\x00\x00\x15\x00\x00\x00\xba\x9c\x00\x00\x15\x00\x00\x00\xd0\x9c\x00\x00\x13\x00\x00\x00\xe6\x9c\x00\x00<\x00\x00\x00\xfa\x9c\x00\x00\x14\x00\x00\x007\x9d\x00\x00\x13\x00\x00\x00L\x9d\x00\x00\x13\x00\x00\x00`\x9d\x00\x00#\x00\x00\x00t\x9d\x00\x00W\x00\x00\x00\x98\x9d\x00\x00 \x00\x00\x00\xf0\x9d\x00\x00e\x00\x00\x00\x11\x9e\x00\x00"\x00\x00\x00w\x9e\x00\x00"\x00\x00\x00\x9a\x9e\x00\x00$\x00\x00\x00\xbd\x9e\x00\x00#\x00\x00\x00\xe2\x9e\x00\x00\x1e\x00\x00\x00\x06\x9f\x00\x00\r\x00\x00\x00%\x9f\x00\x00\x0f\x00\x00\x003\x9f\x00\x00\x1f\x00\x00\x00C\x9f\x00\x00\x05\x00\x00\x00c\x9f\x00\x00B\x00\x00\x00i\x9f\x00\x00\x08\x00\x00\x00\xac\x9f\x00\x00r\x00\x00\x00\xb5\x9f\x00\x00\x14\x00\x00\x00(\xa0\x00\x00 \x00\x00\x00=\xa0\x00\x00$\x00\x00\x00^\xa0\x00\x00\x1f\x00\x00\x00\x83\xa0\x00\x00!\x00\x00\x00\xa3\xa0\x00\x002\x00\x00\x00\xc5\xa0\x00\x00\x10\x00\x00\x00\xf8\xa0\x00\x00\x18\x00\x00\x00\t\xa1\x00\x00\x12\x00\x00\x00"\xa1\x00\x00\x01\x00\x00\x005\xa1\x00\x00\x06\x00\x00\x007\xa1\x00\x00\x1d\x00\x00\x00>\xa1\x00\x00\x1d\x00\x00\x00\\\xa1\x00\x00\x1c\x00\x00\x00z\xa1\x00\x00 \x00\x00\x00\x97\xa1\x00\x00\x1d\x00\x00\x00\xb8\xa1\x00\x00\x16\x00\x00\x00\xd6\xa1\x00\x00.\x00\x00\x00\xed\xa1\x00\x00M\x00\x00\x00\x1c\xa2\x00\x00\x06\x00\x00\x00j\xa2\x00\x00+\x00\x00\x00q\xa2\x00\x00\x1b\x00\x00\x00\x9d\xa2\x00\x00&\x00\x00\x00\xb9\xa2\x00\x00#\x00\x00\x00\xe0\xa2\x00\x00,\x00\x00\x00\x04\xa3\x00\x00:\x00\x00\x001\xa3\x00\x00/\x00\x00\x00l\xa3\x00\x00)\x00\x00\x00\x9c\xa3\x00\x00&\x00\x00\x00\xc6\xa3\x00\x00\n\x00\x00\x00\xed\xa3\x00\x00\x17\x00\x00\x00\xf8\xa3\x00\x00\x1a\x00\x00\x00\x10\xa4\x00\x00$\x00\x00\x00+\xa4\x00\x00\x11\x00\x00\x00P\xa4\x00\x00\x07\x00\x00\x00b\xa4\x00\x00\x1f\x00\x00\x00j\xa4\x00\x00\x12\x00\x00\x00\x8a\xa4\x00\x00\x1d\x00\x00\x00\x9d\xa4\x00\x00\x13\x00\x00\x00\xbb\xa4\x00\x00\x17\x00\x00\x00\xcf\xa4\x00\x00\x0c\x00\x00\x00\xe7\xa4\x00\x00\x10\x00\x00\x00\xf4\xa4\x00\x00!\x00\x00\x00\x05\xa5\x00\x00\x17\x00\x00\x00\'\xa5\x00\x00\x1d\x00\x00\x00?\xa5\x00\x00\x07\x00\x00\x00]\xa5\x00\x00\x0b\x00\x00\x00e\xa5\x00\x00D\x00\x00\x00q\xa5\x00\x00\x06\x00\x00\x00\xb6\xa5\x00\x00\xc1\x00\x00\x00\xbd\xa5\x00\x004\x01\x00\x00\x7f\xa6\x00\x00[\x00\x00\x00\xb4\xa7\x00\x00&\x00\x00\x00\x10\xa8\x00\x00\x03\x00\x00\x007\xa8\x00\x00\x06\x00\x00\x00;\xa8\x00\x00\x07\x00\x00\x00B\xa8\x00\x00\x06\x00\x00\x00J\xa8\x00\x004\x00\x00\x00Q\xa8\x00\x00\x1e\x00\x00\x00\x86\xa8\x00\x00\x1e\x00\x00\x00\xa5\xa8\x00\x00\t\x00\x00\x00\xc4\xa8\x00\x00\x1f\x00\x00\x00\xce\xa8\x00\x00\x18\x00\x00\x00\xee\xa8\x00\x00\x06\x00\x00\x00\x07\xa9\x00\x00:\x02\x00\x00\x0e\xa9\x00\x00\x8f\x00\x00\x00I\xab\x00\x00\x82\x00\x00\x00\xd9\xab\x00\x00\x16\x00\x00\x00\\\xac\x00\x00\x14\x00\x00\x00s\xac\x00\x00\xcc\x00\x00\x00\x88\xac\x00\x00*\x00\x00\x00U\xad\x00\x00\x14\x00\x00\x00\x80\xad\x00\x00"\x00\x00\x00\x95\xad\x00\x00"\x00\x00\x00\xb8\xad\x00\x00?\x00\x00\x00\xdb\xad\x00\x00\x12\x00\x00\x00\x1b\xae\x00\x00\x1f\x00\x00\x00.\xae\x00\x00#\x00\x00\x00N\xae\x00\x00\x07\x00\x00\x00r\xae\x00\x00"\x00\x00\x00z\xae\x00\x00\n\x00\x00\x00\x9d\xae\x00\x00\n\x00\x00\x00\xa8\xae\x00\x00\x12\x00\x00\x00\xb3\xae\x00\x00=\x00\x00\x00\xc6\xae\x00\x00\n\x00\x00\x00\x04\xaf\x00\x00@\x00\x00\x00\x0f\xaf\x00\x00\x0b\x00\x00\x00P\xaf\x00\x003\x00\x00\x00\\\xaf\x00\x009\x00\x00\x00\x90\xaf\x00\x00\x07\x00\x00\x00\xca\xaf\x00\x001\x00\x00\x00\xd2\xaf\x00\x00i\x00\x00\x00\x04\xb0\x00\x00\x12\x00\x00\x00n\xb0\x00\x00\n\x00\x00\x00\x81\xb0\x00\x00\xa4\x00\x00\x00\x8c\xb0\x00\x00\x17\x00\x00\x001\xb1\x00\x00e\x00\x00\x00I\xb1\x00\x00y\x00\x00\x00\xaf\xb1\x00\x00\x04\x00\x00\x00)\xb2\x00\x00\n\x00\x00\x00.\xb2\x00\x006\x00\x00\x009\xb2\x00\x00\x0e\x00\x00\x00p\xb2\x00\x00\x11\x00\x00\x00\x7f\xb2\x00\x00\x1a\x00\x00\x00\x91\xb2\x00\x00\x15\x00\x00\x00\xac\xb2\x00\x00\x19\x00\x00\x00\xc2\xb2\x00\x00(\x00\x00\x00\xdc\xb2\x00\x00\x19\x00\x00\x00\x05\xb3\x00\x00\x0c\x00\x00\x00\x1f\xb3\x00\x00\x16\x00\x00\x00,\xb3\x00\x00\x14\x00\x00\x00C\xb3\x00\x00\x05\x00\x00\x00X\xb3\x00\x00_\x00\x00\x00^\xb3\x00\x00\x15\x00\x00\x00\xbe\xb3\x00\x00\xf6\x00\x00\x00\xd4\xb3\x00\x00\x18\x00\x00\x00\xcb\xb4\x00\x00\r\x00\x00\x00\xe4\xb4\x00\x00\x15\x00\x00\x00\xf2\xb4\x00\x00\x1d\x00\x00\x00\x08\xb5\x00\x00\x1b\x00\x00\x00&\xb5\x00\x00H\x00\x00\x00B\xb5\x00\x00\x11\x00\x00\x00\x8b\xb5\x00\x00=\x00\x00\x00\x9d\xb5\x00\x00S\x00\x00\x00\xdb\xb5\x00\x00\x92\x00\x00\x00/\xb6\x00\x00\x15\x00\x00\x00\xc2\xb6\x00\x00\x11\x00\x00\x00\xd8\xb6\x00\x00\x14\x00\x00\x00\xea\xb6\x00\x00\x12\x00\x00\x00\xff\xb6\x00\x00J\x00\x00\x00\x12\xb7\x00\x00\x15\x00\x00\x00]\xb7\x00\x00\x04\x00\x00\x00s\xb7\x00\x00O\x00\x00\x00x\xb7\x00\x00V\x00\x00\x00\xc8\xb7\x00\x00"\x00\x00\x00\x1f\xb8\x00\x00r\x00\x00\x00B\xb8\x00\x00\x12\x00\x00\x00\xb5\xb8\x00\x00J\x00\x00\x00\xc8\xb8\x00\x00\x97\x00\x00\x00\x13\xb9\x00\x00Q\x00\x00\x00\xab\xb9\x00\x00\x0f\x00\x00\x00\xfd\xb9\x00\x00;\x00\x00\x00\r\xba\x00\x00\r\x00\x00\x00I\xba\x00\x00\xc6\x00\x00\x00W\xba\x00\x00\x0b\x00\x00\x00\x1e\xbb\x00\x00\x0b\x00\x00\x00*\xbb\x00\x00\t\x00\x00\x006\xbb\x00\x00#\x00\x00\x00@\xbb\x00\x00!\x00\x00\x00d\xbb\x00\x00\x14\x00\x00\x00\x86\xbb\x00\x00\x13\x00\x00\x00\x9b\xbb\x00\x00 \x00\x00\x00\xaf\xbb\x00\x00\x14\x00\x00\x00\xd0\xbb\x00\x00-\x00\x00\x00\xe5\xbb\x00\x00-\x00\x00\x00\x13\xbc\x00\x002\x00\x00\x00A\xbc\x00\x00+\x00\x00\x00t\xbc\x00\x00K\x00\x00\x00\xa0\xbc\x00\x00\x11\x00\x00\x00\xec\xbc\x00\x00\x1d\x00\x00\x00\xfe\xbc\x00\x00:\x00\x00\x00\x1c\xbd\x00\x001\x00\x00\x00W\xbd\x00\x00\x92\x00\x00\x00\x89\xbd\x00\x00N\x00\x00\x00\x1c\xbe\x00\x00\x10\x00\x00\x00k\xbe\x00\x00\x15\x00\x00\x00|\xbe\x00\x00>\x00\x00\x00\x92\xbe\x00\x00\x08\x00\x00\x00\xd1\xbe\x00\x00\x0c\x00\x00\x00\xda\xbe\x00\x00\x0e\x00\x00\x00\xe7\xbe\x00\x004\x00\x00\x00\xf6\xbe\x00\x00=\x00\x00\x00+\xbf\x00\x00\r\x00\x00\x00i\xbf\x00\x00z\x00\x00\x00w\xbf\x00\x00\x9e\x00\x00\x00\xf2\xbf\x00\x00P\x00\x00\x00\x91\xc0\x00\x000\x00\x00\x00\xe2\xc0\x00\x00\x15\x00\x00\x00\x13\xc1\x00\x00\x17\x00\x00\x00)\xc1\x00\x00\x17\x00\x00\x00A\xc1\x00\x00%\x00\x00\x00Y\xc1\x00\x00\x05\x00\x00\x00\x7f\xc1\x00\x00\x11\x00\x00\x00\x85\xc1\x00\x00\r\x00\x00\x00\x97\xc1\x00\x00\x07\x00\x00\x00\xa5\xc1\x00\x005\x00\x00\x00\xad\xc1\x00\x00\x18\x00\x00\x00\xe3\xc1\x00\x00*\x00\x00\x00\xfc\xc1\x00\x00\x15\x00\x00\x00\'\xc2\x00\x00\x15\x00\x00\x00=\xc2\x00\x00\x16\x00\x00\x00S\xc2\x00\x00q\x00\x00\x00j\xc2\x00\x00\x10\x00\x00\x00\xdc\xc2\x00\x00\x1a\x00\x00\x00\xed\xc2\x00\x00\x1c\x00\x00\x00\x08\xc3\x00\x00\x12\x00\x00\x00%\xc3\x00\x00\x1c\x00\x00\x008\xc3\x00\x00\x95\x00\x00\x00U\xc3\x00\x00}\x00\x00\x00\xeb\xc3\x00\x00]\x00\x00\x00i\xc4\x00\x002\x00\x00\x00\xc7\xc4\x00\x00@\x00\x00\x00\xfa\xc4\x00\x00v\x00\x00\x00;\xc5\x00\x00\x0c\x00\x00\x00\xb2\xc5\x00\x00\x15\x00\x00\x00\xbf\xc5\x00\x00\x15\x00\x00\x00\xd5\xc5\x00\x00\x1c\x00\x00\x00\xeb\xc5\x00\x00\x1c\x01\x00\x00\x08\xc6\x00\x00v\x00\x00\x00%\xc7\x00\x00\x9f\x00\x00\x00\x9c\xc7\x00\x00\n\x01\x00\x00<\xc8\x00\x00]\x01\x00\x00G\xc9\x00\x00R\x00\x00\x00\xa5\xca\x00\x00\x8f\x01\x00\x00\xf8\xca\x00\x00%\x00\x00\x00\x88\xcc\x00\x00\x06\x00\x00\x00\xae\xcc\x00\x00\x1f\x00\x00\x00\xb5\xcc\x00\x00\x18\x00\x00\x00\xd5\xcc\x00\x00\x0b\x00\x00\x00\xee\xcc\x00\x00(\x00\x00\x00\xfa\xcc\x00\x00\x07\x00\x00\x00#\xcd\x00\x00\x10\x00\x00\x00+\xcd\x00\x00#\x00\x00\x00<\xcd\x00\x00\t\x00\x00\x00`\xcd\x00\x00\xab\x00\x00\x00j\xcd\x00\x00\x04\x00\x00\x00\x16\xce\x00\x00\t\x00\x00\x00\x1b\xce\x00\x00=\x00\x00\x00%\xce\x00\x00\x1f\x00\x00\x00c\xce\x00\x003\x00\x00\x00\x83\xce\x00\x00~\x00\x00\x00\xb7\xce\x00\x00l\x00\x00\x006\xcf\x00\x00\x1a\x00\x00\x00\xa3\xcf\x00\x00\x1a\x00\x00\x00\xbe\xcf\x00\x00z\x00\x00\x00\xd9\xcf\x00\x00\xb9\x00\x00\x00T\xd0\x00\x00.\x00\x00\x00\x0e\xd1\x00\x00#\x00\x00\x00=\xd1\x00\x00%\x00\x00\x00a\xd1\x00\x00\x99\x00\x00\x00\x87\xd1\x00\x00\'\x00\x00\x00!\xd2\x00\x00"\x00\x00\x00I\xd2\x00\x00^\x00\x00\x00l\xd2\x00\x00s\x00\x00\x00\xcb\xd2\x00\x00\x1f\x00\x00\x00?\xd3\x00\x00\x8f\x00\x00\x00_\xd3\x00\x005\x00\x00\x00\xef\xd3\x00\x00W\x00\x00\x00%\xd4\x00\x00\x0b\x00\x00\x00}\xd4\x00\x00\x05\x00\x00\x00\x89\xd4\x00\x00\x1f\x00\x00\x00\x8f\xd4\x00\x00\x06\x00\x00\x00\xaf\xd4\x00\x00=\x00\x00\x00\xb6\xd4\x00\x00!\x00\x00\x00\xf4\xd4\x00\x00,\x00\x00\x00\x16\xd5\x00\x00/\x00\x00\x00C\xd5\x00\x00$\x00\x00\x00s\xd5\x00\x00\x10\x00\x00\x00\x98\xd5\x00\x00\t\x00\x00\x00\xa9\xd5\x00\x00\x1b\x00\x00\x00\xb3\xd5\x00\x00\x0e\x00\x00\x00\xcf\xd5\x00\x00\x12\x00\x00\x00\xde\xd5\x00\x00\x12\x00\x00\x00\xf1\xd5\x00\x00\n\x00\x00\x00\x04\xd6\x00\x00m\x00\x00\x00\x0f\xd6\x00\x00\x1d\x01\x00\x00}\xd6\x00\x00[\x00\x00\x00\x9b\xd7\x00\x00a\x00\x00\x00\xf7\xd7\x00\x00\x1b\x00\x00\x00Y\xd8\x00\x00!\x00\x00\x00u\xd8\x00\x005\x00\x00\x00\x97\xd8\x00\x00&\x00\x00\x00\xcd\xd8\x00\x00\xe2\x00\x00\x00\xf4\xd8\x00\x00B\x00\x00\x00\xd7\xd9\x00\x00\x1d\x00\x00\x00\x1a\xda\x00\x00i\x00\x00\x008\xda\x00\x00N\x00\x00\x00\xa2\xda\x00\x00\x1c\x00\x00\x00\xf1\xda\x00\x007\x00\x00\x00\x0e\xdb\x00\x00\x08\x00\x00\x00F\xdb\x00\x00\x19\x00\x00\x00O\xdb\x00\x00\x1b\x00\x00\x00i\xdb\x00\x00\x11\x00\x00\x00\x85\xdb\x00\x00\'\x00\x00\x00\x97\xdb\x00\x00=\x00\x00\x00\xbf\xdb\x00\x00q\x00\x00\x00\xfd\xdb\x00\x00\x92\x00\x00\x00o\xdc\x00\x001\x00\x00\x00\x02\xdd\x00\x00R\x00\x00\x004\xdd\x00\x00.\x00\x00\x00\x87\xdd\x00\x00\xf3\x00\x00\x00\xb6\xdd\x00\x00\x07\x00\x00\x00\xaa\xde\x00\x00\n\x00\x00\x00\xb2\xde\x00\x00\x0e\x00\x00\x00\xbd\xde\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">calibre</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://calibre.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00calibre\x00contains\x00mybook.epub\x00Project-Id-Version: calibre 0.4.17\nPOT-Creation-Date: 2008-04-07 16:11+IST\nPO-Revision-Date: 2008-04-04 17:29+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\tBaen Datei erkannt. Analysiere erneut...\x00\tBook Designer Datei erkannt.\x00\tKonvertiere in BBeB...\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\tAnalysiere HTML...\x00\n%prog [options] ISBN\n\nUmschlagbild des Buches mit der angegebenen ISBN von LibraryThing.com abrufen\n\x00\n%prog [options] key\n\nRufe Metadaten der B\xc3\xbccher von isndb.com ab. Sie k\xc3\xb6nnen entweder die\nISBN oder den Titel und den Autor des Buches angeben. Wenn Sie Titel und Autor angeben,\nkann es sein, dass mehrere B\xc3\xbccher gefunden werden.\n\nkey steht f\xc3\xbcr den Konto-Schl\xc3\xbcssel, der nach der kostenfreien Registrierung bei isbndb.com erstellt werden kann.\n\n\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%%prog [options] ARG\n\n%%prog analysiert eine Online-Quelle von Artikeln, z.B. einen RSS oder ATOM Feed und \nruft die Artikelinhalte hierarchisch organisiert ab.\n\nARG kann eines der folgenden sein:\n\ndateiname - %%prog versucht ein Rezept aus der Datei zu laden\n\ninstalliertes Rezept - %%prog l\xc3\xa4dt ein installiertes Rezept und benutzt es, um den Feed abzurufen. Z.B. f\xc3\xbcr Newsweek or "The BBC" or "The New York Times"\n\nRezept als eine Reihung - %%prog l\xc3\xa4dt das Rezept direkt nach der angegebenen Reihung.\n\nVerf\xc3\xbcgbare installierte Rezepte:\n%s\n\x00%prog URL\n\nURL ist z.B. http://google.com\x00%prog [options] datei.lrs\nErstellt eine LRF Datei aus einer LRS Datei.\x00%prog [options] dateiname.lrf\n\n\nZeigt/ver\xc3\xa4ndert die Metadaten in einer LRF Datei.\n\n\x00%prog [options] dateiname.pdf\n\n\n%prog konvertiert dateiname.pdf in dateiname.lrf\x00%prog [options] dateiname.rtf\n\n\n%prog konvertiert dateiname.rtf in dateiname.lrf\x00%prog [options] dateiname.txt\n\n\n%prog konvertiert dateiname.txt in dateiname.lrf\x00%prog [options] dateiname.mobi\x00%prog dateiname.lrf\nKonvertiert eine LRF Datei in eine LRS (XML UTF-8 kodierte) Datei\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00&Zugriffsschl\xc3\xbcssel:\x00Feed &anf\xc3\xbcgen\x00Etikett &anf\xc3\xbcgen:\x00&Autor:\x00&Unterer Rand:\x00Datenbank verdi&chten\x00Kapitel Ermittlung &deaktivieren\x00&Feed Titel:\x00Seitenumbruch vor Element &erzwingen:\x00&Kopfzeilenformat:\x00&Linker Rand:\x00Speicherort der B\xc3\xbccherdatenbank (&library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace:\x00\xc3\x84<ester Artikel:\x00&Seitenumbruch vor Element:\x00&Passwort:\x00&Vorbearbeiten:\x00&Priorit\xc3\xa4t der Konvertierungsauftr\xc3\xa4ge:\x00&Profil:\x00&Herausgeber:\x00&Bewertung:\x00&Regul\xc3\xa4rer Ausdruck:\x00Rezept entfe&rnen\x00Etiketten entfe&rnen:\x00&Rechter Rand:\x00&Suche:\x00&Serien:\x00&Serif:\x00Kopfzeile an&zeigen\x00Pa&sswort anzeigen\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&Titel:\x00&Oberer Rand:\x00Ben&utzername:\x00&Wortabstand:\x00...\x00<b>\xc3\x84nderungen treten erst nach einem Neustart in Kraft.\x00<b>Konnte kein Umschlagbild abrufen.</b><br/>\x00<b>Keine Treffer</b> f\xc3\xbcr die Suchworte <i>%s</i> gefunden.\x00<br>Muss ein Verzeichnis sein.\x00<font color="gray">Keine Hilfe verf\xc3\xbcgbar</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hilfe gibt es online bei <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">calibre</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML Dateien von Book Designer</li>\x00<li><b>pdftohtml</b> - HTML Dateien, die mit dem Programm pdftohtml erstellt wurden</li>\x00<ol><li><b>baen</b> - B\xc3\xbccher von BAEN Publishers</li>\x00<p>Es existiert bereits eine ung\xc3\xbcltige Datenbank in %s, bitte l\xc3\xb6schen Sie diese, bevor sie die bestehende Datenbank verschieben.<br>Fehler: %s\x00<p>Es existieren bereits B\xc3\xbccher mit dem selben Titel in der Datenbank. Sollen die folgenden B\xc3\xbccher trotzdem hinzugef\xc3\xbcgt werden?<ul>\x00<p>Es k\xc3\xb6nnen keine B\xc3\xbccher mehr auf das Ger\xc3\xa4t geladen werden, da der Ger\xc3\xa4tespeicher voll ist \x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr <b>LibraryThing.com</b> an. <br/>Insofern Sie dies nicht besitzen, k\xc3\xb6nnen Sie sich kostenlos <a href=\'http://www.librarything.com\'>anmelden</a>! </p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Es trat ein Fehler beim Lesen dieser Datei auf: <br /><b>\x00<span style="color:red; font-weight:bold">Letzte Version: <a href="%s">%s</a></span>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Zuge&wiesene Etiketten\x00&Verf\xc3\xbcgbare Etiketten\x00Aktive Auftr\xc3\xa4ge\x00&Etiketten hinzuf\xc3\xbcgen: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Ein Verzeichnis zur Liste der h\xc3\xa4ufig genutzten Verzeichnisse hinzuf\xc3\xbcgen\x00Kopfzeile mit Titel und Autornamen f\xc3\xbcr alle Seiten einf\xc3\xbcgen. \x00Ein neues Format f\xc3\xbcr dieses Buch zur Datenbank hinzuf\xc3\xbcgen\x00B\xc3\xbccher hinzuf\xc3\xbcgen\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Aussehen der erstellten LRF Datei durch die Angabe von Schriftgr\xc3\xb6\xc3\x9fen und Wortabst\xc3\xa4nden angleichen.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Ein Fehler trat w\xc3\xa4hrend der Bearbeitung einer Tabelle auf: %s. Tabellenformat wird ignoriert.\x00Irgendein\x00Jeder Link, der diesem Regul\xc3\xa4ren Ausdruck entspricht, wird ignoriert. Diese Option kann mehrmals angegeben werden, somit werden Links ignoriert, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden keine Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben sind, wird --filter-regexp zuerst angewendet.\x00Etikett dem aktuellen Buch zuweisen\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00S&ortierung nach Autor:\x00So&rtierung nach Autor:\x00Autor(en)\x00Autoren:\x00Verf\xc3\xbcgbare Formate\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Zur\xc3\xbcck\x00Schlechte Tabelle:\n%s\x00Ausgangsschrift&gr\xc3\xb6\xc3\x9fe:\x00Grundverzeichnis, in das die URL gespeichert wird. Voreinstellung ist %default \x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\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\x00Konnte Link %s nicht zu TOC hinzuf\xc3\xbcgen\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\x00Lesen nicht m\xc3\xb6glich von: %s\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\x00Verdichte Datenbank. Das kann dauern...\x00Verdichte Datenbank...\x00Konfiguration\x00Konfigurieren\x00Viewer konfigurieren \x00Konvertiere %s in LRF\x00In eBooks umwandeln\x00Konvertierung von LRS in LRS, hilfreich bei der Fehlersuche.\x00Einzeln konvertieren\x00Zu LRF konvertieren\x00Zu LRS 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\x00Konnte Bild nicht verarbeiten: %s\n%s\x00Konnte Umschlagbild nicht lesen: %s\x00Umschlagbild gespeichert unter\x00Erstellt von \x00Erstelle XML...\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\x00Ger\xc3\xa4tedatenbank ist besch\xc3\xa4digt\x00Lade CSS Stylesheets nicht herunter.\x00Was wei\xc3\x9f ich, f\xc3\xbcr was das ist\x00Fortschrittsbalken nicht anzeigen\x00Doppelklick erm\xc3\xb6glicht <b>Bearbeitung</b><br><br>\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:\x00Fehlschlag bei der Analysierung von %s %s\x00Verarbeitung der OPF Datei schlug fehl\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Abrufen\x00Umschlagbild vom Server abrufen\x00Meta-Daten abrufen\x00Meta-Daten vom Server abrufen\x00Nachrichten abrufen\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Meta-Daten abrufen f\xc3\xbcr <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Feineinstellung der Erkennung von Kapitel- und Absatz\xc3\xbcberschriften.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://calibre.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Seitenumbruch vor einem Element mit dem angegebenen Attribut erzwingen. Das Format dieser Einstellung ist tagname regexp,attribute name,attribute value regexp. Um zum Beispiel alle "heading" Elemente, die das Attribut class="chapter" anzupassen, verwenden Sie "h\\d,class,chapter". Voreinstellung ist %default\x00Seitenumbruch erzwingen vor Elementen, deren Namen diesem regul\xc3\xa4ren Ausdruck entsprechen. \x00Seitenumbruch vor &Attribut erzwingen:\x00Art\x00Format\x00Formate\x00Weiter\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00H\xc3\xa4ufig benutzte Verzeichnisse\x00Feeds der Index Seite erhalten\x00Kopfzeile\x00Hilfe f\xc3\xbcr das jeweilige Objekt\x00Mit Trennstrich versehen\x00IS&BN:\x00Wenn html2lrf keine Seitenumbr\xc3\xbcche in der HTML Datei und keine Kapitel-\xc3\x9cberschriften finden kann, f\xc3\xbcgt es automatisch Seitenumbr\xc3\xbcche vor Elementen ein, deren Namen mit diesem regul\xc3\xa4ren Ausdruck entsprechen. Voreinstellung ist %default. Sie k\xc3\xb6nnen dies deaktivieren indem sie den regul\xc3\xa4ren Ausdruck "$" verwenden. Der Zweck dieser Einstellung ist der Versuch sicherzustellen, dass keine extrem langen Seiten entstehen, da dies das Umbl\xc3\xa4ttern der in der LRF Datei verlangsamt. Diese Einstellung wird ignoriert, wenn die aktuelle Seite nur wenige Elemente enth\xc3\xa4lt.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Falls die Quelldatei ein Umschlagbild enth\xc3\xa4lt, das Umschlagbild der Quelldatei benutzen, anstatt des angegebenen Umschlagbildes. \x00Farben nicht bea&chten\x00&Tabellen ignorieren\x00Schriftgr\xc3\xb6\xc3\x9fe um 2 * FONT_DELTA Punkt und Zeilenabstand um FONT_DELTA Punkt vergr\xc3\xb6\xc3\x9fern. FONT_DELTA kann ein Bruchteil sein. Falls FONT_DELTA negativ angegeben wird, wird die Schriftgr\xc3\xb6\xc3\x9fe verkleinert.\x00&Leerzeilen zwischen Paragraphen einf\xc3\xbcgen\x00Ung\xc3\xbcltige Datenbank\x00Ortsangabe der Datenbank ung\xc3\xbcltig\x00Ortsangabe der Datenbank ung\xc3\xbcltig\x00Ortsangabe der Datenbank ung\xc3\xbcltig.<br>Speichern nicht m\xc3\xb6glich\x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Auftrag\x00Auftrag durch Benutzer abgebrochen\x00Auftr\xc3\xa4ge:\x00LRF Viewer\x00LRS gespeichert in\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.\x00Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt werden. Voreinstellung %default\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:\x00Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. Voreinstellung ist %default s\x00Mindest-Zeileneinzug von Paragraphen (Zeileneinzug der ersten Zeile eines Paragraphen) in Punkt. Voreinstellung: %default\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\x00Keine Datei zur Konvertierung angegeben.\x00Kein Dateiname angegeben.\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\x00OEB eBook erstellt in\x00Nur Links, die diesem Regul\xc3\xa4ren Ausdruck entsprechen, werden verfolgt. Diese Option kann mehrmals angegeben werden, somit werden Links verfolgt, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden alle Links verfolgt.\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)\x00Ausgabe LRS Datei\x00Ausgabeverzeichnis. Voreinstellung ist akutelles Verzeichnis.\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\x00Analysieren LRF...\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.\x00Pfad zur Zieldatei\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\x00Gebe erstellte HTML auf stdout aus und beende das Programm.\x00Verarbeite %s\x00Profil des Zielger\xc3\xa4ts f\xc3\xbcr das diese LRF Datei erstellt wird. Das Profil legt unter anderem die Aufl\xc3\xb6sung und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4tes fest. Voreinstellung: %s Unterst\xc3\xbctzte Profile:\x00Fortschritt\x00Herausgeber\x00Bewertung\x00Bewertung dieses Buches: 0-5 Sterne\x00Original MOBI HTML gespeichert in\x00Reader\n%s verf\xc3\xbcgbar\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00B\xc3\xbccher entfernen\x00Feed aus dem Rezept entfernen\x00Markierte Formate dieses Buches aus der Datenbank l\xc3\xb6schen\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00HTML Tabellen als Textbl\xc3\xb6cke rendern und nicht als Tabellen. Dies ist notwendig, wenn die HTML Datei sehr gro\xc3\x9fe oder komplexe Tabellen enth\xc3\xa4lt.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Quick Search l\xc3\xb6schen\x00Rechter Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Laufzeit\x00S&ans-serif:\x00Auf HD sichern\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Liste der B\xc3\xbccher nach Titel oder Autor durchsuchen<br><br>Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00Liste der B\xc3\xbccher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen<br><br>Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00W\xc3\xa4hlen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe entspricht\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00An Reader \xc3\xbcbertragen\x00An Hauptspeicher senden\x00An Speicherkarte senden\x00Paragraphen durch Leerzeilen trennen.\x00Serie\x00Index der Serien.\x00Serien Index:\x00Serien:\x00Server-Fehler. Bitte versuchen Sie es sp\xc3\xa4ter wieder.\x00Geben Sie die Buch ID an\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie den Autor an\x00Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt angegeben werden. Voreinstellung: %default\x00Gebe Autoren ein\x00Geben Sie den Buchtitel an\x00Geben Sie eine Kategorie an.\x00Gebe Kommentar ein\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.\x00Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche.\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.\x00Geben Sie die Zeichenkodierung der Ausgangsdatei an. Sollte die ausgegebene LRF Datei seltsame Zeichen enthalten, \xc3\xa4ndern Sie diese Einstellung. Eine gebr\xc3\xa4uchliche Kodierung von Dateien, die von Windows Computern stammen, ist cp-1252. Eine andere gebr\xc3\xa4uchliche Alternative ist utf-8. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Seiteneinstellungen wie R\xc3\xa4nder und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4ts angeben.\x00Geben Sie Truetype Schriftarten f\xc3\xbcr serife, serifenlose und nichtproportionale Schriften an. Diese Schriften werden in die LRF Datei eingebettet. Bitte beachten Sie, dass individuell eingebettete Schriften das Umbl\xc3\xa4ttern verlangsamen. Jede Schriftartfamilie wird folgenderma\xc3\x9fen angegeben: "Pfad zum Verzeichnis der Schriften, Schriftartfamilie" Zum Beispiel: --serif-family "%s, Times New Roman"\n\x00Starte Download von [%d Thread(s)]...\x00Status\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00&Etiketten:\x00Tabelle enth\xc3\xa4lt Zelle, die zu gro\xc3\x9f ist\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 ISBN des Buches, f\xc3\xbcr das Sie Metadaten abrufen m\xc3\xb6chten.\x00Der Autor des gesuchten Buches.\x00Die Kategorie dieses Buches ... (Z. B.: Geschichte)\x00Zeichenkodierung f\xc3\xbcr Webseiten, die zu laden versucht werden. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00H\xc3\xb6chstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus <a href> Tags zu. Voreinstellung ist %default\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 Herausgeber des gesuchten Buches.\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.\x00Der Titel des gesuchten Buches.\x00Es trat ein Fehler in der Kommunikation mit dem Ger\xc3\xa4t auf. Bitte entfernen und schlie\xc3\x9fen Sie das Ger\xc3\xa4t wieder an und - oder starten Sie neu.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: %default s\x00Zeitstempel\x00Titel\x00Auf Titel basierende Ermittlung\x00Titel:\x00Oberer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Versuche Umschlagbild zu laden...\x00Konnte Bild %s nicht verarbeiten. Fehler: %s\x00Konnte verschachteltes PNG %s nicht verarbeiten\x00Etikett vom aktuellen Buch entfernen\x00Nicht verf\xc3\xbcgbar\x00Unbekannt\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Benutzung:\x00Benutzung: %prog [options] dateiname.epub\n \n \n%prog konvertiert dateiname.epub in dateiname.lrf\x00Benutzung: %prog [options] dateiname.html\n\n\n%prog konvertiert dateiname.html in dateiname.lrf. \n%prog folgt allen Hyperlinks in dateiname.html, die rekursiv auf \nlokale Dateien verweisen. Somit k\xc3\xb6nnen Sie es verwenden,\num einen ganzen Verzeichnisbaum von HTML Dateien zu konvertieren.\x00Benutzung: %prog [options] dateiname.lit\n\n\n%prog konvertiert dateiname.lit in dateiname.lrf\x00Benutzung: %prog [options] dateiname.mobi|prc\n\n\n%prog konvertiert dateiname.mobi in dateiname.lrf\x00Benutzung: %s dateiname.lit\x00Benutzung: pdf-meta dateiname.pdf\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.\x00Mit mehr W\xc3\xb6rtern fortfahren\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Vorschau\x00Spezielles Format ansehen\x00Abwarten und Tee trinken...\x00Bei der Arbeit...\x00Vorverarbeitetes HTML gespeichert unter\x00Sie haben nicht die n\xc3\xb6tigen Rechte, um diese Datei zu lesen:\x00Sichern Sie die Website %s zuerst als HTML Datei und benutzen Sie dann html2lrf mit der gespeicherten HTML Datei.\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.\x00any2lrf [options] dateiname\n\nKonvertiert verschiedene eBook Formate in LRF Dateien. Unterst\xc3\xbctzte Formate:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC und PDF. any2lrf verarbeitet auch RAR oder\nZIP Archive, indem es nach einem eBook im Archiv sucht.\n\x00calibre\x00beinhaltet\x00dateiname.epub\x00', 'it': '\xde\x12\x04\x95\x00\x00\x00\x00\xee\x01\x00\x00\x1c\x00\x00\x00\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x1e\x00\x00"\x00\x00\x00\xfd\x1e\x00\x00\x1d\x00\x00\x00 \x1f\x00\x00\x16\x00\x00\x00>\x1f\x00\x00\x0e\x00\x00\x00U\x1f\x00\x00\x10\x00\x00\x00d\x1f\x00\x00a\x00\x00\x00u\x1f\x00\x00+\x01\x00\x00\xd7\x1f\x00\x00!\x00\x00\x00\x03!\x00\x00\x05\x00\x00\x00%!\x00\x00\x06\x00\x00\x00+!\x00\x00\x17\x00\x00\x002!\x00\x00\x0b\x00\x00\x00J!\x00\x00\x04\x00\x00\x00V!\x00\x00\x03\x00\x00\x00[!\x00\x00\x08\x00\x00\x00_!\x00\x00\x06\x00\x00\x00h!\x00\x00\xfd\x01\x00\x00o!\x00\x005\x00\x00\x00m#\x00\x00>\x00\x00\x00\xa3#\x00\x00E\x00\x00\x00\xe2#\x00\x00D\x00\x00\x00($\x00\x00D\x00\x00\x00m$\x00\x00D\x00\x00\x00\xb2$\x00\x00\x1c\x00\x00\x00\xf7$\x00\x00G\x00\x00\x00\x14%\x00\x00\x1c\x00\x00\x00\\%\x00\x00\x0e\x00\x00\x00y%\x00\x00\x0c\x00\x00\x00\x88%\x00\x00\t\x00\x00\x00\x95%\x00\x00\t\x00\x00\x00\x9f%\x00\x00\x0c\x00\x00\x00\xa9%\x00\x00\x0f\x00\x00\x00\xb6%\x00\x00\x11\x00\x00\x00\xc6%\x00\x00\x1a\x00\x00\x00\xd8%\x00\x00\x0c\x00\x00\x00\xf3%\x00\x00\x1d\x00\x00\x00\x00&\x00\x00\x0f\x00\x00\x00\x1e&\x00\x00\r\x00\x00\x00.&\x00\x00)\x00\x00\x00<&\x00\x00"\x00\x00\x00f&\x00\x00\x18\x00\x00\x00\x89&\x00\x00\x0b\x00\x00\x00\xa2&\x00\x00\x10\x00\x00\x00\xae&\x00\x00\x17\x00\x00\x00\xbf&\x00\x00\n\x00\x00\x00\xd7&\x00\x00\x0c\x00\x00\x00\xe2&\x00\x00\x1e\x00\x00\x00\xef&\x00\x00\t\x00\x00\x00\x0e\'\x00\x00\x0c\x00\x00\x00\x18\'\x00\x00\x08\x00\x00\x00%\'\x00\x00\x14\x00\x00\x00.\'\x00\x00\x0e\x00\x00\x00C\'\x00\x00\r\x00\x00\x00R\'\x00\x00\x0e\x00\x00\x00`\'\x00\x00\x08\x00\x00\x00o\'\x00\x00\x08\x00\x00\x00x\'\x00\x00\x07\x00\x00\x00\x81\'\x00\x00\x0c\x00\x00\x00\x89\'\x00\x00\x0e\x00\x00\x00\x96\'\x00\x00\x12\x00\x00\x00\xa5\'\x00\x00\x05\x00\x00\x00\xb8\'\x00\x00\x08\x00\x00\x00\xbe\'\x00\x00\x0c\x00\x00\x00\xc7\'\x00\x00\n\x00\x00\x00\xd4\'\x00\x00\x0e\x00\x00\x00\xdf\'\x00\x00\x03\x00\x00\x00\xee\'\x00\x001\x00\x00\x00\xf2\'\x00\x00"\x00\x00\x00$(\x00\x00=\x00\x00\x00G(\x00\x00\x18\x00\x00\x00\x85(\x00\x00+\x00\x00\x00\x9e(\x00\x00\x00\x02\x00\x00\xca(\x00\x00\xa3\x01\x00\x00\xcb*\x00\x00|\x02\x00\x00o,\x00\x00>\x00\x00\x00\xec.\x00\x00S\x00\x00\x00+/\x00\x005\x00\x00\x00\x7f/\x00\x00p\x00\x00\x00\xb5/\x00\x00a\x00\x00\x00&0\x00\x00G\x00\x00\x00\x880\x00\x00(\x00\x00\x00\xd00\x00\x00\xa7\x00\x00\x00\xf90\x00\x00W\x00\x00\x00\xa11\x00\x00\x96\x00\x00\x00\xf91\x00\x00=\x01\x00\x00\x902\x00\x002\x00\x00\x00\xce3\x00\x00T\x00\x00\x00\x014\x00\x00\x01\x00\x00\x00V4\x00\x00C\x00\x00\x00X4\x00\x00X\x00\x00\x00\x9c4\x00\x00\r\x00\x00\x00\xf54\x00\x00\x0f\x00\x00\x00\x035\x00\x00\x0b\x00\x00\x00\x135\x00\x00\x0b\x00\x00\x00\x1f5\x00\x00\x18\x00\x00\x00+5\x00\x007\x00\x00\x00D5\x00\x004\x00\x00\x00|5\x00\x00.\x00\x00\x00\xb15\x00\x00\t\x00\x00\x00\xe05\x00\x00!\x00\x00\x00\xea5\x00\x00b\x00\x00\x00\x0c6\x00\x00o\x00\x00\x00o6\x00\x00\x16\x00\x00\x00\xdf6\x00\x00\x12\x00\x00\x00\xf66\x00\x006\x00\x00\x00\t7\x00\x00\x12\x00\x00\x00@7\x00\x00m\x00\x00\x00S7\x00\x00\x08\x00\x00\x00\xc17\x00\x00\x0f\x00\x00\x00\xca7\x00\x00\x0f\x00\x00\x00\xda7\x00\x00\x0e\x00\x00\x00\xea7\x00\x00\x05\x00\x00\x00\xf97\x00\x00F\x00\x00\x00\xff7\x00\x00\x03\x00\x00\x00F8\x00\x005\x01\x00\x00J8\x00\x00\x19\x00\x00\x00\x809\x00\x00\x1b\x00\x00\x00\x9a9\x00\x00\x16\x00\x00\x00\xb69\x00\x00\x06\x00\x00\x00\xcd9\x00\x00\x0e\x00\x00\x00\xd49\x00\x00\r\x00\x00\x00\xe39\x00\x00\t\x00\x00\x00\xf19\x00\x00\x08\x00\x00\x00\xfb9\x00\x00\x11\x00\x00\x00\x04:\x00\x00\x16\x00\x00\x00\x16:\x00\x00\x04\x00\x00\x00-:\x00\x00\r\x00\x00\x002:\x00\x00\x10\x00\x00\x00@:\x00\x00;\x00\x00\x00Q:\x00\x00\x05\x00\x00\x00\x8d:\x00\x00!\x00\x00\x00\x93:\x00\x00\x10\x00\x00\x00\xb5:\x00\x00\x1b\x00\x00\x00\xc6:\x00\x00\x05\x00\x00\x00\xe2:\x00\x00(\x00\x00\x00\xe8:\x00\x00\n\x00\x00\x00\x11;\x00\x00.\x00\x00\x00\x1c;\x00\x005\x00\x00\x00K;\x00\x00$\x00\x00\x00\x81;\x00\x00\x0c\x00\x00\x00\xa6;\x00\x00\x1a\x00\x00\x00\xb3;\x00\x00\x19\x00\x00\x00\xce;\x00\x00\x10\x00\x00\x00\xe8;\x00\x00.\x00\x00\x00\xf9;\x00\x00\x0e\x00\x00\x00(<\x00\x00\x0e\x00\x00\x007<\x00\x007\x00\x00\x00F<\x00\x00\x14\x00\x00\x00~<\x00\x00\x12\x00\x00\x00\x93<\x00\x00#\x00\x00\x00\xa6<\x00\x00\x0f\x00\x00\x00\xca<\x00\x00Z\x00\x00\x00\xda<\x00\x00\x19\x00\x00\x005=\x00\x00\x0b\x00\x00\x00O=\x00\x00\x14\x00\x00\x00[=\x00\x00\x13\x00\x00\x00p=\x00\x00\x0b\x00\x00\x00\x84=\x00\x00\x11\x00\x00\x00\x90=\x00\x00\x08\x00\x00\x00\xa2=\x00\x00\x14\x00\x00\x00\xab=\x00\x00\x0f\x00\x00\x00\xc0=\x00\x00R\x00\x00\x00\xd0=\x00\x00!\x00\x00\x00#>\x00\x00\x1d\x00\x00\x00E>\x00\x00H\x00\x00\x00c>\x00\x00\x11\x00\x00\x00\xac>\x00\x00\r\x00\x00\x00\xbe>\x00\x00%\x00\x00\x00\xcc>\x00\x00\x19\x00\x00\x00\xf2>\x00\x00!\x00\x00\x00\x0c?\x00\x007\x00\x00\x00.?\x00\x00\x08\x00\x00\x00f?\x00\x00+\x00\x00\x00o?\x00\x00\r\x00\x00\x00\x9b?\x00\x00\r\x00\x00\x00\xa9?\x00\x00\t\x00\x00\x00\xb7?\x00\x00\x10\x00\x00\x00\xc1?\x00\x00\x11\x00\x00\x00\xd2?\x00\x00\x0f\x00\x00\x00\xe4?\x00\x00)\x00\x00\x00\xf4?\x00\x00\x14\x00\x00\x00\x1e@\x00\x00\x0e\x00\x00\x003@\x00\x00\x0e\x00\x00\x00B@\x00\x00\x1c\x00\x00\x00Q@\x00\x00;\x00\x00\x00n@\x00\x00\x15\x00\x00\x00\xaa@\x00\x00R\x00\x00\x00\xc0@\x00\x00\x17\x00\x00\x00\x13A\x00\x00\x18\x00\x00\x00+A\x00\x00\x1e\x00\x00\x00DA\x00\x00\x1e\x00\x00\x00cA\x00\x00\x0e\x00\x00\x00\x82A\x00\x00\x0b\x00\x00\x00\x91A\x00\x00\x0f\x00\x00\x00\x9dA\x00\x00\x13\x00\x00\x00\xadA\x00\x00\x04\x00\x00\x00\xc1A\x00\x00\x19\x00\x00\x00\xc6A\x00\x00\x03\x00\x00\x00\xe0A\x00\x00h\x00\x00\x00\xe4A\x00\x00\x0e\x00\x00\x00MB\x00\x00\x19\x00\x00\x00\\B\x00\x00 \x00\x00\x00vB\x00\x00\x1b\x00\x00\x00\x97B\x00\x00\x1a\x00\x00\x00\xb3B\x00\x00&\x00\x00\x00\xceB\x00\x00\x11\x00\x00\x00\xf5B\x00\x00\x19\x00\x00\x00\x07C\x00\x00\x11\x00\x00\x00!C\x00\x00\x01\x00\x00\x003C\x00\x00\x05\x00\x00\x005C\x00\x00\x15\x00\x00\x00;C\x00\x00\x15\x00\x00\x00QC\x00\x00\x15\x00\x00\x00gC\x00\x00\x15\x00\x00\x00}C\x00\x00\x1a\x00\x00\x00\x93C\x00\x00\x0e\x00\x00\x00\xaeC\x00\x00\x1f\x00\x00\x00\xbdC\x00\x00C\x00\x00\x00\xddC\x00\x00\x05\x00\x00\x00!D\x00\x00\x1f\x00\x00\x00\'D\x00\x00\x12\x00\x00\x00GD\x00\x00\x17\x00\x00\x00ZD\x00\x00\x1f\x00\x00\x00rD\x00\x00\'\x00\x00\x00\x92D\x00\x003\x00\x00\x00\xbaD\x00\x00*\x00\x00\x00\xeeD\x00\x00\x1a\x00\x00\x00\x19E\x00\x00\x1a\x00\x00\x004E\x00\x00\n\x00\x00\x00OE\x00\x00\x14\x00\x00\x00ZE\x00\x00\x16\x00\x00\x00oE\x00\x00\x16\x00\x00\x00\x86E\x00\x00\x0f\x00\x00\x00\x9dE\x00\x00\x05\x00\x00\x00\xadE\x00\x00\x1d\x00\x00\x00\xb3E\x00\x00\x0e\x00\x00\x00\xd1E\x00\x00\x1a\x00\x00\x00\xe0E\x00\x00\n\x00\x00\x00\xfbE\x00\x00\x10\x00\x00\x00\x06F\x00\x00\r\x00\x00\x00\x17F\x00\x00\x11\x00\x00\x00%F\x00\x00\x1f\x00\x00\x007F\x00\x00\x13\x00\x00\x00WF\x00\x00\x1b\x00\x00\x00kF\x00\x00\x05\x00\x00\x00\x87F\x00\x00\x0b\x00\x00\x00\x8dF\x00\x008\x00\x00\x00\x99F\x00\x00\x08\x00\x00\x00\xd2F\x00\x00\x88\x00\x00\x00\xdbF\x00\x00\x1d\x01\x00\x00dG\x00\x00J\x00\x00\x00\x82H\x00\x00#\x00\x00\x00\xcdH\x00\x00\x04\x00\x00\x00\xf1H\x00\x00\x06\x00\x00\x00\xf6H\x00\x00\x07\x00\x00\x00\xfdH\x00\x00\x07\x00\x00\x00\x05I\x00\x00\'\x00\x00\x00\rI\x00\x00\x1b\x00\x00\x005I\x00\x00\x19\x00\x00\x00QI\x00\x00\x06\x00\x00\x00kI\x00\x00\x0c\x00\x00\x00rI\x00\x00\t\x00\x00\x00\x7fI\x00\x00\x06\x00\x00\x00\x89I\x00\x00\xdc\x01\x00\x00\x90I\x00\x00n\x00\x00\x00mK\x00\x00a\x00\x00\x00\xdcK\x00\x00\x0e\x00\x00\x00>L\x00\x00\x0e\x00\x00\x00ML\x00\x00\xa8\x00\x00\x00\\L\x00\x00&\x00\x00\x00\x05M\x00\x00\x10\x00\x00\x00,M\x00\x00\x19\x00\x00\x00=M\x00\x00\x1a\x00\x00\x00WM\x00\x00.\x00\x00\x00rM\x00\x00\r\x00\x00\x00\xa1M\x00\x00\x1a\x00\x00\x00\xafM\x00\x00\x1e\x00\x00\x00\xcaM\x00\x00\x03\x00\x00\x00\xe9M\x00\x00\x12\x00\x00\x00\xedM\x00\x00\x05\x00\x00\x00\x00N\x00\x00\n\x00\x00\x00\x06N\x00\x00\x0f\x00\x00\x00\x11N\x00\x00,\x00\x00\x00!N\x00\x00\x07\x00\x00\x00NN\x00\x00-\x00\x00\x00VN\x00\x00\x0b\x00\x00\x00\x84N\x00\x00$\x00\x00\x00\x90N\x00\x00$\x00\x00\x00\xb5N\x00\x00\x07\x00\x00\x00\xdaN\x00\x000\x00\x00\x00\xe2N\x00\x00S\x00\x00\x00\x13O\x00\x00\x10\x00\x00\x00gO\x00\x00\x08\x00\x00\x00xO\x00\x00y\x00\x00\x00\x81O\x00\x00\x10\x00\x00\x00\xfbO\x00\x00N\x00\x00\x00\x0cP\x00\x00`\x00\x00\x00[P\x00\x00\x04\x00\x00\x00\xbcP\x00\x00\x06\x00\x00\x00\xc1P\x00\x00"\x00\x00\x00\xc8P\x00\x00\t\x00\x00\x00\xebP\x00\x00\n\x00\x00\x00\xf5P\x00\x00\x14\x00\x00\x00\x00Q\x00\x00\x10\x00\x00\x00\x15Q\x00\x00\x11\x00\x00\x00&Q\x00\x00\x1d\x00\x00\x008Q\x00\x00\x16\x00\x00\x00VQ\x00\x00\x08\x00\x00\x00mQ\x00\x00\x10\x00\x00\x00vQ\x00\x00\x12\x00\x00\x00\x87Q\x00\x00\x04\x00\x00\x00\x9aQ\x00\x00^\x00\x00\x00\x9fQ\x00\x00\x14\x00\x00\x00\xfeQ\x00\x00\xdc\x00\x00\x00\x13R\x00\x00\x0f\x00\x00\x00\xf0R\x00\x00\n\x00\x00\x00\x00S\x00\x00\x07\x00\x00\x00\x0bS\x00\x00-\x00\x00\x00\x13S\x00\x00+\x00\x00\x00AS\x00\x00F\x00\x00\x00mS\x00\x00\x0f\x00\x00\x00\xb4S\x00\x000\x00\x00\x00\xc4S\x00\x008\x00\x00\x00\xf5S\x00\x00s\x00\x00\x00.T\x00\x00\x0f\x00\x00\x00\xa2T\x00\x00\n\x00\x00\x00\xb2T\x00\x00\x10\x00\x00\x00\xbdT\x00\x00\x0e\x00\x00\x00\xceT\x00\x00:\x00\x00\x00\xddT\x00\x00\x0f\x00\x00\x00\x18U\x00\x00\x04\x00\x00\x00(U\x00\x00;\x00\x00\x00-U\x00\x00G\x00\x00\x00iU\x00\x001\x00\x00\x00\xb1U\x00\x00Y\x00\x00\x00\xe3U\x00\x00\x13\x00\x00\x00=V\x00\x004\x00\x00\x00QV\x00\x00\x80\x00\x00\x00\x86V\x00\x00H\x00\x00\x00\x07W\x00\x00\r\x00\x00\x00PW\x00\x00(\x00\x00\x00^W\x00\x00\r\x00\x00\x00\x87W\x00\x00\xbc\x00\x00\x00\x95W\x00\x00\x08\x00\x00\x00RX\x00\x00\t\x00\x00\x00[X\x00\x00\x06\x00\x00\x00eX\x00\x00\x1e\x00\x00\x00lX\x00\x00\x16\x00\x00\x00\x8bX\x00\x00\x13\x00\x00\x00\xa2X\x00\x00\x0e\x00\x00\x00\xb6X\x00\x00\x1b\x00\x00\x00\xc5X\x00\x00\x13\x00\x00\x00\xe1X\x00\x00+\x00\x00\x00\xf5X\x00\x00*\x00\x00\x00!Y\x00\x000\x00\x00\x00LY\x00\x00)\x00\x00\x00}Y\x00\x00<\x00\x00\x00\xa7Y\x00\x00\x0c\x00\x00\x00\xe4Y\x00\x00\x17\x00\x00\x00\xf1Y\x00\x00<\x00\x00\x00\tZ\x00\x000\x00\x00\x00FZ\x00\x00\x84\x00\x00\x00wZ\x00\x00X\x00\x00\x00\xfcZ\x00\x00\x0f\x00\x00\x00U[\x00\x00\x12\x00\x00\x00e[\x00\x00-\x00\x00\x00x[\x00\x00\x0c\x00\x00\x00\xa6[\x00\x00\x0c\x00\x00\x00\xb3[\x00\x00\x0c\x00\x00\x00\xc0[\x00\x00"\x00\x00\x00\xcd[\x00\x009\x00\x00\x00\xf0[\x00\x00\x0f\x00\x00\x00*\\\x00\x00V\x00\x00\x00:\\\x00\x00r\x00\x00\x00\x91\\\x00\x00G\x00\x00\x00\x04]\x00\x00\'\x00\x00\x00L]\x00\x00\x0e\x00\x00\x00t]\x00\x00\x13\x00\x00\x00\x83]\x00\x00\x14\x00\x00\x00\x97]\x00\x00#\x00\x00\x00\xac]\x00\x00\x06\x00\x00\x00\xd0]\x00\x00\r\x00\x00\x00\xd7]\x00\x00\r\x00\x00\x00\xe5]\x00\x00\x07\x00\x00\x00\xf3]\x00\x00\x1e\x00\x00\x00\xfb]\x00\x00\x0b\x00\x00\x00\x1a^\x00\x00\x17\x00\x00\x00&^\x00\x00\x1b\x00\x00\x00>^\x00\x00\x1a\x00\x00\x00Z^\x00\x00\x0e\x00\x00\x00u^\x00\x00^\x00\x00\x00\x84^\x00\x00\x0f\x00\x00\x00\xe3^\x00\x00\x12\x00\x00\x00\xf3^\x00\x00\x10\x00\x00\x00\x06_\x00\x00\x0f\x00\x00\x00\x17_\x00\x00\x10\x00\x00\x00\'_\x00\x00g\x00\x00\x008_\x00\x00c\x00\x00\x00\xa0_\x00\x007\x00\x00\x00\x04`\x00\x00!\x00\x00\x00<`\x00\x006\x00\x00\x00^`\x00\x00d\x00\x00\x00\x95`\x00\x00\t\x00\x00\x00\xfa`\x00\x00\x17\x00\x00\x00\x04a\x00\x00\x16\x00\x00\x00\x1ca\x00\x00\x11\x00\x00\x003a\x00\x00\x04\x01\x00\x00Ea\x00\x00z\x00\x00\x00Jb\x00\x00\x85\x00\x00\x00\xc5b\x00\x00\xb6\x00\x00\x00Kc\x00\x00\r\x01\x00\x00\x02d\x00\x00P\x00\x00\x00\x10e\x00\x00+\x01\x00\x00ae\x00\x00#\x00\x00\x00\x8df\x00\x00\x06\x00\x00\x00\xb1f\x00\x00\x17\x00\x00\x00\xb8f\x00\x00\x14\x00\x00\x00\xd0f\x00\x00\x07\x00\x00\x00\xe5f\x00\x00 \x00\x00\x00\xedf\x00\x00\x03\x00\x00\x00\x0eg\x00\x00\n\x00\x00\x00\x12g\x00\x00\x13\x00\x00\x00\x1dg\x00\x00\x04\x00\x00\x001g\x00\x00\x85\x00\x00\x006g\x00\x00\x04\x00\x00\x00\xbcg\x00\x00\t\x00\x00\x00\xc1g\x00\x00.\x00\x00\x00\xcbg\x00\x00%\x00\x00\x00\xfag\x00\x000\x00\x00\x00 h\x00\x00q\x00\x00\x00Qh\x00\x00X\x00\x00\x00\xc3h\x00\x00\x1b\x00\x00\x00\x1ci\x00\x00\x1a\x00\x00\x008i\x00\x00k\x00\x00\x00Si\x00\x00\x9d\x00\x00\x00\xbfi\x00\x00&\x00\x00\x00]j\x00\x00\x1e\x00\x00\x00\x84j\x00\x00(\x00\x00\x00\xa3j\x00\x00v\x00\x00\x00\xccj\x00\x00\'\x00\x00\x00Ck\x00\x00"\x00\x00\x00kk\x00\x00B\x00\x00\x00\x8ek\x00\x00^\x00\x00\x00\xd1k\x00\x00$\x00\x00\x000l\x00\x00h\x00\x00\x00Ul\x00\x00.\x00\x00\x00\xbel\x00\x00N\x00\x00\x00\xedl\x00\x00\t\x00\x00\x00<m\x00\x00\x05\x00\x00\x00Fm\x00\x00\x15\x00\x00\x00Lm\x00\x00\x06\x00\x00\x00bm\x00\x00+\x00\x00\x00im\x00\x00\x1b\x00\x00\x00\x95m\x00\x00%\x00\x00\x00\xb1m\x00\x00#\x00\x00\x00\xd7m\x00\x00&\x00\x00\x00\xfbm\x00\x00\x0b\x00\x00\x00"n\x00\x00\x07\x00\x00\x00.n\x00\x00\x13\x00\x00\x006n\x00\x00\x0c\x00\x00\x00Jn\x00\x00\x10\x00\x00\x00Wn\x00\x00\x10\x00\x00\x00hn\x00\x00\x06\x00\x00\x00yn\x00\x00]\x00\x00\x00\x80n\x00\x00\xdb\x00\x00\x00\xden\x00\x00K\x00\x00\x00\xbao\x00\x00Q\x00\x00\x00\x06p\x00\x00\x12\x00\x00\x00Xp\x00\x00\x18\x00\x00\x00kp\x00\x00%\x00\x00\x00\x84p\x00\x00\x1b\x00\x00\x00\xaap\x00\x00\xb4\x00\x00\x00\xc6p\x00\x002\x00\x00\x00{q\x00\x00\x14\x00\x00\x00\xaeq\x00\x00_\x00\x00\x00\xc3q\x00\x00:\x00\x00\x00#r\x00\x00\x12\x00\x00\x00^r\x00\x00*\x00\x00\x00qr\x00\x00\x04\x00\x00\x00\x9cr\x00\x00\x14\x00\x00\x00\xa1r\x00\x00\x07\x00\x00\x00\xb6r\x00\x00\x07\x00\x00\x00\xber\x00\x00\x1d\x00\x00\x00\xc6r\x00\x00-\x00\x00\x00\xe4r\x00\x00R\x00\x00\x00\x12s\x00\x00d\x00\x00\x00es\x00\x00#\x00\x00\x00\xcas\x00\x002\x00\x00\x00\xees\x00\x003\x00\x00\x00!t\x00\x00\xdf\x00\x00\x00Ut\x00\x00\x07\x00\x00\x005u\x00\x00\x08\x00\x00\x00=u\x00\x00\x0b\x00\x00\x00Fu\x00\x00o\x01\x00\x00Ru\x00\x00(\x00\x00\x00\xc2v\x00\x00"\x00\x00\x00\xebv\x00\x00\x17\x00\x00\x00\x0ew\x00\x00\x0e\x00\x00\x00&w\x00\x00\x10\x00\x00\x005w\x00\x00p\x00\x00\x00Fw\x00\x00C\x01\x00\x00\xb7w\x00\x00\x1f\x00\x00\x00\xfbx\x00\x00\x07\x00\x00\x00\x1by\x00\x00\x04\x00\x00\x00#y\x00\x00\x1a\x00\x00\x00(y\x00\x00\x0c\x00\x00\x00Cy\x00\x00\x03\x00\x00\x00Py\x00\x00\x03\x00\x00\x00Ty\x00\x00\x08\x00\x00\x00Xy\x00\x00\x07\x00\x00\x00ay\x00\x00\x18\x02\x00\x00iy\x00\x003\x00\x00\x00\x82{\x00\x00?\x00\x00\x00\xb6{\x00\x00J\x00\x00\x00\xf6{\x00\x00J\x00\x00\x00A|\x00\x00J\x00\x00\x00\x8c|\x00\x00J\x00\x00\x00\xd7|\x00\x00\x1d\x00\x00\x00"}\x00\x00J\x00\x00\x00@}\x00\x00\x1d\x00\x00\x00\x8b}\x00\x00\x0c\x00\x00\x00\xa9}\x00\x00\x12\x00\x00\x00\xb6}\x00\x00\x0e\x00\x00\x00\xc9}\x00\x00\x0e\x00\x00\x00\xd8}\x00\x00\x0c\x00\x00\x00\xe7}\x00\x00\x13\x00\x00\x00\xf4}\x00\x00\x12\x00\x00\x00\x08~\x00\x00)\x00\x00\x00\x1b~\x00\x00\x11\x00\x00\x00E~\x00\x00,\x00\x00\x00W~\x00\x00\x16\x00\x00\x00\x84~\x00\x00\x12\x00\x00\x00\x9b~\x00\x00/\x00\x00\x00\xae~\x00\x00%\x00\x00\x00\xde~\x00\x00\x1b\x00\x00\x00\x04\x7f\x00\x00\x12\x00\x00\x00 \x7f\x00\x00\x17\x00\x00\x003\x7f\x00\x00&\x00\x00\x00K\x7f\x00\x00\n\x00\x00\x00r\x7f\x00\x00\x12\x00\x00\x00}\x7f\x00\x00\'\x00\x00\x00\x90\x7f\x00\x00\t\x00\x00\x00\xb8\x7f\x00\x00\n\x00\x00\x00\xc2\x7f\x00\x00\n\x00\x00\x00\xcd\x7f\x00\x00\x16\x00\x00\x00\xd8\x7f\x00\x00\x10\x00\x00\x00\xef\x7f\x00\x00\r\x00\x00\x00\x00\x80\x00\x00\x10\x00\x00\x00\x0e\x80\x00\x00\x07\x00\x00\x00\x1f\x80\x00\x00\x07\x00\x00\x00\'\x80\x00\x00\x0c\x00\x00\x00/\x80\x00\x00\x14\x00\x00\x00<\x80\x00\x00\x10\x00\x00\x00Q\x80\x00\x00!\x00\x00\x00b\x80\x00\x00\x05\x00\x00\x00\x84\x80\x00\x00\t\x00\x00\x00\x8a\x80\x00\x00\x13\x00\x00\x00\x94\x80\x00\x00\r\x00\x00\x00\xa8\x80\x00\x00\x16\x00\x00\x00\xb6\x80\x00\x00\x03\x00\x00\x00\xcd\x80\x00\x00/\x00\x00\x00\xd1\x80\x00\x00.\x00\x00\x00\x01\x81\x00\x00<\x00\x00\x000\x81\x00\x00\x1c\x00\x00\x00m\x81\x00\x002\x00\x00\x00\x8a\x81\x00\x005\x02\x00\x00\xbd\x81\x00\x00\xa3\x01\x00\x00\xf3\x83\x00\x00\x83\x02\x00\x00\x97\x85\x00\x00;\x00\x00\x00\x1b\x88\x00\x00F\x00\x00\x00W\x88\x00\x002\x00\x00\x00\x9e\x88\x00\x00x\x00\x00\x00\xd1\x88\x00\x00[\x00\x00\x00J\x89\x00\x00V\x00\x00\x00\xa6\x89\x00\x00/\x00\x00\x00\xfd\x89\x00\x00\xc0\x00\x00\x00-\x8a\x00\x00m\x00\x00\x00\xee\x8a\x00\x00\xaa\x00\x00\x00\\\x8b\x00\x00\x84\x01\x00\x00\x07\x8c\x00\x00?\x00\x00\x00\x8c\x8d\x00\x00U\x00\x00\x00\xcc\x8d\x00\x00\x01\x00\x00\x00"\x8e\x00\x00B\x00\x00\x00$\x8e\x00\x00d\x00\x00\x00g\x8e\x00\x00\x0e\x00\x00\x00\xcc\x8e\x00\x00\x10\x00\x00\x00\xdb\x8e\x00\x00\r\x00\x00\x00\xec\x8e\x00\x00\x0f\x00\x00\x00\xfa\x8e\x00\x00,\x00\x00\x00\n\x8f\x00\x00D\x00\x00\x007\x8f\x00\x00J\x00\x00\x00|\x8f\x00\x006\x00\x00\x00\xc7\x8f\x00\x00\x0e\x00\x00\x00\xfe\x8f\x00\x00&\x00\x00\x00\r\x90\x00\x00b\x00\x00\x004\x90\x00\x00u\x00\x00\x00\x97\x90\x00\x00,\x00\x00\x00\r\x91\x00\x00\x1d\x00\x00\x00:\x91\x00\x00B\x00\x00\x00X\x91\x00\x00\x1a\x00\x00\x00\x9b\x91\x00\x00\x87\x00\x00\x00\xb6\x91\x00\x00\x08\x00\x00\x00>\x92\x00\x00\x10\x00\x00\x00G\x92\x00\x00\x10\x00\x00\x00X\x92\x00\x00\x0b\x00\x00\x00i\x92\x00\x00\x05\x00\x00\x00u\x92\x00\x00^\x00\x00\x00{\x92\x00\x00\t\x00\x00\x00\xda\x92\x00\x00v\x01\x00\x00\xe4\x92\x00\x00 \x00\x00\x00[\x94\x00\x00&\x00\x00\x00|\x94\x00\x00\x16\x00\x00\x00\xa3\x94\x00\x00\x06\x00\x00\x00\xba\x94\x00\x00\x19\x00\x00\x00\xc1\x94\x00\x00\x18\x00\x00\x00\xdb\x94\x00\x00\t\x00\x00\x00\xf4\x94\x00\x00\x07\x00\x00\x00\xfe\x94\x00\x00\x13\x00\x00\x00\x06\x95\x00\x00\x1a\x00\x00\x00\x1a\x95\x00\x00\x08\x00\x00\x005\x95\x00\x00\x16\x00\x00\x00>\x95\x00\x00\x1d\x00\x00\x00U\x95\x00\x00?\x00\x00\x00s\x95\x00\x00\x04\x00\x00\x00\xb3\x95\x00\x00&\x00\x00\x00\xb8\x95\x00\x00\r\x00\x00\x00\xdf\x95\x00\x00!\x00\x00\x00\xed\x95\x00\x00\x06\x00\x00\x00\x0f\x96\x00\x00(\x00\x00\x00\x16\x96\x00\x00\x13\x00\x00\x00?\x96\x00\x008\x00\x00\x00S\x96\x00\x00H\x00\x00\x00\x8c\x96\x00\x008\x00\x00\x00\xd5\x96\x00\x00\x12\x00\x00\x00\x0e\x97\x00\x00%\x00\x00\x00!\x97\x00\x00*\x00\x00\x00G\x97\x00\x00\x17\x00\x00\x00r\x97\x00\x00;\x00\x00\x00\x8a\x97\x00\x00\x17\x00\x00\x00\xc6\x97\x00\x00\x16\x00\x00\x00\xde\x97\x00\x00H\x00\x00\x00\xf5\x97\x00\x00!\x00\x00\x00>\x98\x00\x00"\x00\x00\x00`\x98\x00\x00.\x00\x00\x00\x83\x98\x00\x00\x1f\x00\x00\x00\xb2\x98\x00\x00w\x00\x00\x00\xd2\x98\x00\x00(\x00\x00\x00J\x99\x00\x00\x13\x00\x00\x00s\x99\x00\x00\x1a\x00\x00\x00\x87\x99\x00\x00\x1d\x00\x00\x00\xa2\x99\x00\x00\x13\x00\x00\x00\xc0\x99\x00\x00\x15\x00\x00\x00\xd4\x99\x00\x00\t\x00\x00\x00\xea\x99\x00\x00 \x00\x00\x00\xf4\x99\x00\x00\x0f\x00\x00\x00\x15\x9a\x00\x00V\x00\x00\x00%\x9a\x00\x00 \x00\x00\x00|\x9a\x00\x00 \x00\x00\x00\x9d\x9a\x00\x00J\x00\x00\x00\xbe\x9a\x00\x00\x17\x00\x00\x00\t\x9b\x00\x00\x14\x00\x00\x00!\x9b\x00\x00)\x00\x00\x006\x9b\x00\x00\x1f\x00\x00\x00`\x9b\x00\x000\x00\x00\x00\x80\x9b\x00\x008\x00\x00\x00\xb1\x9b\x00\x00\x08\x00\x00\x00\xea\x9b\x00\x00;\x00\x00\x00\xf3\x9b\x00\x00\x10\x00\x00\x00/\x9c\x00\x00\x0e\x00\x00\x00@\x9c\x00\x00\x0e\x00\x00\x00O\x9c\x00\x00\x18\x00\x00\x00^\x9c\x00\x00\x12\x00\x00\x00w\x9c\x00\x00\x0e\x00\x00\x00\x8a\x9c\x00\x00+\x00\x00\x00\x99\x9c\x00\x00\x18\x00\x00\x00\xc5\x9c\x00\x00\x0f\x00\x00\x00\xde\x9c\x00\x00\x0f\x00\x00\x00\xee\x9c\x00\x00&\x00\x00\x00\xfe\x9c\x00\x00L\x00\x00\x00%\x9d\x00\x00"\x00\x00\x00r\x9d\x00\x00Z\x00\x00\x00\x95\x9d\x00\x00 \x00\x00\x00\xf0\x9d\x00\x00"\x00\x00\x00\x11\x9e\x00\x00(\x00\x00\x004\x9e\x00\x00/\x00\x00\x00]\x9e\x00\x00\x14\x00\x00\x00\x8d\x9e\x00\x00\n\x00\x00\x00\xa2\x9e\x00\x00\x10\x00\x00\x00\xad\x9e\x00\x00\x1f\x00\x00\x00\xbe\x9e\x00\x00\x04\x00\x00\x00\xde\x9e\x00\x00 \x00\x00\x00\xe3\x9e\x00\x00\x04\x00\x00\x00\x04\x9f\x00\x00d\x00\x00\x00\t\x9f\x00\x00\x13\x00\x00\x00n\x9f\x00\x00!\x00\x00\x00\x82\x9f\x00\x00"\x00\x00\x00\xa4\x9f\x00\x00\x1a\x00\x00\x00\xc7\x9f\x00\x00"\x00\x00\x00\xe2\x9f\x00\x00\x1b\x00\x00\x00\x05\xa0\x00\x00\x17\x00\x00\x00!\xa0\x00\x00\x1c\x00\x00\x009\xa0\x00\x00\x13\x00\x00\x00V\xa0\x00\x00\x01\x00\x00\x00j\xa0\x00\x00\x06\x00\x00\x00l\xa0\x00\x00\x11\x00\x00\x00s\xa0\x00\x00\x11\x00\x00\x00\x85\xa0\x00\x00\x11\x00\x00\x00\x97\xa0\x00\x00\x1b\x00\x00\x00\xa9\xa0\x00\x00!\x00\x00\x00\xc5\xa0\x00\x00\x11\x00\x00\x00\xe7\xa0\x00\x00,\x00\x00\x00\xf9\xa0\x00\x00Q\x00\x00\x00&\xa1\x00\x00\x06\x00\x00\x00x\xa1\x00\x00\'\x00\x00\x00\x7f\xa1\x00\x00\x1d\x00\x00\x00\xa7\xa1\x00\x00\'\x00\x00\x00\xc5\xa1\x00\x00"\x00\x00\x00\xed\xa1\x00\x00-\x00\x00\x00\x10\xa2\x00\x008\x00\x00\x00>\xa2\x00\x00+\x00\x00\x00w\xa2\x00\x00\x1e\x00\x00\x00\xa3\xa2\x00\x00"\x00\x00\x00\xc2\xa2\x00\x00\x0e\x00\x00\x00\xe5\xa2\x00\x00\x1a\x00\x00\x00\xf4\xa2\x00\x00\x1c\x00\x00\x00\x0f\xa3\x00\x00\x14\x00\x00\x00,\xa3\x00\x00\x12\x00\x00\x00A\xa3\x00\x00\x07\x00\x00\x00T\xa3\x00\x00(\x00\x00\x00\\\xa3\x00\x00\x10\x00\x00\x00\x85\xa3\x00\x00\x1b\x00\x00\x00\x96\xa3\x00\x00\x0f\x00\x00\x00\xb2\xa3\x00\x00\x13\x00\x00\x00\xc2\xa3\x00\x00\x11\x00\x00\x00\xd6\xa3\x00\x00\x14\x00\x00\x00\xe8\xa3\x00\x00#\x00\x00\x00\xfd\xa3\x00\x00\x18\x00\x00\x00!\xa4\x00\x00$\x00\x00\x00:\xa4\x00\x00\x04\x00\x00\x00_\xa4\x00\x00\x0b\x00\x00\x00d\xa4\x00\x00[\x00\x00\x00p\xa4\x00\x00\x06\x00\x00\x00\xcc\xa4\x00\x00\x94\x00\x00\x00\xd3\xa4\x00\x00O\x01\x00\x00h\xa5\x00\x00d\x00\x00\x00\xb8\xa6\x00\x003\x00\x00\x00\x1d\xa7\x00\x00\x07\x00\x00\x00Q\xa7\x00\x00\x07\x00\x00\x00Y\xa7\x00\x00\x07\x00\x00\x00a\xa7\x00\x00\x06\x00\x00\x00i\xa7\x00\x00,\x00\x00\x00p\xa7\x00\x00\x1d\x00\x00\x00\x9d\xa7\x00\x00%\x00\x00\x00\xbb\xa7\x00\x00\x0c\x00\x00\x00\xe1\xa7\x00\x00\x14\x00\x00\x00\xee\xa7\x00\x00\x06\x00\x00\x00\x03\xa8\x00\x00\x06\x00\x00\x00\n\xa8\x00\x00B\x02\x00\x00\x11\xa8\x00\x00\x85\x00\x00\x00T\xaa\x00\x00n\x00\x00\x00\xda\xaa\x00\x00\x0e\x00\x00\x00I\xab\x00\x00\x0f\x00\x00\x00X\xab\x00\x00\xd9\x00\x00\x00h\xab\x00\x00(\x00\x00\x00B\xac\x00\x00\x13\x00\x00\x00k\xac\x00\x00\x1c\x00\x00\x00\x7f\xac\x00\x00\x1d\x00\x00\x00\x9c\xac\x00\x008\x00\x00\x00\xba\xac\x00\x00\x10\x00\x00\x00\xf3\xac\x00\x00\x1f\x00\x00\x00\x04\xad\x00\x00#\x00\x00\x00$\xad\x00\x00\x06\x00\x00\x00H\xad\x00\x00\x1c\x00\x00\x00O\xad\x00\x00\x07\x00\x00\x00l\xad\x00\x00\x12\x00\x00\x00t\xad\x00\x00\x0f\x00\x00\x00\x87\xad\x00\x007\x00\x00\x00\x97\xad\x00\x00\n\x00\x00\x00\xcf\xad\x00\x00>\x00\x00\x00\xda\xad\x00\x00\x0f\x00\x00\x00\x19\xae\x00\x00,\x00\x00\x00)\xae\x00\x006\x00\x00\x00V\xae\x00\x00\x0e\x00\x00\x00\x8d\xae\x00\x000\x00\x00\x00\x9c\xae\x00\x00a\x00\x00\x00\xcd\xae\x00\x00\x08\x00\x00\x00/\xaf\x00\x00\x08\x00\x00\x008\xaf\x00\x00\x8a\x00\x00\x00A\xaf\x00\x00\x15\x00\x00\x00\xcc\xaf\x00\x00V\x00\x00\x00\xe2\xaf\x00\x00l\x00\x00\x009\xb0\x00\x00\x07\x00\x00\x00\xa6\xb0\x00\x00\x04\x00\x00\x00\xae\xb0\x00\x00.\x00\x00\x00\xb3\xb0\x00\x00\x11\x00\x00\x00\xe2\xb0\x00\x00\x17\x00\x00\x00\xf4\xb0\x00\x00\x1a\x00\x00\x00\x0c\xb1\x00\x00\x18\x00\x00\x00\'\xb1\x00\x00\x18\x00\x00\x00@\xb1\x00\x00%\x00\x00\x00Y\xb1\x00\x00\x1c\x00\x00\x00\x7f\xb1\x00\x00\x16\x00\x00\x00\x9c\xb1\x00\x00\x1e\x00\x00\x00\xb3\xb1\x00\x00$\x00\x00\x00\xd2\xb1\x00\x00\x07\x00\x00\x00\xf7\xb1\x00\x00g\x00\x00\x00\xff\xb1\x00\x00\x13\x00\x00\x00g\xb2\x00\x00\x14\x01\x00\x00{\xb2\x00\x00\x15\x00\x00\x00\x90\xb3\x00\x00\n\x00\x00\x00\xa6\xb3\x00\x00\x07\x00\x00\x00\xb1\xb3\x00\x006\x00\x00\x00\xb9\xb3\x00\x004\x00\x00\x00\xf0\xb3\x00\x00O\x00\x00\x00%\xb4\x00\x00\x12\x00\x00\x00u\xb4\x00\x002\x00\x00\x00\x88\xb4\x00\x00J\x00\x00\x00\xbb\xb4\x00\x00\x83\x00\x00\x00\x06\xb5\x00\x00\x12\x00\x00\x00\x8a\xb5\x00\x00\x0e\x00\x00\x00\x9d\xb5\x00\x00\x10\x00\x00\x00\xac\xb5\x00\x00\x0e\x00\x00\x00\xbd\xb5\x00\x00O\x00\x00\x00\xcc\xb5\x00\x00\x13\x00\x00\x00\x1c\xb6\x00\x00\x08\x00\x00\x000\xb6\x00\x00I\x00\x00\x009\xb6\x00\x00M\x00\x00\x00\x83\xb6\x00\x00>\x00\x00\x00\xd1\xb6\x00\x00Z\x00\x00\x00\x10\xb7\x00\x00\x1b\x00\x00\x00k\xb7\x00\x00B\x00\x00\x00\x87\xb7\x00\x00{\x00\x00\x00\xca\xb7\x00\x00Z\x00\x00\x00F\xb8\x00\x00\x11\x00\x00\x00\xa1\xb8\x00\x00)\x00\x00\x00\xb3\xb8\x00\x00\x12\x00\x00\x00\xdd\xb8\x00\x00\xc2\x00\x00\x00\xf0\xb8\x00\x00\t\x00\x00\x00\xb3\xb9\x00\x00\x07\x00\x00\x00\xbd\xb9\x00\x00\x08\x00\x00\x00\xc5\xb9\x00\x00$\x00\x00\x00\xce\xb9\x00\x00\x18\x00\x00\x00\xf3\xb9\x00\x00\x16\x00\x00\x00\x0c\xba\x00\x00\x10\x00\x00\x00#\xba\x00\x00 \x00\x00\x004\xba\x00\x00\x15\x00\x00\x00U\xba\x00\x008\x00\x00\x00k\xba\x00\x007\x00\x00\x00\xa4\xba\x00\x00=\x00\x00\x00\xdc\xba\x00\x007\x00\x00\x00\x1a\xbb\x00\x00D\x00\x00\x00R\xbb\x00\x00\r\x00\x00\x00\x97\xbb\x00\x00\x1d\x00\x00\x00\xa5\xbb\x00\x00<\x00\x00\x00\xc3\xbb\x00\x000\x00\x00\x00\x00\xbc\x00\x00\xa0\x00\x00\x001\xbc\x00\x00b\x00\x00\x00\xd2\xbc\x00\x00\x19\x00\x00\x005\xbd\x00\x00\x16\x00\x00\x00O\xbd\x00\x005\x00\x00\x00f\xbd\x00\x00\x13\x00\x00\x00\x9c\xbd\x00\x00\x0e\x00\x00\x00\xb0\xbd\x00\x00\x0e\x00\x00\x00\xbf\xbd\x00\x00&\x00\x00\x00\xce\xbd\x00\x00@\x00\x00\x00\xf5\xbd\x00\x00\x12\x00\x00\x006\xbe\x00\x00h\x00\x00\x00I\xbe\x00\x00\x80\x00\x00\x00\xb2\xbe\x00\x00\\\x00\x00\x003\xbf\x00\x007\x00\x00\x00\x90\xbf\x00\x00\x14\x00\x00\x00\xc8\xbf\x00\x00\x1d\x00\x00\x00\xdd\xbf\x00\x00\x1c\x00\x00\x00\xfb\xbf\x00\x00$\x00\x00\x00\x18\xc0\x00\x00\x05\x00\x00\x00=\xc0\x00\x00\x0c\x00\x00\x00C\xc0\x00\x00\r\x00\x00\x00P\xc0\x00\x00\x06\x00\x00\x00^\xc0\x00\x00\'\x00\x00\x00e\xc0\x00\x00\x16\x00\x00\x00\x8d\xc0\x00\x00\'\x00\x00\x00\xa4\xc0\x00\x004\x00\x00\x00\xcc\xc0\x00\x003\x00\x00\x00\x01\xc1\x00\x00\x10\x00\x00\x005\xc1\x00\x00^\x00\x00\x00F\xc1\x00\x00\x12\x00\x00\x00\xa5\xc1\x00\x00\x1b\x00\x00\x00\xb8\xc1\x00\x00\x14\x00\x00\x00\xd4\xc1\x00\x00\x13\x00\x00\x00\xe9\xc1\x00\x00\x13\x00\x00\x00\xfd\xc1\x00\x00\x80\x00\x00\x00\x11\xc2\x00\x00\x7f\x00\x00\x00\x92\xc2\x00\x00K\x00\x00\x00\x12\xc3\x00\x00-\x00\x00\x00^\xc3\x00\x004\x00\x00\x00\x8c\xc3\x00\x00x\x00\x00\x00\xc1\xc3\x00\x00\x0f\x00\x00\x00:\xc4\x00\x00)\x00\x00\x00J\xc4\x00\x00(\x00\x00\x00t\xc4\x00\x00\x13\x00\x00\x00\x9d\xc4\x00\x00\x1b\x01\x00\x00\xb1\xc4\x00\x00\x8d\x00\x00\x00\xcd\xc5\x00\x00|\x00\x00\x00[\xc6\x00\x00\xe1\x00\x00\x00\xd8\xc6\x00\x00\'\x01\x00\x00\xba\xc7\x00\x00c\x00\x00\x00\xe2\xc8\x00\x00\x8e\x01\x00\x00F\xc9\x00\x00\'\x00\x00\x00\xd5\xca\x00\x00\x05\x00\x00\x00\xfd\xca\x00\x00\x1d\x00\x00\x00\x03\xcb\x00\x00\x19\x00\x00\x00!\xcb\x00\x00\x06\x00\x00\x00;\xcb\x00\x00!\x00\x00\x00B\xcb\x00\x00\x03\x00\x00\x00d\xcb\x00\x00\r\x00\x00\x00h\xcb\x00\x00\x1d\x00\x00\x00v\xcb\x00\x00\x03\x00\x00\x00\x94\xcb\x00\x00\x97\x00\x00\x00\x98\xcb\x00\x00\x04\x00\x00\x000\xcc\x00\x00\x10\x00\x00\x005\xcc\x00\x006\x00\x00\x00F\xcc\x00\x00\x1d\x00\x00\x00}\xcc\x00\x006\x00\x00\x00\x9b\xcc\x00\x00\x8e\x00\x00\x00\xd2\xcc\x00\x00K\x00\x00\x00a\xcd\x00\x00\x1d\x00\x00\x00\xad\xcd\x00\x00\x1c\x00\x00\x00\xcb\xcd\x00\x00n\x00\x00\x00\xe8\xcd\x00\x00\xb4\x00\x00\x00W\xce\x00\x008\x00\x00\x00\x0c\xcf\x00\x00$\x00\x00\x00E\xcf\x00\x00\x1e\x00\x00\x00j\xcf\x00\x00\x97\x00\x00\x00\x89\xcf\x00\x002\x00\x00\x00!\xd0\x00\x000\x00\x00\x00T\xd0\x00\x00A\x00\x00\x00\x85\xd0\x00\x00^\x00\x00\x00\xc7\xd0\x00\x00\x1e\x00\x00\x00&\xd1\x00\x00\x81\x00\x00\x00E\xd1\x00\x00/\x00\x00\x00\xc7\xd1\x00\x00T\x00\x00\x00\xf7\xd1\x00\x00\t\x00\x00\x00L\xd2\x00\x00\x06\x00\x00\x00V\xd2\x00\x00 \x00\x00\x00]\xd2\x00\x00\x07\x00\x00\x00~\xd2\x00\x008\x00\x00\x00\x86\xd2\x00\x00,\x00\x00\x00\xbf\xd2\x00\x000\x00\x00\x00\xec\xd2\x00\x00.\x00\x00\x00\x1d\xd3\x00\x00!\x00\x00\x00L\xd3\x00\x00\x0f\x00\x00\x00n\xd3\x00\x00\x0b\x00\x00\x00~\xd3\x00\x00\x1f\x00\x00\x00\x8a\xd3\x00\x00\x10\x00\x00\x00\xaa\xd3\x00\x00\x15\x00\x00\x00\xbb\xd3\x00\x00\x15\x00\x00\x00\xd1\xd3\x00\x00\x04\x00\x00\x00\xe7\xd3\x00\x00a\x00\x00\x00\xec\xd3\x00\x00\xf6\x00\x00\x00N\xd4\x00\x00O\x00\x00\x00E\xd5\x00\x00U\x00\x00\x00\x95\xd5\x00\x00\x10\x00\x00\x00\xeb\xd5\x00\x00\x16\x00\x00\x00\xfc\xd5\x00\x00-\x00\x00\x00\x13\xd6\x00\x00"\x00\x00\x00A\xd6\x00\x00\xba\x00\x00\x00d\xd6\x00\x004\x00\x00\x00\x1f\xd7\x00\x00\x15\x00\x00\x00T\xd7\x00\x00`\x00\x00\x00j\xd7\x00\x00R\x00\x00\x00\xcb\xd7\x00\x00\x16\x00\x00\x00\x1e\xd8\x00\x00-\x00\x00\x005\xd8\x00\x00\x05\x00\x00\x00c\xd8\x00\x00\x1b\x00\x00\x00i\xd8\x00\x00\t\x00\x00\x00\x85\xd8\x00\x00\r\x00\x00\x00\x8f\xd8\x00\x00\x1e\x00\x00\x00\x9d\xd8\x00\x00-\x00\x00\x00\xbc\xd8\x00\x00_\x00\x00\x00\xea\xd8\x00\x00\x84\x00\x00\x00J\xd9\x00\x00-\x00\x00\x00\xcf\xd9\x00\x00F\x00\x00\x00\xfd\xd9\x00\x008\x00\x00\x00D\xda\x00\x00\xe7\x00\x00\x00}\xda\x00\x00\x07\x00\x00\x00e\xdb\x00\x00\x08\x00\x00\x00m\xdb\x00\x00\r\x00\x00\x00v\xdb\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">calibre</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://calibre.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00calibre\x00contains\x00mybook.epub\x00Project-Id-Version: it\nPOT-Creation-Date: 2008-04-07 16:11+IST\nPO-Revision-Date: 16:44, 4/4/2008\nLast-Translator: Iacopo Benesperi <iacchi@iacchi.org>\nLanguage-Team: italiano\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\nX-Generator: KBabel 1.11.4\nPlural-Forms: nplurals=2; plural=(n != 1);\n\x00\tFile di Baen individuato. Rianalizzo...\x00\tFile di Book Designer individuato\x00\tConversione in BBeB...\x00\tLink falliti:\x00\tAnalisi HTML...\x00\n%prog [opzioni] ISBN\n\nScarica un\'immagine di copertina per il libro identificato dall\'ISBN da LibraryThing.com\n\x00\n%prog [opzioni] chiave\n\nScarica i metadati per i libri da isndb.com. \xc3\x88 possibile specificare sia\nl\'ISBN del libro che il suo titolo e autore. Se si specificano il titolo e l\'autore,\nla ricerca potrebbe riportare pi\xc3\xb9 di un risultato\n\nChiave \xc3\xa8 la chiave dell\'account generata dopo la registrazione gratuita su isndb.com\n\n\x00\nScaricato articolo %s da %s\n%s\x00 giorni\x00 da \x00 non \xc3\xa8 un\'immagine valida\x00 non trovato\x00 pt\x00 px\x00 secondi\x00 stelle\x00%%prog [opzioni] ARG\n\n%%prog analizza una fonte on-line di articoli, come un feed RSS o ATOM e\nscarica i contenuti degli articoli organizzandoli gerarchicamente\n\nARG pu\xc3\xb2 essere:\n\nnome file - %%prog prover\xc3\xa0 a caricare una formula dal file\n\ntitolo formula presente - %%prog caricher\xc3\xa0 una formula gi\xc3\xa0 presente e la user\xc3\xa0 per scaricare i feed. Per es. Newsweek o "The BBC" o "The New York Times"\n\nformula come stringa - %%prog caricher\xc3\xa0 la formula direttamente dalla stringa ARG\n\nLe formule presenti disponibili sono:\n%s\n\x00%prog URL\n\nDov\'\xc3\xa8 l\'URL. Esempio: http://google.com\x00%prog [opzioni] file.lrs\nCompila un file LRS dentro un file LRF\x00%prog [opzioni] miolibro.lrf\n\n\nMostra/modifica i metadati in un file LRF\n\n\x00%prog [opzioni] miolibro.pdf\n\n\n%prog converte miolibro.pdf in miolibro.lrf\x00%prog [opzioni] miolibro.rtf\n\n\n%prog converte miolibro.rtf in miolibro.lrf\x00%prog [opzioni] miolibro.txt\n\n\n%prog converte miolibro.txt in miolibro.lrf\x00%prog [opzioni] miolibro.mobi\x00%prog libro.lrf\nConverte un file LRF in un file LRS (XML codificato UTF-8)\x00%s non ha formati disponibili\x00%sUso%s: %s\n\x00&Chiave d\'accesso;\x00&Aggiungi feed\x00&Aggiungi tag:\x00A&utore(i): \x00Margine i&nferiore:\x00&Compatta database\x00&Disabilita l\'individuazione del capitoli\x00Tit&olo del feed:\x00&Forza interruzione di pagina prima del tag:\x00&Formato intestazione:\x00Margine &sinistro:\x00&Posizione del database dei libri (library1.db)\x00&Numero massimo di articoli per feed:\x00&Metadati dal nome del file\x00&Dimensione fissa:\x00Arti&colo pi\xc3\xb9 vecchio:\x00I&nterruzione di pagina prima del tag:\x00&Password:\x00&Preprocessamento:\x00Pri&orit\xc3\xa0 per i lavori di conversione:\x00&Profilo:\x00&Editore: \x00&Giudizio:\x00&Espressione regolare:\x00Rimuo&vi formula\x00&Rimuovi tag:\x00Margine &destro:\x00&Cerca:\x00&Serie:\x00&Con grazie:\x00&Mostra intestazione\x00&Mostra password\x00I&nterrompi il lavoro selezionato\x00&Test\x00&Titolo: \x00Margine s&uperiore:\x00&Nome utente:\x00Spaziat&ura caratteri:\x00...\x00<b>Le modifiche avranno effetto dopo il riavvio\x00<b>Impossibile scaricare la copertina</b><br/>\x00<b>Nessuna corrispondenza</b> trovata per la frase <i>%s</i>\x00<br>Deve essere una cartella\x00<font color="gray">Nessun aiuto disponibile</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Crea una formula di notizie di base, aggiungendo ad essa dei feed RSS. <br />Per la maggior parte dei feed, bisogner\xc3\xa0 usare la "Modalit\xc3\xa0 avanzata" per personalizzare ulteriormente il processo di scaricamento.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Visitare <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a> per la guida<br /><br /><span style=" font-weight:600;">calibre</span>: %1 di <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - File HTML0 da Book Designer</li>\x00<li><b>pdftohtml</b> - File HTML generati dal programma pdftohtml</li>\x00<ol><li><b>baen</b> - Libri dall\'editore BAEN</li>\x00<p>Esiste gi\xc3\xa0 un database non valido in %s, eliminarlo prima di provare a spostare il database esistente.<br>Errore: %s\x00<p>Nel database sono gi\xc3\xa0 presenti libri con i seguenti titoli. Aggiungerli ugualmente?<ul>\x00<p>Impossibile salvare libri sul dispositivo perch\xc3\xa9 non c\'\xc3\xa8 pi\xc3\xb9 spazio disponibile \x00<p>Impossibile creare la formula. Errore:<br>%s\x00<p>Inserire il proprio nome utente e password per <b>LibraryThing.com</b>. <br/>Se non se ne possiede uno, \xc3\xa8 possibile <a href=\'http://www.librarything.com\'>registrarsi</a> gratuitamente!</p>\x00<p>Nega questa corrispondenza. Restituisce soltanto i risultati che <b>non</b> corrispondono a questa ricerca\x00<p>Inserire il proprio nome utente e password per %s<br>Se non se ne possiede uno, sottoscriversi per avere accesso a questi articoli.<br/> Fare clic su OK per procedere.\x00<p>Impostare un modello di espressione regolare da usare nel tentativo di indovinare i metadati dei libri dal nome del file. <p>\xc3\x88 disponibile un <a href="http://docs.python.org/lib/re-syntax.html">riferimento</a> sulla sintassi delle espressioni regolari. Usare la funzionalit\xc3\xa0 <b>Test</b> sottostante per testare le proprie espressioni regolari su una serie di nomi di file di esempio.\x00<p>Si \xc3\xa8 verificato un errore nella lettura del file: <br /><b>\x00<span style="color:red; font-weight:bold">Ultima versione: <a href="%s">%s</a></span>\x00A\x00Esiste gi\xc3\xa0 una formula personalizzata di nome %s. Sovrascriverla?\x00Un\'espressione regolare. I tag <a> i cui href corrispondono verranno ignorati. Predefinita: %default\x00&Tag applicati\x00Tag &disponibili\x00Lavori attivi\x00&Aggiungi tag: \x00Aggiungi una fonte di notizie personalizzata\x00Aggiunge una cartella alla lista delle cartelle usate frequentemente\x00Aggiunge a tutte le pagine un\'intestazione contenente il titolo e l\'autore\x00Aggiungi un nuovo formato al database per questo libro\x00Aggiungi libri\x00Aggiungi libri da una singola cartella\x00Aggiungi libri ricorsivamente (pi\xc3\xb9 libri per cartella, assume che ogni file sia un libro diverso)\x00Aggiungi libri ricorsivamente (un libro per cartella, assume che ogni file sia lo stesso libro in un diverso formato)\x00Aggiungi una fonte di notizie personalizzata\x00Aggiunge il feed alla formula\x00Aggiungi il tag a quelli disponibili e applicalo al libro corrente\x00Aggiungi/Aggiorna for&mula\x00Aggiusta la visualizzazione del file LRF generato specificando parametri come la dimensione dei caratteri e la spaziatura tra le parole\x00Avanzata\x00Ricerca avanzata\x00Ricerca avanzata\x00Esiste gi\xc3\xa0\x00Alt+S\x00Si \xc3\xa8 verificato un errore nel processamento della tabella: %s. Ignoro il codice della tabella\x00Qualunque\x00Tutti i link che corrispondono a questa espressione regolare saranno ignorati. Questa opzione pu\xc3\xb2 essere specificata pi\xc3\xb9 volte, in questo modo finch\xc3\xa9 una regexp fa corrispondere un link, questo sar\xc3\xa0 ignorato. Per impostazione predefinita nessun link viene ignorato. Se vengono specificate sia --filter-regexp che --match-regexp, --filter-regexp viene applicata per prima\x00Applica il tag al libro corrente\x00Scaricamento fallito dell\'articolo: %s\x00Articolo scaricato: %s\x00Autore\x00&Classificazione autore: \x00Classifica&zione autore:\x00Autore(i)\x00Autori:\x00Formati disponibili\x00Formule utente disponibili\x00Indietro\x00Tabella malformata:\n%s\x00&Grandezza caratteri di base:\x00Cartella base in cui le URL sono salvate. Predefinita: %default\x00Base\x00Pi\xc3\xb9 prolisso durante il processamento\x00Pi\xc3\xb9 prolisso\x00Prolisso durante il processamento\x00Libro \x00Libro <font face="serif">%s</font> di %s\x00Copertina del libro\x00Margine inferiore della pagina. Predefinito: %default px\x00Sfoglia per trovare un\'immagine da usare come copertina per questo libro\x00Sfoglia per specificare una nuova posizione del database\x00Converti in gruppo\x00Conversione in gruppo di libri in LRF\x00Impossibile aggiungere il link %s alla TOC\x00Impossibile configurare\x00Impossibile configurare mentre ci sono lavori in esecuzione\x00Impossibile connettersi\x00Impossibile convertire\x00Impossibile convertire %s perch\xc3\xa9 questo libro non ha formati supportati\x00Impossibile modificare i metadati\x00Impossibile scaricare la copertina\x00Impossibile terminare i lavori gi\xc3\xa0 completati\x00Impossibile terminare il lavoro\x00Impossibile terminare i lavori che stanno comunicando col dispositivo dato che potrebbe causare una corruzione dei dati\x00Impossibile terminare i lavori in attesa\x00Impossibile leggere\x00Impossibile leggere da: %s\x00Impossibile salvare sul disco\x00Impossibile leggere\x00Scheda\n%s disponibili\x00Categoria\x00Ca&mbia l\'immagine di copertina:\x00Cambia password\x00Cambia l\'autore di questo libro. Autori multipli devono essere separati da una virgola\x00Cambia l\'editore di questo libro\x00Cambia il titolo di questo libro\x00Cambia il nome utente e/o password del proprio account su LibraryThing.com\x00Individuazione capitoli\x00Scegliere il formato\x00Scegliere il formato da convertire in LRF\x00Scegliere il formato da leggere\x00Fare clic per vedere una lista dei lavori attivi\x00Lista separata da virgole dei tag da rimuovere dal libro\x00Commenti\x00Compattamento database. Poterbbe richiedere un po\' di tempo\x00Compattamento...\x00Configurazione\x00Configurazione\x00Configura visualizzatore\x00Converte %s in LRF\x00Converti libri\x00Converte LRS in LRS, utile per il debugging\x00Converti individualmente\x00Converti in LRF\x00Converte in LRS\x00Impossibile scaricare la copertina: %s\x00Impossibile scaricare l\'articolo. Eseguire con --debug per vedere la ragione\x00Impossibile scaricare la copertina\x00Impossibile scaricare la copertina perch\xc3\xa9 il server \xc3\xa8 sovraccarico. Ritentare pi\xc3\xb9 tardi\x00Impossibile spostare il database\x00Impossibile analizzare il file: %s\x00Impossibile processare l\'immagine: %s\n%s\x00Impossibile leggere l\'immagine di copertina: %s\x00Copertina salvata in\x00Creato da \x00Creazione XML...\x00Fonti di notizie personalizzate\x00Data\x00&Timeout predefinito della rete:\x00Canc\x00Rimuovi il tag dal database. Questa operazione rimuover\xc3\xa0 il tag da tutti i libri e poi dal database\x00Dettagli del lavoro\x00Database del dispositivo corrotto\x00Non scaricare i fogli di stile CSS\x00Non so a cosa serve questo\x00Non mostrare la barra di progresso\x00Doppio clic per modificarmi\x00Scaricamento completato\x00Scaricamento copertina da %s\x00Scoperti duplicati!\x00E\x00ERRORE\x00Modifica metadati\x00Modifica metadati\x00Modifica metadati\x00Modifica metadati in gruppo\x00Modifica metadati individualmente\x00Caratteri inclusi\x00Abilita &rotazione automatica delle immagini\x00Abilita la rotazione automatica delle immagini che sono pi\xc3\xb9 larghe dello schermo\x00Errore\x00Errore di comunicazione col dispositivo\x00Errore nella lettura del file\x00Errore di comunicazione col dispositivo\x00Estrae la miniatura da un file LRF\x00Scaricamento fallito dell\'articolo: %s da %s\n\x00Scaricamento dei seguenti articoli fallito parzialmente:\x00Scaricamento dei seguenti articoli fallito:\x00Analisi fallita del link %s %s\x00Processamento del file OPF fallito\x00&URL del feed:\x00Il feed deve avere una URL\x00Il feed deve avere un titolo\x00Feed scaricati in %s\x00Feed nella formula\x00Scarica\x00Scarica immagine di copertina dal server\x00Scarica metadati\x00Scarica metadati dal server\x00Scarica notizie\x00Scarica notizie da \x00Scaricamento feed\x00Scaricamento feed...\x00Scaricamento metadati per <b>%1</b>\x00Scaricamento notizie da \x00Scaricamento della formula fallito: \x00Meno\x00&Nome file:\x00Mette a punto in modo fine l\'individuazione delle intestazioni dei capitoli e delle sezioni\x00Finito\x00Per un aiuto su come scrivere formule di notizie avanzate, visitare <a href="http://calibre.kovidgoyal.net/user_manual/news.html">Formule utente</a>\x00Forza un\'interruzione di pagina prima di un elemento che possiede l\'attributo specificato. Il formato per questa opzione \xc3\xa8 nometag regexp, nome attributo, valore attributo regexp. Per esempio, per far corrispondere tutti i tag intestazione che hanno l\'attributo class="chapter" bisogna usare "h\\d,class,chapter". Predefinita: %default\x00Forza un\'interruzione di pagina prima dei tag i cui nomi corrispondono a questa espressione regolare\x00Forza interruzione di pagina prima dell\'&attributo:\x00Formato\x00Formato\x00Formati\x00Avanti\x00Libera lo spazio non utilizzato dal database\x00Cartelle usate frequentemente\x00Ricevuti feed dalla pagina principale\x00Intestazione\x00Aiuto per l\'elemento\x00Unisci\x00IS&BN:\x00Se html2lrf non trova nessuna interruzione di pagina nel file HTML e non riesce a individuare le intestazioni dei capitoli, inserir\xc3\xa0 automaticamente un\'interruzione di pagina prima dei tag il cui nome corrisponde a questa espressione regolare. Predefinita: %default. \xc3\x88 possibile disabilitarla impostando la regexp a "$". Lo scopo di questa opzione \xc3\xa8 quello di provare ad assicurarsi che non ci siano pagine molto lunghe, dato che queste degradano le prestazioni dell\'LRF nel girare la pagina. Questa opzione viene perci\xc3\xb2 ignorata se la pagina corrente ha solo pochi elementi\x00Se il tag voluto non \xc3\xa8 nella lista di quelli disponibili, \xc3\xa8 possibile aggiungerlo qui. Accetta una lista di tag separati da virgola\x00Se esiste una copertina grafica individuata nel file di origine, usa quella invece della copertina specificata\x00Ignor&a colori\x00Ignora ta&belle\x00Aumenta la dimensione dei caratteri di 2 * FONT_DELTA punti e la spaziatura tra le linee di FONT_DELTA punti. FONT_DELTA pu\xc3\xb2 essere una frazione. Se FONT_DELTA \xc3\xa8 negativo, la grandezza dei caratteri verr\xc3\xa0 diminuita\x00Ins&erisci linee bianche tra i paragrafi\x00Database non valido\x00Percorso database non valido\x00Percorso database non valido \x00Percorso database non valido.<br>Impossibile scrivere su\x00Input non valido\x00Espressione regolare non valida\x00Espressione regolare non valida: %s\x00Lavoro\x00Lavoro terminato dall\'utente\x00Lavori:\x00Visualizzatore LRF\x00LRS scritto in \x00Margine sinistro della pagina. Predefinito: %default px\x00Biblioteca\x00Lista di serie conosciute. \xc3\x88 possibile aggiungere nuove serie\x00Visualizzazione\x00&Corrispondenza con tutti i criteri seguenti\x00C&orrispondenza con uno qualunque dei criteri seguenti\x00Corrispondenze\x00Massimo numero di articoli da scaricare per feed\x00Numero massimo di livelli ricorsivi, cio\xc3\xa8 profondit\xc3\xa0 dei link da seguire. Predefinito: %default\x00Metadati\x00Metadati\x00Minimizza l\'uso di memoria al costo di un maggior tempo di processamento. Usare questa opzione se si \xc3\xa8 su una macchina a corto di memoria\x00I&ndentazione minima:\x00Intervallo minimo in secondi tra due scaricamenti consecutivi. Predefinito: %default s\x00Indentazione minima paragrafo (l\'indentazione della prima riga di un paragrafo) in pt. Predefinita: %default\x00Di pi\xc3\xb9\x00Nega\x00Notizie scaricate. Salvataggio sul dispositivo\x00Pagina successiva\x00Prossima corrispondenza\x00Nessun formato disponibile\x00Nessun libro selezionato\x00Nessun libro selezionato\x00Nessun file da convertire specificato\x00Nessun nome file specificato\x00Nessuna corrispondenza\x00Nessuna corrispondenza trovata\x00Spazio insufficiente sul dispositivo\x00Nessuno\x00Numero di livelli di link da seguire nelle pagine web che sono collegate ai feed. Predefinito: %default\x00Libro OEB creato in\x00Verranno seguiti solamente i link che corrispondono a questa espressione regolare. Questa opzione pu\xc3\xb2 essere specificata pi\xc3\xb9 volte, in questo modo se un link corrisponde a una delle espressioni regolari verr\xc3\xa0 seguito. Per impostazione predefinita i link non vengono seguiti\x00Apri l\'editor dei tag\x00Apri libro\x00Opzioni\x00Opzioni per controllare il comportamento di feeds2disk\x00Opzioni per controllare il comportamento di html2lrf\x00Opzioni per controllare web2disk (usato per scaricare i siti collegati ai feed)\x00Estrae un file LRS\x00Cartella in uscita. Predefinita: cartella corrente\x00Nome del file in uscita. Il nome predefinito \xc3\xa8 preso dal file in ingresso\x00Sovrascrive il CSS. Pu\xc3\xb2 essere un percorso ad un foglio di stile CSS o una stringa. Se \xc3\xa8 una stringa, sar\xc3\xa0 interpretata come CSS\x00Sovrascrivi<br>CSS\x00Imposta pagina\x00Analisi file LRF\x00Analisi LRF...\x00Password per i siti che richiedono un\'identificazione per accedere ai contenuti\x00Password necessaria\x00Percorso\x00Percorso a un\'immagine che verr\xc3\xa0 impostata come miniatura di questo file\x00Percorso a un file TXT contenente il commento che verr\xc3\xa0 incluso nel file LRF\x00Percorso al file contenente l\'immagine da usare come copertina\x00Percorso della cartella in uscita dove creare il file HTML. Predefinito: cartella corrente\x00Percorso del file in uscita\x00Preprocessa i file HTML di Baen per migliorare i file LRF generati\x00Preprocessa il file prima di convertirlo in LRF. \xc3\x88 utile se si conosce la fonte da cui proviene il file. Fonti conosciute:\x00Previene l\'inserimento automatico di interruzioni di pagina prima dei capitoli individuati\x00Pagina precedente\x00Invia l\'HTML generato allo stdout ed esce\x00Sto processando %s\x00Profilo del dispositivo per cui viene generato questo LRF. Il profilo determina parametri come la risoluzione e la dimensione dello schermo del dispositivo. Predefinito: %s. Profili supportati: \x00Progresso\x00Editore\x00Giudizio\x00Giudizio su questo libro. 0-5 stelle\x00MOBI HTML raw salvato in\x00Lettore\n%s disponibili\x00&Titolo formula:\x00Codice sorgente formula (python)\x00&Espressione regolare\x00Nome del gruppo per l\'espressione regolare (?P<authors>)\x00Nome del gruppo per l\'espressione regolare (?P<series>)\x00Nome del gruppo per l\'espressione regolare (?P<series_index>)\x00Nome del gruppo per l\'espressione regolare (?P< title>)\x00Rimuove una cartella dalla lista delle cartelle usate frequentemente\x00Rimuovi libri\x00Rimuove il feed dalla formula\x00Rimuovi il formato selezionato dal database per questo libro\x00Rimuovi serie inutilizzate (che non hanno libri)\x00Trasforma le tabelle HTML in blocchi di testo invece che in vere tabelle.\nQuesta opzione \xc3\xa8 necessaria se il file HTML contiene tabelle molto grandi o complesse\x00Trasforma tutto il contenuto in bianco e nero al posto dei colori specificati dall\'HTML o dal CSS.\x00Sovrascrivere la formula?\x00Resetta ricerca veloce\x00Margine destro della pagina. Predefinito: %default px\x00Tempo di esecuzione\x00&Senza grazie:\x00Salva su disco\x00Salva su disco in una singola cartella\x00Cerca (Per la ricerca avanzata fare clic sul bottone a sinistra)\x00Criteri di ricerca\x00Cerca nella lista dei libri per titolo o autore<br><br>Parole separate da spazi hanno come operatore AND\x00Cerca nella lista dei libri per titolo, autore, editore, tag e commenti<br><br>Parole separate da spazi hanno come operatore AND\x00Selezionare il libro che corrisponde maggiormente alla propria copia dall\'elenco sottostante\x00&Selezionare le colonne visibili nella vista biblioteca\x00Invia al dispositivo\x00Invia alla memoria principale\x00Invia alla scheda di memoria\x00Separa i paragrafi con linee bianche\x00Serie\x00Indice serie\x00Indice serie:\x00Serie:\x00Errore del server. Ritentare pi\xc3\xb9 tardi\x00Imposta l\'ID del libro\x00Impostazioni di conversione predefinite\x00Imposta la chiave per la classificazione dell\'autore\x00Imposta la chiave per la classificazione del titolo\x00Imposta l\'autore\x00Imposta l\'autore. Autori multipli devono essere separati da una virgola. Predefinito: %default\x00Imposta gli autori\x00Imposta il titolo del libro\x00Imposta la categoria\x00Imposta il commento\x00Imposta il commento\x00Imposta il timeout predefinito per gli scaricamenti dalla rete (cio\xc3\xa8 ogni volta che si usa Internet per prelevare informazioni)\x00Imposta il formato dell\'intestazione. %a verr\xc3\xa0 rimpiazzato dall\'autore e %t dal titolo. L\'impostazione predefinita \xc3\xa8 %default\x00Imposta lo spazio tra le parole in punti. Il valore predefinito \xc3\xa8 %default\x00Imposta il titolo. Predefinito: nome del file\x00Mostra un output dettagliato. Utile per il debugging\x00Sottoscrivere un account gratuito su <a href="http://www.isbndb.com">ISBNdb.com</a> per ottenere delle chiavi d\'accesso.\x00Dimensione (MB)\x00Chiave per la classificazione dell\'autore\x00Chiave per la classificazione del titolo\x00C&odifica sorgente:\x00Specificare una lista di feed da scaricare. Per esempio: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nSe si specifica questa opzione, ogni indice per %prog viene ignorato e viene usata una formula predefinita per scaricare i feed.\x00Specifica come deve essere classificato l\'autore di questo libro. Ad esempio, Charles Dickens deve essere classificato come Dickens, Charles.\x00Specifica metadati come il titolo e l\'autore del libro.<p>I metadati saranno aggiornati nel database e nel file LRF generato\x00Specifica la dimensione del testo base in punti. Tutti i caratteri saranno scalati in accordo.\nQuesta opzione rende obsoleta l\'opzione --font-delta e ha precedenza su quest\'ultima. Per usare --font-delta, impostare questa a 0\x00Specifica la codifica caratteri del file di origine. Se il file LRF generato contiene caratteri strani, provare a cambiare questa opzione. Una codifica comune per i computer Windows \xc3\xa8 cp-1252. Un\'altra scelta comune \xc3\xa8 utf-8. L\'opzione predefinita \xc3\xa8 quella di provare ad indovinare la codifica\x00Specifica le impostazioni della pagina come i margini e la dimensione dello schermo del dispositivo\x00Specifica la famiglia di caratteri truetype per i caratteri con grazie, senza grazie e a spaziatura fissa. Questi caratteri saranno inclusi nel file LRF. Si noti che i caratteri personalizzati portano a una maggiore lentezza nel girare le pagine. Ogni specificazione di famiglia \xc3\xa8 della forma: "percorso alla cartella dei caratteri, famiglia". Ad esempio: --serif-family "%s, Times New Roman"\n \x00Inizio scaricamento [%d articolo(i)]...\x00Stato\x00Passa alla modalit\xc3\xa0 avanzata\x00Passa alla modalit\xc3\xa0 base\x00T&ag: \x00La tabella ha celle troppo larghe\x00Tag\x00Editor di tag\x00Individuazione basata sui tag\x00Tag\x00I tag categorizzano un libro. Questo \xc3\xa8 particolarmente utile durante le ricerche. <br>Possono essere qualsiasi parola o frase, separati da una virgola\x00Test\x00EtichettaDiTesto\x00Il codice ISBN del libro di cui si vogliono i metadati\x00L\'autore del libro da cercare\x00La categoria a cui questo libro appartiene. Es: Storia\x00La codifica caratteri del sito webb che si sta cercando di scaricare. L\'impostazione predefinita \xc3\xa8 quella di provare a indovinare la codifica\x00La cartella in cui salvare i feed scaricati. Perdefinita: cartella corrente\x00Il feed %S deve avere una URL\x00Il feed deve avere un titolo\x00Il numero massimo di file da scaricare. Questa si applica solo ai file dai tag <a fref>. Predefinito: %default\x00Il numero massimo di livelli per processare ricorsivamente i link. Il valore 0 significa che i link non vengono seguiti. Un valore negativo significa che i tag <a> vengono ignorati\x00La famiglia di caratteri a spaziatura fissa da includere\x00L\'articolo pi\xc3\xb9 vecchio da scaricare\x00L\'editore del libro da cercare\x00L\'espressione regolare utilizzata per individuare i titoli dei capitoli. I titoli vengono cercati nei tag d\'intestazione (H1-H6). Predefinita: %default\x00La famiglia di caratteri senza grazie da includere\x00La famiglia di caratteri con grazie da includere\x00Il testo da cercare. \xc3\x88 interpretato come un\'espressione regolare\x00Il titolo per questa formula. Usato come titolo per ogni libro creato da questi feed scaricati\x00Il titolo del libro da cercare\x00Si \xc3\xa8 verificato un errore di comunicazione temporaneo col dispositivo. Disconnettere e riconnettere il dispositivo e/o riavviare\x00Questo feed \xc3\xa8 gi\xc3\xa0 stato aggiunto alla formula\x00Timeout in secondi da aspettare per una risposta dal server. Predefinito: %default s\x00Timestamp\x00Titolo\x00Individuazione basata sul titolo\x00Titolo:\x00Margine superiore della pagina. Predefinito: %default px\x00Tentativo di scaricamento della copertina...\x00Impossibile processare l\'immagine %s. Errore: %s\x00Impossibile processare la PNG interlacciata %s\x00Rimuovi il tag dal libro corrente\x00Non disponibile\x00Sconosciuto\x00Sorgente di notizie sconosciuta\x00Feed sconosciuto\x00Articolo senza titolo\x00Articolo senza titolo\x00Uso:\x00Uso: %prog [opzioni] miolibro.epub\n \n \n%prog converte miolibro.epub in miolibro.lrf\x00Uso: %prog [opzioni] miolibro.html\n\n\n%prog converte miolibro.html in miolibro.lrf.\n%prog segue ricorsivamente tutti i link in miolibro.html\nche puntano a file locali. In questo modo \xc3\xa8 possibile\nusarlo per convertire un intero albero di file HTML\x00Uso: %prog [opzioni] miolibro.lit\n\n\n%prog converte miolibro.lit in miolibro.lrf\x00Uso: %prog [opzioni] miolibro.mobi|prc\n\n\n%prog converte miolibro.mobi in miolibro.lrf\x00Uso: %s file.lit\x00Uso: pdf-meta-file.pdf\x00&Usare numeri romani per i numeri delle serie\x00Usa copertina del file di &origine\x00Usa l\'elemento <spine> dal file OPF per determinare in quale ordine i file HTML devono essere aggiunti al file LRF. Il file OPF deve essere nella stessa cartella del file HTML principale\x00Usare questa opzione sui file html0 di Book Designer\x00Usa uno sfondo bianco\x00Utile per lo sviluppo delle formule. Forza max_articles_per_feed a 2 e scarica al massimo 2 feed\x00Nome utente per i siti che richiedono un\'identificazione per accedere ai contenuti\x00Processamento prolisso\x00Output molto prolisso, utile per il debugging\x00Leggi\x00Leggi uno specifico formato\x00In attesa\x00In esecuzione\x00HTML preprocessato scritto in \x00Non si hanno i permessi per leggere il file: \x00\xc3\x88 necessario prima salvare il sito web %s come un file HTML e poi eseguire html2lrf su di esso\x00\xc3\x88 necessario aggiungere questa opzione se si stanno processando file generati da pdftohtml, altrimenti la conversione non riuscir\xc3\xa0\x00\xc3\x88 necessario specificare un singolo file PDF\x00\xc3\x88 necessario specificare delle chiavi d\'accesso valide per isbndb.com\x00\xc3\x88 necessario specificare il codice ISBN di questo libro\x00any2lrf [opzioni] miofile\n\nConverte qualsiasi formato di libro in LRF. I formati supportati sono:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC e PDF. Any2lrf processer\xc3\xa0 anche un\narchivio RAR o ZIP, cercando i libri dentro l\'archivio.\n \x00calibre\x00contiene\x00miolibro.epub\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: calibre 0.4.17\nPOT-Creation-Date: 2008-04-07 16:11+IST\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\xee\x01\x00\x00\x1c\x00\x00\x00\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x1e\x00\x00"\x00\x00\x00\xfd\x1e\x00\x00\x1d\x00\x00\x00 \x1f\x00\x00\x16\x00\x00\x00>\x1f\x00\x00\x0e\x00\x00\x00U\x1f\x00\x00\x10\x00\x00\x00d\x1f\x00\x00a\x00\x00\x00u\x1f\x00\x00+\x01\x00\x00\xd7\x1f\x00\x00!\x00\x00\x00\x03!\x00\x00\x05\x00\x00\x00%!\x00\x00\x06\x00\x00\x00+!\x00\x00\x17\x00\x00\x002!\x00\x00\x0b\x00\x00\x00J!\x00\x00\x04\x00\x00\x00V!\x00\x00\x03\x00\x00\x00[!\x00\x00\x08\x00\x00\x00_!\x00\x00\x06\x00\x00\x00h!\x00\x00\xfd\x01\x00\x00o!\x00\x005\x00\x00\x00m#\x00\x00>\x00\x00\x00\xa3#\x00\x00E\x00\x00\x00\xe2#\x00\x00D\x00\x00\x00($\x00\x00D\x00\x00\x00m$\x00\x00D\x00\x00\x00\xb2$\x00\x00\x1c\x00\x00\x00\xf7$\x00\x00G\x00\x00\x00\x14%\x00\x00\x1c\x00\x00\x00\\%\x00\x00\x0e\x00\x00\x00y%\x00\x00\x0c\x00\x00\x00\x88%\x00\x00\t\x00\x00\x00\x95%\x00\x00\t\x00\x00\x00\x9f%\x00\x00\x0c\x00\x00\x00\xa9%\x00\x00\x0f\x00\x00\x00\xb6%\x00\x00\x11\x00\x00\x00\xc6%\x00\x00\x1a\x00\x00\x00\xd8%\x00\x00\x0c\x00\x00\x00\xf3%\x00\x00\x1d\x00\x00\x00\x00&\x00\x00\x0f\x00\x00\x00\x1e&\x00\x00\r\x00\x00\x00.&\x00\x00)\x00\x00\x00<&\x00\x00"\x00\x00\x00f&\x00\x00\x18\x00\x00\x00\x89&\x00\x00\x0b\x00\x00\x00\xa2&\x00\x00\x10\x00\x00\x00\xae&\x00\x00\x17\x00\x00\x00\xbf&\x00\x00\n\x00\x00\x00\xd7&\x00\x00\x0c\x00\x00\x00\xe2&\x00\x00\x1e\x00\x00\x00\xef&\x00\x00\t\x00\x00\x00\x0e\'\x00\x00\x0c\x00\x00\x00\x18\'\x00\x00\x08\x00\x00\x00%\'\x00\x00\x14\x00\x00\x00.\'\x00\x00\x0e\x00\x00\x00C\'\x00\x00\r\x00\x00\x00R\'\x00\x00\x0e\x00\x00\x00`\'\x00\x00\x08\x00\x00\x00o\'\x00\x00\x08\x00\x00\x00x\'\x00\x00\x07\x00\x00\x00\x81\'\x00\x00\x0c\x00\x00\x00\x89\'\x00\x00\x0e\x00\x00\x00\x96\'\x00\x00\x12\x00\x00\x00\xa5\'\x00\x00\x05\x00\x00\x00\xb8\'\x00\x00\x08\x00\x00\x00\xbe\'\x00\x00\x0c\x00\x00\x00\xc7\'\x00\x00\n\x00\x00\x00\xd4\'\x00\x00\x0e\x00\x00\x00\xdf\'\x00\x00\x03\x00\x00\x00\xee\'\x00\x001\x00\x00\x00\xf2\'\x00\x00"\x00\x00\x00$(\x00\x00=\x00\x00\x00G(\x00\x00\x18\x00\x00\x00\x85(\x00\x00+\x00\x00\x00\x9e(\x00\x00\x00\x02\x00\x00\xca(\x00\x00\xa3\x01\x00\x00\xcb*\x00\x00|\x02\x00\x00o,\x00\x00>\x00\x00\x00\xec.\x00\x00S\x00\x00\x00+/\x00\x005\x00\x00\x00\x7f/\x00\x00p\x00\x00\x00\xb5/\x00\x00a\x00\x00\x00&0\x00\x00G\x00\x00\x00\x880\x00\x00(\x00\x00\x00\xd00\x00\x00\xa7\x00\x00\x00\xf90\x00\x00W\x00\x00\x00\xa11\x00\x00\x96\x00\x00\x00\xf91\x00\x00=\x01\x00\x00\x902\x00\x002\x00\x00\x00\xce3\x00\x00T\x00\x00\x00\x014\x00\x00\x01\x00\x00\x00V4\x00\x00C\x00\x00\x00X4\x00\x00X\x00\x00\x00\x9c4\x00\x00\r\x00\x00\x00\xf54\x00\x00\x0f\x00\x00\x00\x035\x00\x00\x0b\x00\x00\x00\x135\x00\x00\x0b\x00\x00\x00\x1f5\x00\x00\x18\x00\x00\x00+5\x00\x007\x00\x00\x00D5\x00\x004\x00\x00\x00|5\x00\x00.\x00\x00\x00\xb15\x00\x00\t\x00\x00\x00\xe05\x00\x00!\x00\x00\x00\xea5\x00\x00b\x00\x00\x00\x0c6\x00\x00o\x00\x00\x00o6\x00\x00\x16\x00\x00\x00\xdf6\x00\x00\x12\x00\x00\x00\xf66\x00\x006\x00\x00\x00\t7\x00\x00\x12\x00\x00\x00@7\x00\x00m\x00\x00\x00S7\x00\x00\x08\x00\x00\x00\xc17\x00\x00\x0f\x00\x00\x00\xca7\x00\x00\x0f\x00\x00\x00\xda7\x00\x00\x0e\x00\x00\x00\xea7\x00\x00\x05\x00\x00\x00\xf97\x00\x00F\x00\x00\x00\xff7\x00\x00\x03\x00\x00\x00F8\x00\x005\x01\x00\x00J8\x00\x00\x19\x00\x00\x00\x809\x00\x00\x1b\x00\x00\x00\x9a9\x00\x00\x16\x00\x00\x00\xb69\x00\x00\x06\x00\x00\x00\xcd9\x00\x00\x0e\x00\x00\x00\xd49\x00\x00\r\x00\x00\x00\xe39\x00\x00\t\x00\x00\x00\xf19\x00\x00\x08\x00\x00\x00\xfb9\x00\x00\x11\x00\x00\x00\x04:\x00\x00\x16\x00\x00\x00\x16:\x00\x00\x04\x00\x00\x00-:\x00\x00\r\x00\x00\x002:\x00\x00\x10\x00\x00\x00@:\x00\x00;\x00\x00\x00Q:\x00\x00\x05\x00\x00\x00\x8d:\x00\x00!\x00\x00\x00\x93:\x00\x00\x10\x00\x00\x00\xb5:\x00\x00\x1b\x00\x00\x00\xc6:\x00\x00\x05\x00\x00\x00\xe2:\x00\x00(\x00\x00\x00\xe8:\x00\x00\n\x00\x00\x00\x11;\x00\x00.\x00\x00\x00\x1c;\x00\x005\x00\x00\x00K;\x00\x00$\x00\x00\x00\x81;\x00\x00\x0c\x00\x00\x00\xa6;\x00\x00\x1a\x00\x00\x00\xb3;\x00\x00\x19\x00\x00\x00\xce;\x00\x00\x10\x00\x00\x00\xe8;\x00\x00.\x00\x00\x00\xf9;\x00\x00\x0e\x00\x00\x00(<\x00\x00\x0e\x00\x00\x007<\x00\x007\x00\x00\x00F<\x00\x00\x14\x00\x00\x00~<\x00\x00\x12\x00\x00\x00\x93<\x00\x00#\x00\x00\x00\xa6<\x00\x00\x0f\x00\x00\x00\xca<\x00\x00Z\x00\x00\x00\xda<\x00\x00\x19\x00\x00\x005=\x00\x00\x0b\x00\x00\x00O=\x00\x00\x14\x00\x00\x00[=\x00\x00\x13\x00\x00\x00p=\x00\x00\x0b\x00\x00\x00\x84=\x00\x00\x11\x00\x00\x00\x90=\x00\x00\x08\x00\x00\x00\xa2=\x00\x00\x14\x00\x00\x00\xab=\x00\x00\x0f\x00\x00\x00\xc0=\x00\x00R\x00\x00\x00\xd0=\x00\x00!\x00\x00\x00#>\x00\x00\x1d\x00\x00\x00E>\x00\x00H\x00\x00\x00c>\x00\x00\x11\x00\x00\x00\xac>\x00\x00\r\x00\x00\x00\xbe>\x00\x00%\x00\x00\x00\xcc>\x00\x00\x19\x00\x00\x00\xf2>\x00\x00!\x00\x00\x00\x0c?\x00\x007\x00\x00\x00.?\x00\x00\x08\x00\x00\x00f?\x00\x00+\x00\x00\x00o?\x00\x00\r\x00\x00\x00\x9b?\x00\x00\r\x00\x00\x00\xa9?\x00\x00\t\x00\x00\x00\xb7?\x00\x00\x10\x00\x00\x00\xc1?\x00\x00\x11\x00\x00\x00\xd2?\x00\x00\x0f\x00\x00\x00\xe4?\x00\x00)\x00\x00\x00\xf4?\x00\x00\x14\x00\x00\x00\x1e@\x00\x00\x0e\x00\x00\x003@\x00\x00\x0e\x00\x00\x00B@\x00\x00\x1c\x00\x00\x00Q@\x00\x00;\x00\x00\x00n@\x00\x00\x15\x00\x00\x00\xaa@\x00\x00R\x00\x00\x00\xc0@\x00\x00\x17\x00\x00\x00\x13A\x00\x00\x18\x00\x00\x00+A\x00\x00\x1e\x00\x00\x00DA\x00\x00\x1e\x00\x00\x00cA\x00\x00\x0e\x00\x00\x00\x82A\x00\x00\x0b\x00\x00\x00\x91A\x00\x00\x0f\x00\x00\x00\x9dA\x00\x00\x13\x00\x00\x00\xadA\x00\x00\x04\x00\x00\x00\xc1A\x00\x00\x19\x00\x00\x00\xc6A\x00\x00\x03\x00\x00\x00\xe0A\x00\x00h\x00\x00\x00\xe4A\x00\x00\x0e\x00\x00\x00MB\x00\x00\x19\x00\x00\x00\\B\x00\x00 \x00\x00\x00vB\x00\x00\x1b\x00\x00\x00\x97B\x00\x00\x1a\x00\x00\x00\xb3B\x00\x00&\x00\x00\x00\xceB\x00\x00\x11\x00\x00\x00\xf5B\x00\x00\x19\x00\x00\x00\x07C\x00\x00\x11\x00\x00\x00!C\x00\x00\x01\x00\x00\x003C\x00\x00\x05\x00\x00\x005C\x00\x00\x15\x00\x00\x00;C\x00\x00\x15\x00\x00\x00QC\x00\x00\x15\x00\x00\x00gC\x00\x00\x15\x00\x00\x00}C\x00\x00\x1a\x00\x00\x00\x93C\x00\x00\x0e\x00\x00\x00\xaeC\x00\x00\x1f\x00\x00\x00\xbdC\x00\x00C\x00\x00\x00\xddC\x00\x00\x05\x00\x00\x00!D\x00\x00\x1f\x00\x00\x00\'D\x00\x00\x12\x00\x00\x00GD\x00\x00\x17\x00\x00\x00ZD\x00\x00\x1f\x00\x00\x00rD\x00\x00\'\x00\x00\x00\x92D\x00\x003\x00\x00\x00\xbaD\x00\x00*\x00\x00\x00\xeeD\x00\x00\x1a\x00\x00\x00\x19E\x00\x00\x1a\x00\x00\x004E\x00\x00\n\x00\x00\x00OE\x00\x00\x14\x00\x00\x00ZE\x00\x00\x16\x00\x00\x00oE\x00\x00\x16\x00\x00\x00\x86E\x00\x00\x0f\x00\x00\x00\x9dE\x00\x00\x05\x00\x00\x00\xadE\x00\x00\x1d\x00\x00\x00\xb3E\x00\x00\x0e\x00\x00\x00\xd1E\x00\x00\x1a\x00\x00\x00\xe0E\x00\x00\n\x00\x00\x00\xfbE\x00\x00\x10\x00\x00\x00\x06F\x00\x00\r\x00\x00\x00\x17F\x00\x00\x11\x00\x00\x00%F\x00\x00\x1f\x00\x00\x007F\x00\x00\x13\x00\x00\x00WF\x00\x00\x1b\x00\x00\x00kF\x00\x00\x05\x00\x00\x00\x87F\x00\x00\x0b\x00\x00\x00\x8dF\x00\x008\x00\x00\x00\x99F\x00\x00\x08\x00\x00\x00\xd2F\x00\x00\x88\x00\x00\x00\xdbF\x00\x00\x1d\x01\x00\x00dG\x00\x00J\x00\x00\x00\x82H\x00\x00#\x00\x00\x00\xcdH\x00\x00\x04\x00\x00\x00\xf1H\x00\x00\x06\x00\x00\x00\xf6H\x00\x00\x07\x00\x00\x00\xfdH\x00\x00\x07\x00\x00\x00\x05I\x00\x00\'\x00\x00\x00\rI\x00\x00\x1b\x00\x00\x005I\x00\x00\x19\x00\x00\x00QI\x00\x00\x06\x00\x00\x00kI\x00\x00\x0c\x00\x00\x00rI\x00\x00\t\x00\x00\x00\x7fI\x00\x00\x06\x00\x00\x00\x89I\x00\x00\xdc\x01\x00\x00\x90I\x00\x00n\x00\x00\x00mK\x00\x00a\x00\x00\x00\xdcK\x00\x00\x0e\x00\x00\x00>L\x00\x00\x0e\x00\x00\x00ML\x00\x00\xa8\x00\x00\x00\\L\x00\x00&\x00\x00\x00\x05M\x00\x00\x10\x00\x00\x00,M\x00\x00\x19\x00\x00\x00=M\x00\x00\x1a\x00\x00\x00WM\x00\x00.\x00\x00\x00rM\x00\x00\r\x00\x00\x00\xa1M\x00\x00\x1a\x00\x00\x00\xafM\x00\x00\x1e\x00\x00\x00\xcaM\x00\x00\x03\x00\x00\x00\xe9M\x00\x00\x12\x00\x00\x00\xedM\x00\x00\x05\x00\x00\x00\x00N\x00\x00\n\x00\x00\x00\x06N\x00\x00\x0f\x00\x00\x00\x11N\x00\x00,\x00\x00\x00!N\x00\x00\x07\x00\x00\x00NN\x00\x00-\x00\x00\x00VN\x00\x00\x0b\x00\x00\x00\x84N\x00\x00$\x00\x00\x00\x90N\x00\x00$\x00\x00\x00\xb5N\x00\x00\x07\x00\x00\x00\xdaN\x00\x000\x00\x00\x00\xe2N\x00\x00S\x00\x00\x00\x13O\x00\x00\x10\x00\x00\x00gO\x00\x00\x08\x00\x00\x00xO\x00\x00y\x00\x00\x00\x81O\x00\x00\x10\x00\x00\x00\xfbO\x00\x00N\x00\x00\x00\x0cP\x00\x00`\x00\x00\x00[P\x00\x00\x04\x00\x00\x00\xbcP\x00\x00\x06\x00\x00\x00\xc1P\x00\x00"\x00\x00\x00\xc8P\x00\x00\t\x00\x00\x00\xebP\x00\x00\n\x00\x00\x00\xf5P\x00\x00\x14\x00\x00\x00\x00Q\x00\x00\x10\x00\x00\x00\x15Q\x00\x00\x11\x00\x00\x00&Q\x00\x00\x1d\x00\x00\x008Q\x00\x00\x16\x00\x00\x00VQ\x00\x00\x08\x00\x00\x00mQ\x00\x00\x10\x00\x00\x00vQ\x00\x00\x12\x00\x00\x00\x87Q\x00\x00\x04\x00\x00\x00\x9aQ\x00\x00^\x00\x00\x00\x9fQ\x00\x00\x14\x00\x00\x00\xfeQ\x00\x00\xdc\x00\x00\x00\x13R\x00\x00\x0f\x00\x00\x00\xf0R\x00\x00\n\x00\x00\x00\x00S\x00\x00\x07\x00\x00\x00\x0bS\x00\x00-\x00\x00\x00\x13S\x00\x00+\x00\x00\x00AS\x00\x00F\x00\x00\x00mS\x00\x00\x0f\x00\x00\x00\xb4S\x00\x000\x00\x00\x00\xc4S\x00\x008\x00\x00\x00\xf5S\x00\x00s\x00\x00\x00.T\x00\x00\x0f\x00\x00\x00\xa2T\x00\x00\n\x00\x00\x00\xb2T\x00\x00\x10\x00\x00\x00\xbdT\x00\x00\x0e\x00\x00\x00\xceT\x00\x00:\x00\x00\x00\xddT\x00\x00\x0f\x00\x00\x00\x18U\x00\x00\x04\x00\x00\x00(U\x00\x00;\x00\x00\x00-U\x00\x00G\x00\x00\x00iU\x00\x001\x00\x00\x00\xb1U\x00\x00Y\x00\x00\x00\xe3U\x00\x00\x13\x00\x00\x00=V\x00\x004\x00\x00\x00QV\x00\x00\x80\x00\x00\x00\x86V\x00\x00H\x00\x00\x00\x07W\x00\x00\r\x00\x00\x00PW\x00\x00(\x00\x00\x00^W\x00\x00\r\x00\x00\x00\x87W\x00\x00\xbc\x00\x00\x00\x95W\x00\x00\x08\x00\x00\x00RX\x00\x00\t\x00\x00\x00[X\x00\x00\x06\x00\x00\x00eX\x00\x00\x1e\x00\x00\x00lX\x00\x00\x16\x00\x00\x00\x8bX\x00\x00\x13\x00\x00\x00\xa2X\x00\x00\x0e\x00\x00\x00\xb6X\x00\x00\x1b\x00\x00\x00\xc5X\x00\x00\x13\x00\x00\x00\xe1X\x00\x00+\x00\x00\x00\xf5X\x00\x00*\x00\x00\x00!Y\x00\x000\x00\x00\x00LY\x00\x00)\x00\x00\x00}Y\x00\x00<\x00\x00\x00\xa7Y\x00\x00\x0c\x00\x00\x00\xe4Y\x00\x00\x17\x00\x00\x00\xf1Y\x00\x00<\x00\x00\x00\tZ\x00\x000\x00\x00\x00FZ\x00\x00\x84\x00\x00\x00wZ\x00\x00X\x00\x00\x00\xfcZ\x00\x00\x0f\x00\x00\x00U[\x00\x00\x12\x00\x00\x00e[\x00\x00-\x00\x00\x00x[\x00\x00\x0c\x00\x00\x00\xa6[\x00\x00\x0c\x00\x00\x00\xb3[\x00\x00\x0c\x00\x00\x00\xc0[\x00\x00"\x00\x00\x00\xcd[\x00\x009\x00\x00\x00\xf0[\x00\x00\x0f\x00\x00\x00*\\\x00\x00V\x00\x00\x00:\\\x00\x00r\x00\x00\x00\x91\\\x00\x00G\x00\x00\x00\x04]\x00\x00\'\x00\x00\x00L]\x00\x00\x0e\x00\x00\x00t]\x00\x00\x13\x00\x00\x00\x83]\x00\x00\x14\x00\x00\x00\x97]\x00\x00#\x00\x00\x00\xac]\x00\x00\x06\x00\x00\x00\xd0]\x00\x00\r\x00\x00\x00\xd7]\x00\x00\r\x00\x00\x00\xe5]\x00\x00\x07\x00\x00\x00\xf3]\x00\x00\x1e\x00\x00\x00\xfb]\x00\x00\x0b\x00\x00\x00\x1a^\x00\x00\x17\x00\x00\x00&^\x00\x00\x1b\x00\x00\x00>^\x00\x00\x1a\x00\x00\x00Z^\x00\x00\x0e\x00\x00\x00u^\x00\x00^\x00\x00\x00\x84^\x00\x00\x0f\x00\x00\x00\xe3^\x00\x00\x12\x00\x00\x00\xf3^\x00\x00\x10\x00\x00\x00\x06_\x00\x00\x0f\x00\x00\x00\x17_\x00\x00\x10\x00\x00\x00\'_\x00\x00g\x00\x00\x008_\x00\x00c\x00\x00\x00\xa0_\x00\x007\x00\x00\x00\x04`\x00\x00!\x00\x00\x00<`\x00\x006\x00\x00\x00^`\x00\x00d\x00\x00\x00\x95`\x00\x00\t\x00\x00\x00\xfa`\x00\x00\x17\x00\x00\x00\x04a\x00\x00\x16\x00\x00\x00\x1ca\x00\x00\x11\x00\x00\x003a\x00\x00\x04\x01\x00\x00Ea\x00\x00z\x00\x00\x00Jb\x00\x00\x85\x00\x00\x00\xc5b\x00\x00\xb6\x00\x00\x00Kc\x00\x00\r\x01\x00\x00\x02d\x00\x00P\x00\x00\x00\x10e\x00\x00+\x01\x00\x00ae\x00\x00#\x00\x00\x00\x8df\x00\x00\x06\x00\x00\x00\xb1f\x00\x00\x17\x00\x00\x00\xb8f\x00\x00\x14\x00\x00\x00\xd0f\x00\x00\x07\x00\x00\x00\xe5f\x00\x00 \x00\x00\x00\xedf\x00\x00\x03\x00\x00\x00\x0eg\x00\x00\n\x00\x00\x00\x12g\x00\x00\x13\x00\x00\x00\x1dg\x00\x00\x04\x00\x00\x001g\x00\x00\x85\x00\x00\x006g\x00\x00\x04\x00\x00\x00\xbcg\x00\x00\t\x00\x00\x00\xc1g\x00\x00.\x00\x00\x00\xcbg\x00\x00%\x00\x00\x00\xfag\x00\x000\x00\x00\x00 h\x00\x00q\x00\x00\x00Qh\x00\x00X\x00\x00\x00\xc3h\x00\x00\x1b\x00\x00\x00\x1ci\x00\x00\x1a\x00\x00\x008i\x00\x00k\x00\x00\x00Si\x00\x00\x9d\x00\x00\x00\xbfi\x00\x00&\x00\x00\x00]j\x00\x00\x1e\x00\x00\x00\x84j\x00\x00(\x00\x00\x00\xa3j\x00\x00v\x00\x00\x00\xccj\x00\x00\'\x00\x00\x00Ck\x00\x00"\x00\x00\x00kk\x00\x00B\x00\x00\x00\x8ek\x00\x00^\x00\x00\x00\xd1k\x00\x00$\x00\x00\x000l\x00\x00h\x00\x00\x00Ul\x00\x00.\x00\x00\x00\xbel\x00\x00N\x00\x00\x00\xedl\x00\x00\t\x00\x00\x00<m\x00\x00\x05\x00\x00\x00Fm\x00\x00\x15\x00\x00\x00Lm\x00\x00\x06\x00\x00\x00bm\x00\x00+\x00\x00\x00im\x00\x00\x1b\x00\x00\x00\x95m\x00\x00%\x00\x00\x00\xb1m\x00\x00#\x00\x00\x00\xd7m\x00\x00&\x00\x00\x00\xfbm\x00\x00\x0b\x00\x00\x00"n\x00\x00\x07\x00\x00\x00.n\x00\x00\x13\x00\x00\x006n\x00\x00\x0c\x00\x00\x00Jn\x00\x00\x10\x00\x00\x00Wn\x00\x00\x10\x00\x00\x00hn\x00\x00\x06\x00\x00\x00yn\x00\x00]\x00\x00\x00\x80n\x00\x00\xdb\x00\x00\x00\xden\x00\x00K\x00\x00\x00\xbao\x00\x00Q\x00\x00\x00\x06p\x00\x00\x12\x00\x00\x00Xp\x00\x00\x18\x00\x00\x00kp\x00\x00%\x00\x00\x00\x84p\x00\x00\x1b\x00\x00\x00\xaap\x00\x00\xb4\x00\x00\x00\xc6p\x00\x002\x00\x00\x00{q\x00\x00\x14\x00\x00\x00\xaeq\x00\x00_\x00\x00\x00\xc3q\x00\x00:\x00\x00\x00#r\x00\x00\x12\x00\x00\x00^r\x00\x00*\x00\x00\x00qr\x00\x00\x04\x00\x00\x00\x9cr\x00\x00\x14\x00\x00\x00\xa1r\x00\x00\x07\x00\x00\x00\xb6r\x00\x00\x07\x00\x00\x00\xber\x00\x00\x1d\x00\x00\x00\xc6r\x00\x00-\x00\x00\x00\xe4r\x00\x00R\x00\x00\x00\x12s\x00\x00d\x00\x00\x00es\x00\x00#\x00\x00\x00\xcas\x00\x002\x00\x00\x00\xees\x00\x003\x00\x00\x00!t\x00\x00\xdf\x00\x00\x00Ut\x00\x00\x07\x00\x00\x005u\x00\x00\x08\x00\x00\x00=u\x00\x00\x0b\x00\x00\x00Fu\x00\x00#\x01\x00\x00Ru\x00\x00)\x00\x00\x00vv\x00\x00\x1d\x00\x00\x00\xa0v\x00\x00\x17\x00\x00\x00\xbev\x00\x00 \x00\x00\x00\xd6v\x00\x00\x13\x00\x00\x00\xf7v\x00\x00e\x00\x00\x00\x0bw\x00\x00\\\x01\x00\x00qw\x00\x00\x1d\x00\x00\x00\xcex\x00\x00\x05\x00\x00\x00\xecx\x00\x00\x04\x00\x00\x00\xf2x\x00\x00\x19\x00\x00\x00\xf7x\x00\x00\r\x00\x00\x00\x11y\x00\x00\x07\x00\x00\x00\x1fy\x00\x00\t\x00\x00\x00\'y\x00\x00\t\x00\x00\x001y\x00\x00\n\x00\x00\x00;y\x00\x00+\x02\x00\x00Fy\x00\x00)\x00\x00\x00r{\x00\x00F\x00\x00\x00\x9c{\x00\x00T\x00\x00\x00\xe3{\x00\x00P\x00\x00\x008|\x00\x00P\x00\x00\x00\x89|\x00\x00P\x00\x00\x00\xda|\x00\x00\x1e\x00\x00\x00+}\x00\x00U\x00\x00\x00J}\x00\x00"\x00\x00\x00\xa0}\x00\x00\x12\x00\x00\x00\xc3}\x00\x00\x11\x00\x00\x00\xd6}\x00\x00\x0e\x00\x00\x00\xe8}\x00\x00\x0f\x00\x00\x00\xf7}\x00\x00\x0b\x00\x00\x00\x07~\x00\x00\x11\x00\x00\x00\x13~\x00\x00\x15\x00\x00\x00%~\x00\x00$\x00\x00\x00;~\x00\x00\x0c\x00\x00\x00`~\x00\x000\x00\x00\x00m~\x00\x00\x18\x00\x00\x00\x9e~\x00\x00\x12\x00\x00\x00\xb7~\x00\x00-\x00\x00\x00\xca~\x00\x00&\x00\x00\x00\xf8~\x00\x00\x1e\x00\x00\x00\x1f\x7f\x00\x00\x0b\x00\x00\x00>\x7f\x00\x00\x13\x00\x00\x00J\x7f\x00\x001\x00\x00\x00^\x7f\x00\x00\r\x00\x00\x00\x90\x7f\x00\x00\x12\x00\x00\x00\x9e\x7f\x00\x00+\x00\x00\x00\xb1\x7f\x00\x00\x08\x00\x00\x00\xdd\x7f\x00\x00\x0b\x00\x00\x00\xe6\x7f\x00\x00\r\x00\x00\x00\xf2\x7f\x00\x00\x14\x00\x00\x00\x00\x80\x00\x00\x11\x00\x00\x00\x15\x80\x00\x00\x1a\x00\x00\x00\'\x80\x00\x00\x10\x00\x00\x00B\x80\x00\x00\x08\x00\x00\x00S\x80\x00\x00\x08\x00\x00\x00\\\x80\x00\x00\x07\x00\x00\x00e\x80\x00\x00\x13\x00\x00\x00m\x80\x00\x00\x18\x00\x00\x00\x81\x80\x00\x00\x1e\x00\x00\x00\x9a\x80\x00\x00\x05\x00\x00\x00\xb9\x80\x00\x00\t\x00\x00\x00\xbf\x80\x00\x00\x11\x00\x00\x00\xc9\x80\x00\x00\t\x00\x00\x00\xdb\x80\x00\x00\x17\x00\x00\x00\xe5\x80\x00\x00\x03\x00\x00\x00\xfd\x80\x00\x00/\x00\x00\x00\x01\x81\x00\x00-\x00\x00\x001\x81\x00\x00;\x00\x00\x00_\x81\x00\x00\x1b\x00\x00\x00\x9b\x81\x00\x00-\x00\x00\x00\xb7\x81\x00\x00M\x02\x00\x00\xe5\x81\x00\x00\xa3\x01\x00\x003\x84\x00\x00\x86\x02\x00\x00\xd7\x85\x00\x00?\x00\x00\x00^\x88\x00\x00K\x00\x00\x00\x9e\x88\x00\x004\x00\x00\x00\xea\x88\x00\x00\x8f\x00\x00\x00\x1f\x89\x00\x00j\x00\x00\x00\xaf\x89\x00\x00K\x00\x00\x00\x1a\x8a\x00\x00/\x00\x00\x00f\x8a\x00\x00\xd5\x00\x00\x00\x96\x8a\x00\x00\x7f\x00\x00\x00l\x8b\x00\x00\xcd\x00\x00\x00\xec\x8b\x00\x00\xa4\x01\x00\x00\xba\x8c\x00\x00.\x00\x00\x00_\x8e\x00\x00T\x00\x00\x00\x8e\x8e\x00\x00\x01\x00\x00\x00\xe3\x8e\x00\x00M\x00\x00\x00\xe5\x8e\x00\x00e\x00\x00\x003\x8f\x00\x00\n\x00\x00\x00\x99\x8f\x00\x00\x16\x00\x00\x00\xa4\x8f\x00\x00\x10\x00\x00\x00\xbb\x8f\x00\x00\x18\x00\x00\x00\xcc\x8f\x00\x00/\x00\x00\x00\xe5\x8f\x00\x007\x00\x00\x00\x15\x90\x00\x00H\x00\x00\x00M\x90\x00\x00<\x00\x00\x00\x96\x90\x00\x00\x0e\x00\x00\x00\xd3\x90\x00\x003\x00\x00\x00\xe2\x90\x00\x00}\x00\x00\x00\x16\x91\x00\x00\x98\x00\x00\x00\x94\x91\x00\x00$\x00\x00\x00-\x92\x00\x00\x1b\x00\x00\x00R\x92\x00\x00M\x00\x00\x00n\x92\x00\x00"\x00\x00\x00\xbc\x92\x00\x00r\x00\x00\x00\xdf\x92\x00\x00\t\x00\x00\x00R\x93\x00\x00\x10\x00\x00\x00\\\x93\x00\x00\x10\x00\x00\x00m\x93\x00\x00\x10\x00\x00\x00~\x93\x00\x00\x05\x00\x00\x00\x8f\x93\x00\x00^\x00\x00\x00\x95\x93\x00\x00\t\x00\x00\x00\xf4\x93\x00\x00_\x01\x00\x00\xfe\x93\x00\x00\'\x00\x00\x00^\x95\x00\x00!\x00\x00\x00\x86\x95\x00\x00\x13\x00\x00\x00\xa8\x95\x00\x00\x05\x00\x00\x00\xbc\x95\x00\x00\x11\x00\x00\x00\xc2\x95\x00\x00\x12\x00\x00\x00\xd4\x95\x00\x00\t\x00\x00\x00\xe7\x95\x00\x00\x08\x00\x00\x00\xf1\x95\x00\x00\x14\x00\x00\x00\xfa\x95\x00\x00\x1c\x00\x00\x00\x0f\x96\x00\x00\x06\x00\x00\x00,\x96\x00\x00\x15\x00\x00\x003\x96\x00\x00\x1b\x00\x00\x00I\x96\x00\x00O\x00\x00\x00e\x96\x00\x00\x07\x00\x00\x00\xb5\x96\x00\x003\x00\x00\x00\xbd\x96\x00\x00\x16\x00\x00\x00\xf1\x96\x00\x003\x00\x00\x00\x08\x97\x00\x00\x06\x00\x00\x00<\x97\x00\x00)\x00\x00\x00C\x97\x00\x00\x07\x00\x00\x00m\x97\x00\x008\x00\x00\x00u\x97\x00\x00;\x00\x00\x00\xae\x97\x00\x001\x00\x00\x00\xea\x97\x00\x00\x13\x00\x00\x00\x1c\x98\x00\x00%\x00\x00\x000\x98\x00\x00\'\x00\x00\x00V\x98\x00\x00\x16\x00\x00\x00~\x98\x00\x00/\x00\x00\x00\x95\x98\x00\x00\x14\x00\x00\x00\xc5\x98\x00\x00\x15\x00\x00\x00\xda\x98\x00\x00=\x00\x00\x00\xf0\x98\x00\x00!\x00\x00\x00.\x99\x00\x00 \x00\x00\x00P\x99\x00\x005\x00\x00\x00q\x99\x00\x00\x1d\x00\x00\x00\xa7\x99\x00\x00g\x00\x00\x00\xc5\x99\x00\x00-\x00\x00\x00-\x9a\x00\x00\x10\x00\x00\x00[\x9a\x00\x00\x1c\x00\x00\x00l\x9a\x00\x00\x1c\x00\x00\x00\x89\x9a\x00\x00\x16\x00\x00\x00\xa6\x9a\x00\x00\x15\x00\x00\x00\xbd\x9a\x00\x00\n\x00\x00\x00\xd3\x9a\x00\x00\x1d\x00\x00\x00\xde\x9a\x00\x00\x17\x00\x00\x00\xfc\x9a\x00\x00S\x00\x00\x00\x14\x9b\x00\x00\x1d\x00\x00\x00h\x9b\x00\x00\x1c\x00\x00\x00\x86\x9b\x00\x00V\x00\x00\x00\xa3\x9b\x00\x00\x18\x00\x00\x00\xfa\x9b\x00\x00\x0e\x00\x00\x00\x13\x9c\x00\x00#\x00\x00\x00"\x9c\x00\x00\x1b\x00\x00\x00F\x9c\x00\x00&\x00\x00\x00b\x9c\x00\x00E\x00\x00\x00\x89\x9c\x00\x00\x0b\x00\x00\x00\xcf\x9c\x00\x00\'\x00\x00\x00\xdb\x9c\x00\x00\x16\x00\x00\x00\x03\x9d\x00\x00\x0e\x00\x00\x00\x1a\x9d\x00\x00\n\x00\x00\x00)\x9d\x00\x00\x13\x00\x00\x004\x9d\x00\x00\x12\x00\x00\x00H\x9d\x00\x00\x10\x00\x00\x00[\x9d\x00\x00<\x00\x00\x00l\x9d\x00\x00\x19\x00\x00\x00\xa9\x9d\x00\x00\x0f\x00\x00\x00\xc3\x9d\x00\x00\x13\x00\x00\x00\xd3\x9d\x00\x00#\x00\x00\x00\xe7\x9d\x00\x00W\x00\x00\x00\x0b\x9e\x00\x00!\x00\x00\x00c\x9e\x00\x00}\x00\x00\x00\x85\x9e\x00\x00"\x00\x00\x00\x03\x9f\x00\x00"\x00\x00\x00&\x9f\x00\x00$\x00\x00\x00I\x9f\x00\x00#\x00\x00\x00n\x9f\x00\x00\x1e\x00\x00\x00\x92\x9f\x00\x00\x0b\x00\x00\x00\xb1\x9f\x00\x00\x0f\x00\x00\x00\xbd\x9f\x00\x00\x1f\x00\x00\x00\xcd\x9f\x00\x00\x05\x00\x00\x00\xed\x9f\x00\x002\x00\x00\x00\xf3\x9f\x00\x00\x06\x00\x00\x00&\xa0\x00\x00\x8f\x00\x00\x00-\xa0\x00\x00\x14\x00\x00\x00\xbd\xa0\x00\x00 \x00\x00\x00\xd2\xa0\x00\x00$\x00\x00\x00\xf3\xa0\x00\x00\x1b\x00\x00\x00\x18\xa1\x00\x00!\x00\x00\x004\xa1\x00\x002\x00\x00\x00V\xa1\x00\x00\x10\x00\x00\x00\x89\xa1\x00\x00\x18\x00\x00\x00\x9a\xa1\x00\x00#\x00\x00\x00\xb3\xa1\x00\x00\x01\x00\x00\x00\xd7\xa1\x00\x00\x05\x00\x00\x00\xd9\xa1\x00\x00\x18\x00\x00\x00\xdf\xa1\x00\x00\x18\x00\x00\x00\xf8\xa1\x00\x00\x1b\x00\x00\x00\x11\xa2\x00\x00\x19\x00\x00\x00-\xa2\x00\x00 \x00\x00\x00G\xa2\x00\x00\x13\x00\x00\x00h\xa2\x00\x00-\x00\x00\x00|\xa2\x00\x00V\x00\x00\x00\xaa\xa2\x00\x00\x06\x00\x00\x00\x01\xa3\x00\x00,\x00\x00\x00\x08\xa3\x00\x00\x15\x00\x00\x005\xa3\x00\x00)\x00\x00\x00K\xa3\x00\x00$\x00\x00\x00u\xa3\x00\x00,\x00\x00\x00\x9a\xa3\x00\x00:\x00\x00\x00\xc7\xa3\x00\x00/\x00\x00\x00\x02\xa4\x00\x00)\x00\x00\x002\xa4\x00\x00&\x00\x00\x00\\\xa4\x00\x00\n\x00\x00\x00\x83\xa4\x00\x00\x17\x00\x00\x00\x8e\xa4\x00\x00\x1a\x00\x00\x00\xa6\xa4\x00\x00$\x00\x00\x00\xc1\xa4\x00\x00\x11\x00\x00\x00\xe6\xa4\x00\x00\x06\x00\x00\x00\xf8\xa4\x00\x00\x1d\x00\x00\x00\xff\xa4\x00\x00\x10\x00\x00\x00\x1d\xa5\x00\x00\x1f\x00\x00\x00.\xa5\x00\x00\x18\x00\x00\x00N\xa5\x00\x00\x17\x00\x00\x00g\xa5\x00\x00\x0c\x00\x00\x00\x7f\xa5\x00\x00\x10\x00\x00\x00\x8c\xa5\x00\x00!\x00\x00\x00\x9d\xa5\x00\x00\x17\x00\x00\x00\xbf\xa5\x00\x00\x1d\x00\x00\x00\xd7\xa5\x00\x00\x07\x00\x00\x00\xf5\xa5\x00\x00\x0b\x00\x00\x00\xfd\xa5\x00\x00/\x00\x00\x00\t\xa6\x00\x00\x06\x00\x00\x009\xa6\x00\x00\xc1\x00\x00\x00@\xa6\x00\x00"\x01\x00\x00\x02\xa7\x00\x00^\x00\x00\x00%\xa8\x00\x001\x00\x00\x00\x84\xa8\x00\x00\x03\x00\x00\x00\xb6\xa8\x00\x00\x07\x00\x00\x00\xba\xa8\x00\x00\x08\x00\x00\x00\xc2\xa8\x00\x00\t\x00\x00\x00\xcb\xa8\x00\x004\x00\x00\x00\xd5\xa8\x00\x00!\x00\x00\x00\n\xa9\x00\x00\x1e\x00\x00\x00,\xa9\x00\x00\n\x00\x00\x00K\xa9\x00\x00\x12\x00\x00\x00V\xa9\x00\x00\x16\x00\x00\x00i\xa9\x00\x00\x06\x00\x00\x00\x80\xa9\x00\x00\xe2\x01\x00\x00\x87\xa9\x00\x00\x8f\x00\x00\x00j\xab\x00\x00r\x00\x00\x00\xfa\xab\x00\x00\x16\x00\x00\x00m\xac\x00\x00\x12\x00\x00\x00\x84\xac\x00\x00\xc7\x00\x00\x00\x97\xac\x00\x00*\x00\x00\x00_\xad\x00\x00\x19\x00\x00\x00\x8a\xad\x00\x00\x15\x00\x00\x00\xa4\xad\x00\x00\x15\x00\x00\x00\xba\xad\x00\x000\x00\x00\x00\xd0\xad\x00\x00\x12\x00\x00\x00\x01\xae\x00\x00\x1f\x00\x00\x00\x14\xae\x00\x00#\x00\x00\x004\xae\x00\x00\x07\x00\x00\x00X\xae\x00\x00"\x00\x00\x00`\xae\x00\x00\t\x00\x00\x00\x83\xae\x00\x00\t\x00\x00\x00\x8d\xae\x00\x00\x12\x00\x00\x00\x97\xae\x00\x009\x00\x00\x00\xaa\xae\x00\x00\n\x00\x00\x00\xe4\xae\x00\x00<\x00\x00\x00\xef\xae\x00\x00\n\x00\x00\x00,\xaf\x00\x003\x00\x00\x007\xaf\x00\x009\x00\x00\x00k\xaf\x00\x00\r\x00\x00\x00\xa5\xaf\x00\x001\x00\x00\x00\xb3\xaf\x00\x00i\x00\x00\x00\xe5\xaf\x00\x00\x11\x00\x00\x00O\xb0\x00\x00\t\x00\x00\x00a\xb0\x00\x00|\x00\x00\x00k\xb0\x00\x00\x17\x00\x00\x00\xe8\xb0\x00\x00e\x00\x00\x00\x00\xb1\x00\x00y\x00\x00\x00f\xb1\x00\x00\x04\x00\x00\x00\xe0\xb1\x00\x00\n\x00\x00\x00\xe5\xb1\x00\x006\x00\x00\x00\xf0\xb1\x00\x00\x11\x00\x00\x00\'\xb2\x00\x00\x16\x00\x00\x009\xb2\x00\x00\x17\x00\x00\x00P\xb2\x00\x00\x13\x00\x00\x00h\xb2\x00\x00\x1b\x00\x00\x00|\xb2\x00\x00(\x00\x00\x00\x98\xb2\x00\x00\x19\x00\x00\x00\xc1\xb2\x00\x00\x0c\x00\x00\x00\xdb\xb2\x00\x00"\x00\x00\x00\xe8\xb2\x00\x00 \x00\x00\x00\x0b\xb3\x00\x00\x07\x00\x00\x00,\xb3\x00\x00_\x00\x00\x004\xb3\x00\x00\x15\x00\x00\x00\x94\xb3\x00\x00\xf6\x00\x00\x00\xaa\xb3\x00\x00\x1e\x00\x00\x00\xa1\xb4\x00\x00\x0b\x00\x00\x00\xc0\xb4\x00\x00\x08\x00\x00\x00\xcc\xb4\x00\x00\x1d\x00\x00\x00\xd5\xb4\x00\x00\x1b\x00\x00\x00\xf3\xb4\x00\x00H\x00\x00\x00\x0f\xb5\x00\x00\x11\x00\x00\x00X\xb5\x00\x00=\x00\x00\x00j\xb5\x00\x00K\x00\x00\x00\xa8\xb5\x00\x00\x93\x00\x00\x00\xf4\xb5\x00\x00\x11\x00\x00\x00\x88\xb6\x00\x00\x19\x00\x00\x00\x9a\xb6\x00\x00\x19\x00\x00\x00\xb4\xb6\x00\x00\x12\x00\x00\x00\xce\xb6\x00\x00J\x00\x00\x00\xe1\xb6\x00\x00\x18\x00\x00\x00,\xb7\x00\x00\x04\x00\x00\x00E\xb7\x00\x00:\x00\x00\x00J\xb7\x00\x00J\x00\x00\x00\x85\xb7\x00\x001\x00\x00\x00\xd0\xb7\x00\x00r\x00\x00\x00\x02\xb8\x00\x00\x12\x00\x00\x00u\xb8\x00\x00G\x00\x00\x00\x88\xb8\x00\x00w\x00\x00\x00\xd0\xb8\x00\x00Z\x00\x00\x00H\xb9\x00\x00\x10\x00\x00\x00\xa3\xb9\x00\x00;\x00\x00\x00\xb4\xb9\x00\x00\r\x00\x00\x00\xf0\xb9\x00\x00\xc8\x00\x00\x00\xfe\xb9\x00\x00\x08\x00\x00\x00\xc7\xba\x00\x00\t\x00\x00\x00\xd0\xba\x00\x00\x0b\x00\x00\x00\xda\xba\x00\x00 \x00\x00\x00\xe6\xba\x00\x00!\x00\x00\x00\x07\xbb\x00\x00\x19\x00\x00\x00)\xbb\x00\x00\x13\x00\x00\x00C\xbb\x00\x00 \x00\x00\x00W\xbb\x00\x00\x14\x00\x00\x00x\xbb\x00\x00-\x00\x00\x00\x8d\xbb\x00\x00-\x00\x00\x00\xbb\xbb\x00\x002\x00\x00\x00\xe9\xbb\x00\x00+\x00\x00\x00\x1c\xbc\x00\x008\x00\x00\x00H\xbc\x00\x00\x0f\x00\x00\x00\x81\xbc\x00\x00\x1d\x00\x00\x00\x91\xbc\x00\x00G\x00\x00\x00\xaf\xbc\x00\x001\x00\x00\x00\xf7\xbc\x00\x00\x95\x00\x00\x00)\xbd\x00\x00N\x00\x00\x00\xbf\xbd\x00\x00\x10\x00\x00\x00\x0e\xbe\x00\x00\x1f\x00\x00\x00\x1f\xbe\x00\x007\x00\x00\x00?\xbe\x00\x00\x08\x00\x00\x00w\xbe\x00\x00\x0c\x00\x00\x00\x80\xbe\x00\x00\x13\x00\x00\x00\x8d\xbe\x00\x004\x00\x00\x00\xa1\xbe\x00\x00=\x00\x00\x00\xd6\xbe\x00\x00\r\x00\x00\x00\x14\xbf\x00\x00\\\x00\x00\x00"\xbf\x00\x00~\x00\x00\x00\x7f\xbf\x00\x00C\x00\x00\x00\xfe\xbf\x00\x000\x00\x00\x00B\xc0\x00\x00\x15\x00\x00\x00s\xc0\x00\x00\x1b\x00\x00\x00\x89\xc0\x00\x00\x1d\x00\x00\x00\xa5\xc0\x00\x000\x00\x00\x00\xc3\xc0\x00\x00\x06\x00\x00\x00\xf4\xc0\x00\x00\x11\x00\x00\x00\xfb\xc0\x00\x00\r\x00\x00\x00\r\xc1\x00\x00\x07\x00\x00\x00\x1b\xc1\x00\x001\x00\x00\x00#\xc1\x00\x00\x18\x00\x00\x00U\xc1\x00\x00(\x00\x00\x00n\xc1\x00\x00$\x00\x00\x00\x97\xc1\x00\x00&\x00\x00\x00\xbc\xc1\x00\x00\x11\x00\x00\x00\xe3\xc1\x00\x00`\x00\x00\x00\xf5\xc1\x00\x00\x10\x00\x00\x00V\xc2\x00\x00\x1c\x00\x00\x00g\xc2\x00\x00\x16\x00\x00\x00\x84\xc2\x00\x00\x12\x00\x00\x00\x9b\xc2\x00\x00\x15\x00\x00\x00\xae\xc2\x00\x00\x95\x00\x00\x00\xc4\xc2\x00\x00n\x00\x00\x00Z\xc3\x00\x00?\x00\x00\x00\xc9\xc3\x00\x002\x00\x00\x00\t\xc4\x00\x00@\x00\x00\x00<\xc4\x00\x00m\x00\x00\x00}\xc4\x00\x00\x0c\x00\x00\x00\xeb\xc4\x00\x00\x18\x00\x00\x00\xf8\xc4\x00\x00\x1d\x00\x00\x00\x11\xc5\x00\x00\x1c\x00\x00\x00/\xc5\x00\x00\x1c\x01\x00\x00L\xc5\x00\x00y\x00\x00\x00i\xc6\x00\x00\x88\x00\x00\x00\xe3\xc6\x00\x00\xc5\x00\x00\x00l\xc7\x00\x00]\x01\x00\x002\xc8\x00\x00M\x00\x00\x00\x90\xc9\x00\x00V\x01\x00\x00\xde\xc9\x00\x00%\x00\x00\x005\xcb\x00\x00\x06\x00\x00\x00[\xcb\x00\x00\x1f\x00\x00\x00b\xcb\x00\x00\x18\x00\x00\x00\x82\xcb\x00\x00\x0b\x00\x00\x00\x9b\xcb\x00\x00(\x00\x00\x00\xa7\xcb\x00\x00\x07\x00\x00\x00\xd0\xcb\x00\x00\x15\x00\x00\x00\xd8\xcb\x00\x00\x1e\x00\x00\x00\xee\xcb\x00\x00\t\x00\x00\x00\r\xcc\x00\x00\x89\x00\x00\x00\x17\xcc\x00\x00\x04\x00\x00\x00\xa1\xcc\x00\x00\t\x00\x00\x00\xa6\xcc\x00\x00=\x00\x00\x00\xb0\xcc\x00\x00\x1f\x00\x00\x00\xee\xcc\x00\x00<\x00\x00\x00\x0e\xcd\x00\x00~\x00\x00\x00K\xcd\x00\x00l\x00\x00\x00\xca\xcd\x00\x00\x1a\x00\x00\x007\xce\x00\x00\x1a\x00\x00\x00R\xce\x00\x00z\x00\x00\x00m\xce\x00\x00\x98\x00\x00\x00\xe8\xce\x00\x00-\x00\x00\x00\x81\xcf\x00\x00#\x00\x00\x00\xaf\xcf\x00\x00%\x00\x00\x00\xd3\xcf\x00\x00\x89\x00\x00\x00\xf9\xcf\x00\x00*\x00\x00\x00\x83\xd0\x00\x00)\x00\x00\x00\xae\xd0\x00\x00^\x00\x00\x00\xd8\xd0\x00\x00s\x00\x00\x007\xd1\x00\x00\x1f\x00\x00\x00\xab\xd1\x00\x00z\x00\x00\x00\xcb\xd1\x00\x005\x00\x00\x00F\xd2\x00\x00W\x00\x00\x00|\xd2\x00\x00\x0f\x00\x00\x00\xd4\xd2\x00\x00\x07\x00\x00\x00\xe4\xd2\x00\x00\x1f\x00\x00\x00\xec\xd2\x00\x00\x06\x00\x00\x00\x0c\xd3\x00\x008\x00\x00\x00\x13\xd3\x00\x00!\x00\x00\x00L\xd3\x00\x00,\x00\x00\x00n\xd3\x00\x00/\x00\x00\x00\x9b\xd3\x00\x00%\x00\x00\x00\xcb\xd3\x00\x00\r\x00\x00\x00\xf1\xd3\x00\x00\x0b\x00\x00\x00\xff\xd3\x00\x00\x1b\x00\x00\x00\x0b\xd4\x00\x00\x0e\x00\x00\x00\'\xd4\x00\x00\x12\x00\x00\x006\xd4\x00\x00\x12\x00\x00\x00I\xd4\x00\x00\n\x00\x00\x00\\\xd4\x00\x00m\x00\x00\x00g\xd4\x00\x00\x1d\x01\x00\x00\xd5\xd4\x00\x00[\x00\x00\x00\xf3\xd5\x00\x00a\x00\x00\x00O\xd6\x00\x00\x1b\x00\x00\x00\xb1\xd6\x00\x00!\x00\x00\x00\xcd\xd6\x00\x00;\x00\x00\x00\xef\xd6\x00\x000\x00\x00\x00+\xd7\x00\x00\xbc\x00\x00\x00\\\xd7\x00\x00:\x00\x00\x00\x19\xd8\x00\x00\x15\x00\x00\x00T\xd8\x00\x00i\x00\x00\x00j\xd8\x00\x00N\x00\x00\x00\xd4\xd8\x00\x00\x1c\x00\x00\x00#\xd9\x00\x007\x00\x00\x00@\xd9\x00\x00\x07\x00\x00\x00x\xd9\x00\x00\x19\x00\x00\x00\x80\xd9\x00\x00\x0c\x00\x00\x00\x9a\xd9\x00\x00\r\x00\x00\x00\xa7\xd9\x00\x00\'\x00\x00\x00\xb5\xd9\x00\x00,\x00\x00\x00\xdd\xd9\x00\x00q\x00\x00\x00\n\xda\x00\x00n\x00\x00\x00|\xda\x00\x001\x00\x00\x00\xeb\xda\x00\x006\x00\x00\x00\x1d\xdb\x00\x002\x00\x00\x00T\xdb\x00\x00\xf3\x00\x00\x00\x87\xdb\x00\x00\x07\x00\x00\x00{\xdc\x00\x00\n\x00\x00\x00\x83\xdc\x00\x00\x0e\x00\x00\x00\x8e\xdc\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">calibre</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://calibre.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00calibre\x00contains\x00mybook.epub\x00Project-Id-Version: es\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2008-04-07 16:11+IST\nPO-Revision-Date: 2007-11-16 09:21+0100\nLast-Translator: calibre\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\tBaen Datei erkannt. Analysiere erneut...\x00\tBook Designer Datei erkannt.\x00\tKonvertiere in BBeB...\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\tAnalysiere HTML...\x00\n%prog [options] ISBN\n\nUmschlagbild des Buches mit der angegebenen ISBN von LibraryThing.com abrufen\n\x00\n%prog [options] key\n\nRufe Metadaten der B\xc3\xbccher von isndb.com ab. Sie k\xc3\xb6nnen entweder die\nISBN oder den Titel und den Autor des Buches angeben. Wenn Sie Titel und Autor angeben,\nkann es sein, dass mehrere B\xc3\xbccher gefunden werden.\n\nkey steht f\xc3\xbcr den Konto-Schl\xc3\xbcssel, der nach der kostenfreien Registrierung bei isbndb.com erstellt werden kann.\n\n\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%%prog [options] ARG\n\n%%prog analysiert eine Online-Quelle von Artikeln, z.B. einen RSS oder ATOM Feed und \nruft die Artikelinhalte hierarchisch organisiert ab.\n\nARG kann eines der folgenden sein:\n\ndateiname - %%prog versucht ein Rezept aus der Datei zu laden\n\ninstalliertes Rezept - %%prog l\xc3\xa4dt ein installiertes Rezept und benutzt es, um den Feed abzurufen. Z.B. f\xc3\xbcr Newsweek or "The BBC" or "The New York Times"\n\nRezept als eine Reihung - %%prog l\xc3\xa4dt das Rezept direkt nach der angegebenen Reihung.\n\nVerf\xc3\xbcgbare installierte Rezepte:\n%s\n\x00%prog URL\n\nURL ist z.B. http://google.com\x00%prog [options] datei.lrs\nErstellt eine LRF Datei aus einer LRS Datei.\x00%prog [options] dateiname.lrf\n\n\nZeigt/ver\xc3\xa4ndert die Metadaten in einer LRF Datei.\n\n\x00%prog [options] dateiname.pdf\n\n\n%prog konvertiert dateiname.pdf in dateiname.lrf\x00%prog [options] dateiname.rtf\n\n\n%prog konvertiert dateiname.rtf in dateiname.lrf\x00%prog [options] dateiname.txt\n\n\n%prog konvertiert dateiname.txt in dateiname.lrf\x00%prog [options] dateiname.mobi\x00%prog dateiname.lrf\nKonvertiert eine LRF Datei in eine LRS (XML UTF-8 kodierte) Datei\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00Clave de &acceso;\x00Feed &anf\xc3\xbcgen\x00Ajoute mot-clef\x00&Autor(es):\x00Margen &Inferior:\x00Datenbank verdi&chten\x00&Desactivar detecci\xc3\xb3n de cap\xc3\xadtulos\x00&Feed Titel:\x00&Fuerza un salto de p\xc3\xa1gina delante de la marca:\x00&Formato del encabezado:\x00Margen &Izquierdo:\x00&Ubicaci\xc3\xb3n de la base de datos (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace:\x00\xc3\x84<ester Artikel:\x00Inserta un salto de &p\xc3\xa1gina delante de la marca:\x00&Contrase\xc3\xb1a:\x00&Preprocesamiento:\x00&Priorit\xc3\xa9 pour les travaux de conversion :\x00&Perfil:\x00&Editorial:\x00&Valoraci\xc3\xb3n:\x00Expresi\xc3\xb3n &Regular:\x00Rezept entfe&rnen\x00&Supprime des mots-clefs :\x00Margen &Derecho:\x00&Buscar:\x00&Series:\x00&Serif:\x00&Mostrar encabezado\x00&Affiche le mot de passe\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&T\xc3\xadtulo:\x00Margen &Superior:\x00&Usuario:\x00&Espaciado de palabras:\x00...\x00<b>Los cambios no se aplicaran hasta reiniciar.\x00<b>No se puede descargar la portada.</b><br/>\x00<b>No </b>se han encontrado coincidencias para "<i>%s</i>".\x00<br>Debe ser un directorio.\x00<font color="gray">Ayuda no disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hilfe gibt es online bei <a href="http://calibre.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">calibre.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">calibre</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Archivos HTML0 de Book Designer</li>\x00<li><b>pdftohtml</b> - Archivos HTML creados con el programa pdftohtml</li>\x00<ol><li><b>baen</b> - Libros de BAEN Publishers</li>\x00<p>Une base de donn\xc3\xa9es invalide existe d\xc3\xa9j\xc3\xa0 ici : %s, spprimez la avant d\'essayer de d\xc3\xa9placer la base de donn\xc3\xa9es existante.<br>Erreur : %s\x00<p>Des livres ayant le m\xc3\xaame titre existent d\xc3\xa9j\xc3\xa0 dans la base de donn\xc3\xa9es. Les ajouter quand m\xc3\xaame ?<ul>\x00<p>No se pueden guardar los libros porque no hay espacio en el dispositivo \x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Veuillez saisir votre nom d\'utilisateur et votre mot de passe de <b>LibraryThing.com</b>. <br/>Si vous n\'en avez pas, vous pouvez <a href=\'http://www.librarything.com\'>y cr\xc3\xa9er un compte </a> gratuitement !</p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Hubo un error leyendo el archivo: <br /><b>\x00<span style="color:red; font-weight:bold">Letzte Version: <a href="%s">%s</a></span>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Expresi\xc3\xb3n regular. Las marcas <a> que tengan href coincidentes, son ignoradas. Por defecto: %default\x00Mots-clefs\x00Mots-clefs disponibles\x00Trebajos activos\x00A\xc3\xb1a&dir las etiquetas: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00A\xc3\xb1adir directorio a la lista de directorios frecuentes\x00A\xc3\xb1adir el encabezado en todas las p\xc3\xa1ginas, poniendo t\xc3\xad\xc2\xadtulo y autor.\x00A\xc3\xb1adir un nuevo formato para este libro en la base de datos\x00A\xc3\xb1adir libros\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Mejorar la apariencia del archivo LRF generado, especificando el tama\xc3\xb1o de fuente y el espaciado entre palabras.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Ein Fehler trat w\xc3\xa4hrend der Bearbeitung einer Tabelle auf: %s. Tabellenformat wird ignoriert.\x00Irgendein\x00Jeder Link, der diesem Regul\xc3\xa4ren Ausdruck entspricht, wird ignoriert. Diese Option kann mehrmals angegeben werden, somit werden Links ignoriert, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden keine Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben sind, wird --filter-regexp zuerst angewendet.\x00Applique le mot-clef au livre en cours.\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00&Ordenar autores:\x00O&rd&en por autor:\x00Autor(es)\x00Autoren:\x00Formatos disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Atr\xc3\xa1s\x00Schlechte Tabelle:\n%s\x00Tama\xc3\xb1o de la &fuente base:\x00Grundverzeichnis, in das die URL gespeichert wird. Voreinstellung ist %default \x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\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\x00Konnte Link %s nicht zu TOC hinzuf\xc3\xbcgen\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\x00Lesen nicht m\xc3\xb6glich von: %s\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\x00Verdichte Datenbank. Das kann dauern...\x00Verdichte Datenbank...\x00Configuraci\xc3\xb3n\x00Configurar\x00Configurar el visor\x00Convertir %s a LRF\x00Convertir Ebooks\x00Konvertierung von LRS in LRS, hilfreich bei der Fehlersuche.\x00Convertir individualmente\x00Convertir a LRF\x00Zu LRS konvertieren\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\x00Konnte Bild nicht verarbeiten: %s\n%s\x00Konnte Umschlagbild nicht lesen: %s\x00Umschlagbild gespeichert unter\x00Creado por \x00Erstelle XML...\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\x00Ger\xc3\xa4tedatenbank ist besch\xc3\xa4digt\x00Lade CSS Stylesheets nicht herunter.\x00No s\xc3\xa9 para qu\xc3\xa9 sirve esto\x00Fortschrittsbalken nicht anzeigen\x00Doppelklick erm\xc3\xb6glicht <b>Bearbeitung</b><br><br>\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:\x00Fehlschlag bei der Analysierung von %s %s\x00Verarbeitung der OPF Datei schlug fehl\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Buscar\x00Buscar portada en el servidor\x00Buscar metadatos\x00Buscar metadatos en el servidor\x00Descargar noticias (RSS)\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Buscando metadatos para <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Afinar la detecci\xc3\xb3n de cap\xc3\xadtulos y secciones.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://calibre.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Fuerza un salto de p\xc3\xa1gina antes de un elemento con un atributo concreto. El formato de esta opci\xc3\xb3n es regexp_marca,nom_atribut,tegexp_valor_atribut. Por ejemplo, "h\\d,class,chapter", coincide con todas las marcas de encabezado que tienen el atributo class="chapter". Por defecto: %default\x00Fuerza un salto de p\xc3\xa1gina antes de las marcas cuyo nombre coincida con la expresi\xc3\xb3n regular.\x00Fuerza un salto de p\xc3\xa1gina delante del &atributo:\x00Art\x00Formato\x00Formatos\x00Siguiente\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00Directorios usados con frecuencia\x00Feeds der Index Seite erhalten\x00Encabezado\x00Ayuda con el \xc3\xadtem\x00Partici\xc3\xb3n de palabras\x00IS&BN:\x00Si html2lrf no encuentra saltos de p\xc3\xa1gina en el archivo html y no puede detectar los encabezados de los cap\xc3\xadtulos, inserta autom\xc3\xa1ticamente un salto de p\xc3\xa1gina delante de las marcas que cuyo nombre coincida con la expresi\xc3\xb3n regular. Por defecto: %default. Esta opci\xc3\xb3n se inhabilita estableciendo la regexp a "$".El prop\xc3\xb3sito es evitar p\xc3\xa1ginas muy largas, que relentizan al cambio de p\xc3\xa1gina en el archivo LRF. Esta opci\xc3\xb3n se ignora si la p\xc3\xa1gina actual tiene pocos elementos.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si se detecta un gr\xc3\xa1fico para la portada en el archivo de origen, utilizarla en lugar de la portada especificada.\x00Farben nicht bea&chten\x00Ignora las &tablas\x00Aumenta el tama\xc3\xb1o de la fuente en 2 * FONT_DELTA puntos y el espacio de l\xc3\xad\xc2\xadnea en FONT_DELTA puntos. FONT_DELTA puede ser una fracci\xc3\xb3n. Si es un valor negativo, el tama\xc3\xb1o de la fuente disminuye.\x00Inserta l\xc3\xadneas en &blanco entre p\xc3\xa1rrafos\x00Base de donn\xc3\xa9es invalide\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida.<br>Imposible escribir en \x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Trabajo\x00Auftrag durch Benutzer abgebrochen\x00Trabajos:\x00Visor LRF\x00LRS gespeichert in\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.\x00Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt werden. Voreinstellung %default\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:\x00Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. Voreinstellung ist %default s\x00Mindest-Zeileneinzug von Paragraphen (Zeileneinzug der ersten Zeile eines Paragraphen) in Punkt. Voreinstellung: %default\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\x00Keine Datei zur Konvertierung angegeben.\x00Kein Dateiname angegeben.\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\x00OEB eBook erstellt in\x00Nur Links, die diesem Regul\xc3\xa4ren Ausdruck entsprechen, werden verfolgt. Diese Option kann mehrmals angegeben werden, somit werden Links verfolgt, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden alle Links verfolgt.\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)\x00Ausgabe LRS Datei\x00Ausgabeverzeichnis. Voreinstellung ist akutelles Verzeichnis.\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\x00Analysieren 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.\x00Pfad zur Zieldatei\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\x00Gebe erstellte HTML auf stdout aus und beende das Programm.\x00Verarbeite %s\x00Perfil del dispositivo para el cual se genera el archivo LRF. Este perfil determina, entre otras cosas, la resoluci\xc3\xb3n y el tama\xc3\xb1o de la pantalla del dispositivo. Por defecto: %s Perfiles soportados:\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Original MOBI HTML gespeichert in\x00Sony Reader\n%s disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Eliminar directorio a la lista de directorios frecuentes\x00Suprimir libros\x00Feed aus dem Rezept entfernen\x00Elimina los formatos seleccionados para este libro de la base de datos.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Renderizar las tablas HTML como bloques de texto en lugar de las tablas actuales. Activar si el archivo HTML contiene tablas muy grandes o complejas.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Reinicializar b\xc3\xbasqueda r\xc3\xa1pida\x00Margen derecho de la p\xc3\xa1gina. Por defecto: %default px.\x00Laufzeit\x00S&ans-serif:\x00Guardar en el disco\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Busca libros por t\xc3\xadtulo o autor. <br><br>Los espacios entre palabras se sustituyen por AND.\x00Buscar libros por t\xc3\xadtulo, autor, editorial, etiquetas y comentaris<br><br>Los espacios entre parlabras se sustituyen por AND.\x00Seleccionar el libro que m\xc3\xa1s se aproxime al listado mostrado abajo\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Enviar al dispositivo\x00Enviar a la memoria interna\x00Envia a la targeta de memoria\x00Separa los p\xc3\xa1rrafos mediante l\xc3\xadneas en blanco.\x00Series\x00\xc3\x8dndice de serie.\x00Serien Index:\x00Serien:\x00Erreur Serveur. Veuillez essayer ult\xc3\xa9rieurement.\x00Insertar el ID del libro\x00Fijar valores de conversi\xc3\xb3n por defecto\x00Insertar la clave de orden por autor\x00Insertar la clave de orden por t\xc3\xadtulo\x00Insertar el autor\x00Insertar autor(es). Si indica m\xc3\xa1s de un autor, sep\xc3\xa1relos mediante comas. Por defecto: %default\x00Gebe Autoren ein\x00Insertar el nombre del libro\x00Insertar categor\xc3\xad\xc2\xada.\x00Gebe Kommentar ein\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.\x00Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche.\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.\x00Geben Sie die Zeichenkodierung der Ausgangsdatei an. Sollte die ausgegebene LRF Datei seltsame Zeichen enthalten, \xc3\xa4ndern Sie diese Einstellung. Eine gebr\xc3\xa4uchliche Kodierung von Dateien, die von Windows Computern stammen, ist cp-1252. Eine andere gebr\xc3\xa4uchliche Alternative ist utf-8. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Configuraci\xc3\xb3n de p\xc3\xa1gina del dispositivo: m\xc3\xa1rgenes y tama\xc3\xb1o de la pantalla\x00Especificar fuentes truetype para las familias serif, sans-serif y monoespaciadas. Las fuentes se insertan en el archivo LRF. Tener en cuenta que a\xc3\xb1adir fuentes personalizadas relentiza el cambio de p\xc3\xa1gina. Para especificar cada una de las familias se utiliza: "ruta a la carpeta de fuents, familia" ( --serif-family "%s, Times New Roman")\n\x00Starte Download von [%d Thread(s)]...\x00Estado\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Etique&tas:\x00Tabelle enth\xc3\xa4lt Zelle, die zu gro\xc3\x9f ist\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\x00Die ISBN des Buches, f\xc3\xbcr das Sie Metadaten abrufen m\xc3\xb6chten.\x00Der Autor des gesuchten Buches.\x00Categoria a la que pertenece el libro. Por ejemplo, Historia\x00Zeichenkodierung f\xc3\xbcr Webseiten, die zu laden versucht werden. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00H\xc3\xb6chstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus <a href> Tags zu. Voreinstellung ist %default\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\x00Der Herausgeber des gesuchten Buches.\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.\x00Der Titel des gesuchten Buches.\x00Hubo un error de comunicaci\xc3\xb3n con el dispositivo. Desconecte, vuelva a conectar el dispositivo y reinicie la aplicaci\xc3\xb3n.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: %default s\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...\x00Konnte Bild %s nicht verarbeiten. Fehler: %s\x00Konnte verschachteltes PNG %s nicht verarbeiten\x00Enl\xc3\xa8ve le mot-clef du livre en cours\x00No disponible\x00Desconocido\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Benutzung:\x00Benutzung: %prog [options] dateiname.epub\n \n \n%prog konvertiert dateiname.epub in dateiname.lrf\x00Benutzung: %prog [options] dateiname.html\n\n\n%prog konvertiert dateiname.html in dateiname.lrf. \n%prog folgt allen Hyperlinks in dateiname.html, die rekursiv auf \nlokale Dateien verweisen. Somit k\xc3\xb6nnen Sie es verwenden,\num einen ganzen Verzeichnisbaum von HTML Dateien zu konvertieren.\x00Benutzung: %prog [options] dateiname.lit\n\n\n%prog konvertiert dateiname.lit in dateiname.lrf\x00Benutzung: %prog [options] dateiname.mobi|prc\n\n\n%prog konvertiert dateiname.mobi in dateiname.lrf\x00Benutzung: %s dateiname.lit\x00Benutzung: pdf-meta dateiname.pdf\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.\x00Mit mehr W\xc3\xb6rtern fortfahren\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Mostrar\x00Spezielles Format ansehen\x00En espera...\x00Procesando...\x00Vorverarbeitetes HTML gespeichert unter\x00No tienes permiso de lectura en el archivo: \x00Sichern Sie die Website %s zuerst als HTML Datei und benutzen Sie dann html2lrf mit der gespeicherten HTML Datei.\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.\x00any2lrf [options] dateiname\n\nKonvertiert verschiedene eBook Formate in LRF Dateien. Unterst\xc3\xbctzte Formate:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC und PDF. any2lrf verarbeitet auch RAR oder\nZIP Archive, indem es nach einem eBook im Archiv sucht.\n\x00calibre\x00beinhaltet\x00dateiname.epub\x00'} \ No newline at end of file diff --git a/src/libprs500/translations/de.po b/src/calibre/translations/de.po similarity index 59% rename from src/libprs500/translations/de.po rename to src/calibre/translations/de.po index 7a1d21a34f..9714d2279e 100644 --- a/src/libprs500/translations/de.po +++ b/src/calibre/translations/de.po @@ -4,8 +4,8 @@ # msgid "" msgstr "" -"Project-Id-Version: libprs500 0.4.17\n" -"POT-Creation-Date: 2008-04-04 09:07+PDT\n" +"Project-Id-Version: calibre 0.4.17\n" +"POT-Creation-Date: 2008-04-07 16:11+IST\n" "PO-Revision-Date: 2008-04-04 17:29+0100\n" "Last-Translator: S. Dorscht <stdoonline@googlemail.com>\n" "Language-Team: de\n" @@ -14,19 +14,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:85 +#: /home/kovid/work/calibre/src/calibre/__init__.py:85 msgid "%sUsage%s: %s\n" msgstr "%sBenutzung%s: %s\n" -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:122 +#: /home/kovid/work/calibre/src/calibre/__init__.py:122 msgid "Created by " msgstr "Erstellt von " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:88 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:88 msgid "Set the title. Default: filename." msgstr "Geben Sie den Titel an. Voreinstellung: Dateiname." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:90 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:90 msgid "" "Set the author(s). Multiple authors should be set as a comma separated list. " "Default: %default" @@ -34,38 +34,38 @@ msgstr "" "Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt " "angegeben werden. Voreinstellung: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:91 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:630 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:91 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:630 msgid "Unknown" msgstr "Unbekannt" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:93 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:93 msgid "Set the comment." msgstr "Geben Sie eine Bemerkung an." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:95 msgid "Set the category" msgstr "Geben Sie eine Kategorie an." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:97 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:97 msgid "Sort key for the title" msgstr "Sortierung nach Titel" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:99 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:99 msgid "Sort key for the author" msgstr "Sortierung nach Autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:101 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:16 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:341 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:16 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:341 msgid "Publisher" msgstr "Herausgeber" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:103 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:103 msgid "Path to file containing image to be used as cover" msgstr "Pfad zur Datei des Umschlagbildes " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:105 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:105 msgid "" "If there is a cover graphic detected in the source file, use that instead of " "the specified cover." @@ -73,13 +73,13 @@ msgstr "" "Falls die Quelldatei ein Umschlagbild enthält, das Umschlagbild der " "Quelldatei benutzen, anstatt des angegebenen Umschlagbildes. " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:108 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:108 msgid "Output file name. Default is derived from input filename" msgstr "" "Ausgabedateiname. Die Voreinstellung leitet sich vom ursprünglichen " "Dateinamen ab." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:110 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:110 msgid "" "Render HTML tables as blocks of text instead of actual tables. This is " "neccessary if the HTML contains very large or complex tables." @@ -87,7 +87,7 @@ msgstr "" "HTML Tabellen als Textblöcke rendern und nicht als Tabellen. Dies ist " "notwendig, wenn die HTML Datei sehr große oder komplexe Tabellen enthält." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:113 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:113 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 " @@ -98,26 +98,26 @@ msgstr "" "delta Einstellung außer Gebrauch und nimmt den Vorrang ein. Um --font-delta " "zu benutzen, stellen Sie diesen Wert auf 0." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:115 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:115 msgid "Enable autorotation of images that are wider than the screen width." msgstr "" "Automatische Rotation von Bildern, die breiter als die Bildschirmbreite sind." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:118 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:118 msgid "Set the space between words in pts. Default is %default" msgstr "" "Wählen Sie den Abstand in Punkt zwischen einzelnen Wörtern. Die " "Voreinstellung ist %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:120 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:120 msgid "Separate paragraphs by blank lines." msgstr "Paragraphen durch Leerzeilen trennen." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:122 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:122 msgid "Add a header to all the pages with title and author." msgstr "Kopfzeile mit Titel und Autornamen für alle Seiten einfügen. " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:124 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:124 msgid "" "Set the format of the header. %a is replaced by the author and %t by the " "title. Default is %default" @@ -125,7 +125,7 @@ msgstr "" "Wählen Sie das Format der Kopfzeile. %a wird durch den Autor und %t durch " "den Titel ersetzt. Die Voreinstellung ist %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:126 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:126 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." @@ -133,7 +133,7 @@ msgstr "" "CSS überschreiben. Es kann ein Pfad zu einem CSS Stylesheet oder eine " "Zeichenfolge angegeben werden. Zeichenfolgen werden als CSS interpretiert. " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:128 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:128 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 " @@ -143,7 +143,7 @@ msgstr "" "in der die HTML Dateien zur LRF Datei hinzugefügt werden. Die OPF Datei muss " "sich im gleichen Verzeichnis wie die ursprüngliche HTML Datei befinden." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:130 msgid "" "Minimum paragraph indent (the indent of the first line of a paragraph) in " "pts. Default: %default" @@ -151,7 +151,7 @@ msgstr "" "Mindest-Zeileneinzug von Paragraphen (Zeileneinzug der ersten Zeile eines " "Paragraphen) in Punkt. Voreinstellung: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:132 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 " @@ -161,14 +161,14 @@ msgstr "" "vergrößern. FONT_DELTA kann ein Bruchteil sein. Falls FONT_DELTA negativ " "angegeben wird, wird die Schriftgröße verkleinert." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:137 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:137 msgid "" "Render all content as black on white instead of the colors specified by the " "HTML or CSS." msgstr "" "Inhalt schwarz-weiß rendern anstatt in den in HTML oder CSS angegeben Farben." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:144 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:144 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 " @@ -178,23 +178,23 @@ msgstr "" "unter anderem die Auflösung und die Bildschirmgröße des Zielgerätes fest. " "Voreinstellung: %s Unterstützte Profile:" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:150 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:150 msgid "Left margin of page. Default is %default px." msgstr "Linker Rand der Seite. Die Voreinstellung ist %default Pixel." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:152 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:152 msgid "Right margin of page. Default is %default px." msgstr "Rechter Rand der Seite. Die Voreinstellung ist %default Pixel." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:154 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:154 msgid "Top margin of page. Default is %default px." msgstr "Oberer Rand der Seite. Die Voreinstellung ist %default Pixel." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:156 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:156 msgid "Bottom margin of page. Default is %default px." msgstr "Unterer Rand der Seite. Die Voreinstellung ist %default Pixel." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:160 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:160 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 " @@ -204,7 +204,7 @@ msgstr "" "dass Verknüpfungen ignoriert werden. Ein negativer Wert bedeutet, dass alle " "<a> Elemente ignoriert werden. " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:164 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:164 #, fuzzy msgid "" "A regular expression. <a> tags whoose href matches will be ignored. Defaults " @@ -213,14 +213,14 @@ msgstr "" "Ein regulärer Ausdruck. <a> tags, deren Verknüpfungen ignoriert werden. " "Voreinstellung %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:169 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:169 msgid "" "Prevent the automatic insertion of page breaks before detected chapters." msgstr "" "Automatisches Einfügen von Seitenumbrüchen vor ermittelten Kapiteln " "verhindern." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:173 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:173 msgid "" "The regular expression used to detect chapter titles. It is searched for in " "heading tags (h1-h6). Defaults to %default" @@ -228,7 +228,7 @@ msgstr "" "Der reguläre Ausdruck zur Ermittlung von Kapitelüberschriften. Es wird nach " "mit (h1) - (h6) angegebenen Überschriften gesucht. Voreinstellung %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:176 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:176 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 " @@ -247,14 +247,14 @@ msgstr "" "Umblättern der in der LRF Datei verlangsamt. Diese Einstellung wird " "ignoriert, wenn die aktuelle Seite nur wenige Elemente enthält." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:186 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:186 msgid "" "Force a page break before tags whoose names match this regular expression." msgstr "" "Seitenumbruch erzwingen vor Elementen, deren Namen diesem regulären Ausdruck " "entsprechen. " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:188 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:188 msgid "" "Force a page break before an element having the specified attribute. The " "format for this option is tagname regexp,attribute name,attribute value " @@ -267,12 +267,12 @@ msgstr "" "\"chapter\" anzupassen, verwenden Sie \"h\\d,class,chapter\". Voreinstellung " "ist %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:191 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:191 msgid "Preprocess Baen HTML files to improve generated LRF." msgstr "" "Baen HTML Dateien vorbearbeiten, um die erstellte LRF Datei zu verbessern." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:193 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:193 msgid "" "You must add this option if processing files generated by pdftohtml, " "otherwise conversion will fail." @@ -280,11 +280,11 @@ msgstr "" "Sie müssen diese Auswahl treffen, wenn sie Dateien, die von pdftohtml " "erstellt wurden, verarbeiten wollen, sonst schlägt die Konvertierung fehl." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:195 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:195 msgid "Use this option on html0 files from Book Designer." msgstr "Benutzen Sie diese Einstellung bei HTML Dateien von Book Designer." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:198 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:198 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 " @@ -299,27 +299,27 @@ msgstr "" "angegeben: \"Pfad zum Verzeichnis der Schriften, Schriftartfamilie\" Zum " "Beispiel: --serif-family \"%s, Times New Roman\"\n" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:207 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:207 msgid "The serif family of fonts to embed" msgstr "Serife Schriftartfamilie einbetten" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:210 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:210 msgid "The sans-serif family of fonts to embed" msgstr "Serifenlose Schriftartfamilie einbetten" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:213 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:213 msgid "The monospace family of fonts to embed" msgstr "Nichtproportionale Schriftartfamilie einbetten" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:217 msgid "Be verbose while processing" msgstr "Mehr Wörter bei der weiteren Verarbeitung angeben." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:219 msgid "Convert to LRS" msgstr "Zu LRS konvertieren" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " "option if you are on a memory constrained machine." @@ -328,7 +328,7 @@ msgstr "" "Benutzen Sie diese Einstellung, wenn sie an einem Rechner mit geringem " "Hauptspeicher arbeiten." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:223 msgid "" "Specify the character encoding of the source file. If the output LRF file " "contains strange characters, try changing this option. A common encoding for " @@ -341,7 +341,7 @@ msgstr "" "cp-1252. Eine andere gebräuchliche Alternative ist utf-8. In der " "Voreinstellung wird versucht, die Kodierung zu erraten. " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:143 msgid "" "any2lrf [options] myfile\n" "\n" @@ -359,11 +359,11 @@ msgstr "" "oder\n" "ZIP Archive, indem es nach einem eBook im Archiv sucht.\n" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:158 msgid "No file to convert specified." msgstr "Keine Datei zur Konvertierung angegeben." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/epub/convert_from.py:17 msgid "" "Usage: %prog [options] mybook.epub\n" " \n" @@ -375,64 +375,77 @@ msgstr "" " \n" "%prog konvertiert dateiname.epub in dateiname.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:18 +msgid "" +"%prog [options] mybook.fb2\n" +"\n" +"\n" +"%prog converts mybook.fb2 to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:23 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "Gebe erstellte HTML auf stdout aus und beende das Programm." + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "Einstellungen für feeds2disk" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:22 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:22 msgid "Options to control the behavior of html2lrf" msgstr "Einstellungen für html2lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:44 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:44 msgid "Fetching of recipe failed: " msgstr "Abruf des Rezepts misslungen:" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:302 msgid "\tBook Designer file detected." msgstr "\tBook Designer Datei erkannt." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:304 msgid "\tParsing HTML..." msgstr "\tAnalysiere HTML..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:326 msgid "\tBaen file detected. Re-parsing..." msgstr "\tBaen Datei erkannt. Analysiere erneut..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:341 msgid "Written preprocessed HTML to " msgstr "Vorverarbeitetes HTML gespeichert unter" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:352 msgid "Processing %s" msgstr "Verarbeite %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:366 msgid "\tConverting to BBeB..." msgstr "\tKonvertiere in BBeB..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:504 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:511 msgid "Could not parse file: %s" msgstr "Konnte Datei nicht analysieren: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:523 msgid "Failed to parse link %s %s" msgstr "Fehlschlag bei der Analysierung von %s %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:566 msgid "Cannot add link %s to TOC" msgstr "Konnte Link %s nicht zu TOC hinzufügen" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:908 msgid "Unable to process image %s. Error: %s" msgstr "Konnte Bild %s nicht verarbeiten. Fehler: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:946 msgid "Unable to process interlaced PNG %s" msgstr "Konnte verschachteltes PNG %s nicht verarbeiten" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:961 msgid "" "Could not process image: %s\n" "%s" @@ -440,13 +453,13 @@ msgstr "" "Konnte Bild nicht verarbeiten: %s\n" "%s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1651 msgid "An error occurred while processing a table: %s. Ignoring table markup." msgstr "" "Ein Fehler trat während der Bearbeitung einer Tabelle auf: %s. " "Tabellenformat wird ignoriert." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1653 msgid "" "Bad table:\n" "%s" @@ -454,11 +467,11 @@ msgstr "" "Schlechte Tabelle:\n" "%s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1675 msgid "Table has cell that is too large" msgstr "Tabelle enthält Zelle, die zu groß ist" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1703 msgid "" "You have to save the website %s as an html file first and then run html2lrf " "on it." @@ -466,19 +479,19 @@ msgstr "" "Sichern Sie die Website %s zuerst als HTML Datei und benutzen Sie dann " "html2lrf mit der gespeicherten HTML Datei." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1741 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1743 msgid "Could not read cover image: %s" msgstr "Konnte Umschlagbild nicht lesen: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1744 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1746 msgid "Cannot read from: %s" msgstr "Lesen nicht möglich von: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1873 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1875 msgid "Failed to process opf file" msgstr "Verarbeitung der OPF Datei schlug fehl" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1879 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1881 msgid "" "Usage: %prog [options] mybook.html\n" "\n" @@ -496,7 +509,7 @@ msgstr "" "lokale Dateien verweisen. Somit können Sie es verwenden,\n" "um einen ganzen Verzeichnisbaum von HTML Dateien zu konvertieren." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lit/convert_from.py:19 msgid "" "Usage: %prog [options] mybook.lit\n" "\n" @@ -508,7 +521,7 @@ msgstr "" "\n" "%prog konvertiert dateiname.lit in dateiname.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:254 msgid "" "%prog [options] file.lrs\n" "Compile an LRS file into an LRF file." @@ -516,20 +529,20 @@ msgstr "" "%prog [options] datei.lrs\n" "Erstellt eine LRF Datei aus einer LRS Datei." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:255 msgid "Path to output file" msgstr "Pfad zur Zieldatei" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:113 msgid "Verbose processing" msgstr "Mit mehr Wörtern fortfahren" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:259 msgid "Convert LRS to LRS, useful for debugging." msgstr "Konvertierung von LRS in LRS, hilfreich bei der Fehlersuche." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:541 msgid "" "%prog [options] mybook.lrf\n" "\n" @@ -543,53 +556,53 @@ msgstr "" "Zeigt/verändert die Metadaten in einer LRF Datei.\n" "\n" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:548 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:18 msgid "Set the book title" msgstr "Geben Sie den Buchtitel an" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:550 msgid "Set sort key for the title" msgstr "Sortierung nach Titel" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:552 msgid "Set the author" msgstr "Geben Sie den Autor an" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:554 msgid "Set sort key for the author" msgstr "Sortierung nach Autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:556 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "Die Kategorie dieses Buches ... (Z. B.: Geschichte)" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" msgstr "" "Pfad zu einer Grafik, die als Thumbnail für diese Datei verwendet werden " "soll " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:562 msgid "Path to a txt file containing the comment to be stored in the lrf file." msgstr "" "Pfad zu einer Text Datei, deren Inhalt als Bemerkung in der LRF Datei " "gespeichert wird" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "Thumbnail von LRF Datei extrahieren" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "Geben Sie die Buch ID an" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "Was weiß ich, für was das ist" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/mobi/convert_from.py:43 msgid "" "Usage: %prog [options] mybook.mobi|prc\n" "\n" @@ -601,7 +614,7 @@ msgstr "" "\n" "%prog konvertiert dateiname.mobi in dateiname.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:132 msgid "" "%prog book.lrf\n" "Convert an LRF file into an LRS (XML UTF-8 encoded) file" @@ -609,23 +622,23 @@ msgstr "" "%prog dateiname.lrf\n" "Konvertiert eine LRF Datei in eine LRS (XML UTF-8 kodierte) Datei" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:133 msgid "Output LRS file" msgstr "Ausgabe LRS Datei" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:151 msgid "Parsing LRF..." msgstr "Analysieren LRF..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:154 msgid "Creating XML..." msgstr "Erstelle XML..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:156 msgid "LRS written to " msgstr "LRS gespeichert in" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/convert_from.py:47 msgid "" "%prog [options] mybook.pdf\n" "\n" @@ -637,7 +650,7 @@ msgstr "" "\n" "%prog konvertiert dateiname.pdf in dateiname.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:402 msgid "" "Path to output directory in which to create the HTML file. Defaults to " "current directory." @@ -645,15 +658,15 @@ msgstr "" "Pfad zum Ausgabeverzeichnis, in dem die HTML Datei erstellt werden soll. " "Voreinstellung auf aktuelles Verzeichnis." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:404 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:404 msgid "Be more verbose." msgstr "Mehr Wörter benutzen!" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:416 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:416 msgid "You must specify a single PDF file." msgstr "Es muss eine einzelne PDF Datei angegeben werden." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/rtf/convert_from.py:20 msgid "" "%prog [options] mybook.rtf\n" "\n" @@ -665,7 +678,7 @@ msgstr "" "\n" "%prog konvertiert dateiname.rtf in dateiname.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:17 msgid "" "%prog [options] mybook.txt\n" "\n" @@ -677,27 +690,23 @@ msgstr "" "\n" "%prog konvertiert dateiname.txt in dateiname.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 -msgid "Print generated HTML to stdout and quit." -msgstr "Gebe erstellte HTML auf stdout aus und beende das Programm." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:20 msgid "Set the authors" msgstr "Gebe Autoren ein" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:24 msgid "Set the comment" msgstr "Gebe Kommentar ein" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 msgid "Usage:" msgstr "Benutzung:" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 msgid "mybook.epub" msgstr "dateiname.epub" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:95 msgid "" "\n" "%prog [options] key\n" @@ -722,23 +731,23 @@ msgstr "" "bei isbndb.com erstellt werden kann.\n" "\n" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:106 msgid "The ISBN ID of the book you want metadata for." msgstr "Die ISBN des Buches, für das Sie Metadaten abrufen möchten." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:108 msgid "The author whoose book to search for." msgstr "Der Autor des gesuchten Buches." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:110 msgid "The title of the book to search for." msgstr "Der Titel des gesuchten Buches." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:112 msgid "The publisher of the book to search for." msgstr "Der Herausgeber des gesuchten Buches." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:46 msgid "" "Could not fetch cover as server is experiencing high load. Please try again " "later." @@ -746,15 +755,15 @@ msgstr "" "Konnte aufgrund zu hoher Serverlast kein Umschlagbild abrufen. Bitte " "versuchen sie es später wieder." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:47 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:47 msgid " not found." msgstr " nicht gefunden." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:50 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:50 msgid "Server error. Try again later." msgstr "Server-Fehler. Bitte versuchen Sie es später wieder." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:59 msgid "" "\n" "%prog [options] ISBN\n" @@ -767,127 +776,127 @@ msgstr "" "Umschlagbild des Buches mit der angegebenen ISBN von LibraryThing.com " "abrufen\n" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:746 msgid "Usage: %s file.lit" msgstr "Benutzung: %s dateiname.lit" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:753 msgid "Cover saved to" msgstr "Umschlagbild gespeichert unter" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:39 msgid "Usage: pdf-meta file.pdf" msgstr "Benutzung: pdf-meta dateiname.pdf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:40 msgid "No filename specified." msgstr "Kein Dateiname angegeben." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:297 msgid "%prog [options] myebook.mobi" msgstr "%prog [options] dateiname.mobi" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:299 msgid "Output directory. Defaults to current directory." msgstr "Ausgabeverzeichnis. Voreinstellung ist akutelles Verzeichnis." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:318 msgid "Raw MOBI HTML saved in" msgstr "Original MOBI HTML gespeichert in" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:320 msgid "OEB ebook created in" msgstr "OEB eBook erstellt in" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Format wählen" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:62 msgid "TextLabel" msgstr "TextLabel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 msgid "<br>Must be a directory." msgstr "<br>Muss ein Verzeichnis sein." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 msgid "Invalid database location " msgstr "Ortsangabe der Datenbank ungültig" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 msgid "Invalid database location" msgstr "Ortsangabe der Datenbank ungültig" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 msgid "Invalid database location.<br>Cannot write to " msgstr "Ortsangabe der Datenbank ungültig.<br>Speichern nicht möglich" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 msgid "Compacting database. This may take a while." msgstr "Verdichte Datenbank. Das kann dauern..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 msgid "Compacting..." msgstr "Verdichte Datenbank..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:216 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:279 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:216 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:279 msgid "Configuration" msgstr "Konfiguration" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:220 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:220 msgid "Basic" msgstr "Einfach" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:224 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:224 msgid "Advanced" msgstr "Erweitert" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:226 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:226 msgid "&Location of books database (library1.db)" msgstr "Speicherort der Bücherdatenbank (&library1.db)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:227 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:227 msgid "Browse for the new database location" msgstr "Zu einem neuen Ort der Datenbank wechseln" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:238 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:610 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:320 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:329 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:331 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:335 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:144 -#: /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:235 -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:188 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:189 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:190 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:272 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:278 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:280 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:610 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:320 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:329 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:331 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:335 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:153 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:185 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:186 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:187 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:188 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:189 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:190 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:272 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:278 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:280 msgid "..." msgstr "..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:229 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:229 msgid "Use &Roman numerals for series number" msgstr "&Römische Ziffern für Serien Nummerierung verwenden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:230 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:230 msgid "Default network &timeout:" msgstr "Voreinstellung für Zei&tüberschreitung bei Netzwerkverbindungen:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:231 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:231 msgid "" "Set the default timeout for network fetches (i.e. anytime we go out to the " "internet to get information)" @@ -895,67 +904,67 @@ msgstr "" "Voreinstellung der Zeitüberschreitung für Netzwerkabrufe festsetzen (Gilt " "immer dann, wenn aus dem Internet Informationen abgerufen werden sollen) " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:232 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:232 msgid " seconds" msgstr " Sekunden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:233 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:233 msgid "&Priority for conversion jobs:" msgstr "&Priorität der Konvertierungsaufträge:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:234 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:234 msgid "Frequently used directories" msgstr "Häufig benutzte Verzeichnisse" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:235 msgid "Add a directory to the frequently used directories list" msgstr "" "Ein Verzeichnis zur Liste der häufig genutzten Verzeichnisse hinzufügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:237 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:237 msgid "Remove a directory from the frequently used directories list" msgstr "" "Ein Verzeichnis von der Liste der häufig genutzten Verzeichnisse entfernen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:239 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:239 msgid "Select visible &columns in library view" msgstr "Si&chtbare Spalten in Bibliothek-Ansicht wählen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:240 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:240 msgid "Free unused diskspace from the database" msgstr "Freier unbenutzter Festplattenspeicher der Datenbank" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:241 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:241 msgid "&Compact database" msgstr "Datenbank verdi&chten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:242 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:242 msgid "&Metadata from file name" msgstr "&Meta-Daten aus dem Dateinamen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/conversion_error_ui.py:37 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/conversion_error_ui.py:37 msgid "ERROR" msgstr "FEHLER" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:101 msgid "Cannot connect" msgstr "Verbindung nicht möglich" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:102 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:102 msgid "You must specify a valid access key for isbndb.com" msgstr "" "Sie müssen einen gültigen Zugangsschlüssel (access key) für isbndb.com " "angeben" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:89 msgid "Fetch metadata" msgstr "Meta-Daten abrufen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:90 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:90 msgid "Fetching metadata for <b>%1</b>" msgstr "Meta-Daten abrufen für <b>%1</b>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:91 +#: /home/kovid/work/calibre/src/calibre/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." @@ -963,84 +972,84 @@ msgstr "" "Kostenloses Konto anmelden bei <a href=\"http://www.isbndb.com\">ISBNdb.com</" "a> um einen Zugriffsschlüssel zu erhalten." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:92 msgid "&Access Key;" msgstr "&Zugriffsschlüssel:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:93 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:93 msgid "Fetch" msgstr "Abrufen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:94 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:94 msgid "Matches" msgstr "Treffer" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:95 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:95 msgid "Select the book that most closely matches your copy from the list below" msgstr "" "Wählen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe " "entspricht" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/job_view_ui.py:30 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/job_view_ui.py:30 msgid "Details of job" msgstr "Details des Auftrags" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:39 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:39 msgid "Active Jobs" msgstr "Aktive Aufträge" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:40 msgid "&Stop selected job" msgstr "Ausgewählten Auftrag &stoppen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:81 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:81 msgid "No available formats" msgstr "Keine verfügbaren Formate" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:82 msgid "Cannot convert %s as this book has no supported formats" msgstr "" "Kann %s nicht konvertieren, da dieses Buch nicht den bekannten Formaten " "entspricht" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:86 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:86 msgid "Choose the format to convert into LRF" msgstr "Wählen Sie das Format, das zu LRF konvertiert werden soll" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:94 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:94 msgid "Convert %s to LRF" msgstr "Konvertiere %s in LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:97 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:97 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:149 msgid "Set conversion defaults" msgstr "Voreinstellungen zur Konvertierung wählen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:163 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:163 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:43 msgid "Cannot read" msgstr "Lesen nicht möglich" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:164 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:44 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:164 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:44 msgid "You do not have permission to read the file: " msgstr "Sie haben nicht die nötigen Rechte, um diese Datei zu lesen:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:172 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:52 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:172 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:52 msgid "Error reading file" msgstr "Fehler beim Lesen der Datei" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:173 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:173 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:53 msgid "<p>There was an error reading from file: <br /><b>" msgstr "<p>Es trat ein Fehler beim Lesen dieser Datei auf: <br /><b>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:179 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:179 msgid " is not a valid picture" msgstr " ist kein gültiges Bild" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:245 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:245 msgid "" "Preprocess the file before converting to LRF. This is useful if you know " "that the file is from a specific source. Known sources:" @@ -1048,11 +1057,11 @@ msgstr "" "Datei vorbearbeiten bevor sie zu LRF konvertiert wird. Das ist hilfreich, " "wenn Sie wissen, dass die Datei von einer der folgenden Bezugsquellen stammt:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:246 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:246 msgid "<ol><li><b>baen</b> - Books from BAEN Publishers</li>" msgstr "<ol><li><b>baen</b> - Bücher von BAEN Publishers</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:247 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:247 msgid "" "<li><b>pdftohtml</b> - HTML files that are the output of the program " "pdftohtml</li>" @@ -1060,11 +1069,11 @@ msgstr "" "<li><b>pdftohtml</b> - HTML Dateien, die mit dem Programm pdftohtml erstellt " "wurden</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:248 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:248 msgid "<li><b>book-designer</b> - HTML0 files from Book Designer</li>" msgstr "<li><b>book-designer</b> - HTML Dateien von Book Designer</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 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." @@ -1073,12 +1082,12 @@ msgstr "" "Daten werden sowohl in der Datenbank als auch in der erstellten LRF Datei " "aktualisiert." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:592 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:592 msgid "Metadata" msgstr "Meta-Daten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 msgid "" "Adjust the look of the generated LRF file by specifying things like font " "sizes and the spacing between words." @@ -1086,12 +1095,12 @@ msgstr "" "Aussehen der erstellten LRF Datei durch die Angabe von Schriftgrößen und " "Wortabständen angleichen." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:596 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:596 msgid "Look & Feel" msgstr "Look & Feel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 msgid "" "Specify the page settings like margins and the screen size of the target " "device." @@ -1099,79 +1108,79 @@ msgstr "" "Seiteneinstellungen wie Ränder und die Bildschirmgröße des Zielgeräts " "angeben." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:600 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:600 msgid "Page Setup" msgstr "Seiteneinrichtung" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 msgid "Fine tune the detection of chapter and section headings." msgstr "Feineinstellung der Erkennung von Kapitel- und Absatzüberschriften." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:604 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:604 msgid "Chapter Detection" msgstr "Ermittlung der Kapitel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:292 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:292 msgid "<font color=\"gray\">No help available</font>" msgstr "<font color=\"gray\">Keine Hilfe verfügbar</font>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:396 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:396 msgid "Bulk convert ebooks to LRF" msgstr "eBooks auf einmal zu LRF konvertieren" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:587 msgid "Convert to LRF" msgstr "Zu LRF konvertieren" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:588 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:588 msgid "Category" msgstr "Kategorie" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:606 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:606 msgid "Options" msgstr "Auswahlmöglichkeiten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:607 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:332 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:607 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:332 msgid "Book Cover" msgstr "Umschlagbild" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:608 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:333 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:608 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:333 msgid "Change &cover image:" msgstr "&Umschlagbild ändern:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:609 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:334 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:609 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:334 msgid "Browse for an image to use as the cover of this book." msgstr "Nach Umschlagbild durchsuchen..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:611 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:611 msgid "Use cover from &source file" msgstr "Um&schlagbild der Quelldatei verwenden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:612 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:300 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:612 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:300 msgid "&Title: " msgstr "&Titel:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:613 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:301 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:613 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:301 msgid "Change the title of this book" msgstr "Titel dieses Buches ändern" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:614 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:129 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:302 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:614 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:129 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:302 msgid "&Author(s): " msgstr "&Autor:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:615 -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:615 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:617 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:303 msgid "" "Change the author(s) of this book. Multiple authors should be separated by a " "comma" @@ -1179,30 +1188,30 @@ msgstr "" "Autor dieses Buches ändern. Mehrere Autoren sollten durch Kommata getrennt " "werden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:616 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:616 msgid "Author So&rt:" msgstr "So&rtierung nach Autor:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:618 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:137 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:618 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:137 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:310 msgid "&Publisher: " msgstr "&Herausgeber:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:619 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:138 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:311 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:619 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:138 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:311 msgid "Change the publisher of this book" msgstr "Herausgeber dieses Buches ändern" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:620 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:620 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:312 msgid "Ta&gs: " msgstr "&Etiketten:" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:621 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:140 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1211,173 +1220,173 @@ msgstr "" "Büchern. <br><br>Sie können für Etiketten durch Kommata getrennte Wörter " "oder Sätze verwenden." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:622 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:143 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:622 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:316 msgid "&Series:" msgstr "&Serien:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:623 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:624 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:144 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:145 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:317 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:318 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:623 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:624 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:317 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:318 msgid "List of known series. You can add new series." msgstr "Liste der bekannten Serien. Sie können neue Serien hinzufügen." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:625 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:626 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:321 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:322 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:625 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:321 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:322 msgid "Series index." msgstr "Index der Serien." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:627 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:323 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:627 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:323 msgid "Book " msgstr "Buch" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:628 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:325 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:223 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:325 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:223 msgid "Comments" msgstr "Bemerkung" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:629 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:629 msgid "Base &font size:" msgstr "Ausgangsschrift&größe:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:630 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:637 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:639 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:630 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:637 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:639 msgid " pts" msgstr " Punkt" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:631 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:631 msgid "Embedded Fonts" msgstr "Eingebundene Schriften" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:632 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:632 msgid "&Serif:" msgstr "&Serif:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:633 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:633 msgid "S&ans-serif:" msgstr "S&ans-serif:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:634 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:634 msgid "&Monospace:" msgstr "&Monospace:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:635 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:635 msgid "Source en&coding:" msgstr "En&codierung der Quelldatei:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:636 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:636 msgid "Minimum &indent:" msgstr "E&inrücken mindestens:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:638 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:638 msgid "&Word spacing:" msgstr "&Wortabstand:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:640 msgid "Enable auto &rotation of images" msgstr "Automatische &Rotation von Bildern einschalten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:641 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:641 msgid "Insert &blank lines between paragraphs" msgstr "&Leerzeilen zwischen Paragraphen einfügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:642 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:642 msgid "Ignore &tables" msgstr "&Tabellen ignorieren" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:643 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:643 msgid "Ignore &colors" msgstr "Farben nicht bea&chten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:644 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:644 msgid "&Preprocess:" msgstr "&Vorbearbeiten:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:645 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:645 msgid "Header" msgstr "Kopfzeile" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:646 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:646 msgid "&Show header" msgstr "Kopfzeile an&zeigen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:647 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:647 msgid "&Header format:" msgstr "&Kopfzeilenformat:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:648 msgid "Override<br>CSS" msgstr "CSS<br>überschreiben" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:649 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:649 msgid "&Profile:" msgstr "&Profil:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:650 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:650 msgid "&Left Margin:" msgstr "&Linker Rand:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:651 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:653 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:655 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:657 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:651 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:653 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:655 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:657 msgid " px" msgstr " Pixel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:652 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:652 msgid "&Right Margin:" msgstr "&Rechter Rand:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:654 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:654 msgid "&Top Margin:" msgstr "&Oberer Rand:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:656 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:656 msgid "&Bottom Margin:" msgstr "&Unterer Rand:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:658 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:658 msgid "Title based detection" msgstr "Auf Titel basierende Ermittlung" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:659 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:659 msgid "&Disable chapter detection" msgstr "Kapitel Ermittlung &deaktivieren" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:660 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:660 msgid "&Regular expression:" msgstr "&Regulärer Ausdruck:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:661 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:661 msgid "Tag based detection" msgstr "Auf Etiketten basierende Ermittlung" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:662 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:662 msgid "&Page break before tag:" msgstr "&Seitenumbruch vor Element:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:663 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:663 msgid "&Force page break before tag:" msgstr "Seitenumbruch vor Element &erzwingen:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:664 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:664 msgid "Force page break before &attribute:" msgstr "Seitenumbruch vor &Attribut erzwingen:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:665 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:665 msgid "Help on item" msgstr "Hilfe für das jeweilige Objekt" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:666 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:666 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1397,22 +1406,22 @@ msgstr "" "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-" "family:'Sans Serif'; font-size:9pt;\"></p></body></html>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:127 msgid "Edit Meta information" msgstr "Meta-Informationen bearbeiten" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:128 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:299 msgid "Meta information" msgstr "Meta-Informationen" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:304 msgid "Author S&ort: " msgstr "S&ortierung nach Autor:" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:132 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1420,37 +1429,37 @@ msgstr "" "Geben Sie an, wie der Autor dieses Buches sortiert werden soll. \"Charles " "Dickens\" zum Beispiel als \"Dickens, Charles\"." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:133 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:306 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:306 msgid "&Rating:" msgstr "&Bewertung:" -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:308 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:135 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:307 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:308 msgid "Rating of this book. 0-5 stars" msgstr "Bewertung dieses Buches: 0-5 Sterne" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:136 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:309 msgid " stars" msgstr " Sterne" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:139 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:139 msgid "Add Ta&gs: " msgstr "&Etiketten hinzufügen: " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:141 msgid "&Remove tags:" msgstr "Etiketten entfe&rnen:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:142 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:142 msgid "Comma separated list of tags to remove from the books. " msgstr "" "Durch getrennte Liste der Etiketten, die von den Büchern entfernt werden." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:224 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:224 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> " @@ -1460,130 +1469,130 @@ msgstr "" "b> an. <br/>Insofern Sie dies nicht besitzen, können Sie sich kostenlos <a " "href='http://www.librarything.com'>anmelden</a>! </p>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:254 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 msgid "<b>Could not fetch cover.</b><br/>" msgstr "<b>Konnte kein Umschlagbild abrufen.</b><br/>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:254 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 msgid "Could not fetch cover" msgstr "Konnte kein Umschlagbild abrufen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 msgid "Cannot fetch cover" msgstr "Kann kein Umschlagbild abrufen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 msgid "You must specify the ISBN identifier for this book." msgstr "Sie müssen die ISBN für dieses Buch angeben." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:298 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:298 msgid "Edit Meta Information" msgstr "Meta-Informationen bearbeiten" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:314 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:315 msgid "Open Tag Editor" msgstr "Etiketten-Editor öffnen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:319 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:319 msgid "Remove unused series (Series that have no books)" msgstr "Unbenutzte Serien entfernen (Serien ohne Bücher)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:324 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:324 msgid "IS&BN:" msgstr "IS&BN:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:326 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:326 msgid "Fetch metadata from server" msgstr "Meta-Daten vom Server abrufen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:327 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:327 msgid "Available Formats" msgstr "Verfügbare Formate" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:328 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:328 msgid "Add a new format for this book to the database" msgstr "Ein neues Format für dieses Buch zur Datenbank hinzufügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:330 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:330 msgid "Remove the selected formats for this book from the database." msgstr "Markierte Formate dieses Buches aus der Datenbank löschen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:336 msgid "Fetch cover image from server" msgstr "Umschlagbild vom Server abrufen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:337 msgid "" "Change the username and/or password for your account at LibraryThing.com" msgstr "" "Benutzername und/oder Passwort Ihres Kontos bei LibraryThing.com ändern" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:338 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:338 msgid "Change password" msgstr "Passwort ändern" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:61 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:61 msgid "Password needed" msgstr "Passwort erforderlich" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:63 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:63 msgid "&Username:" msgstr "Ben&utzername:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:64 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:64 msgid "&Password:" msgstr "&Passwort:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:65 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:65 msgid "&Show password" msgstr "Pa&sswort anzeigen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:14 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:336 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:700 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:14 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:700 msgid "Title" msgstr "Titel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:15 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:15 msgid "Author" msgstr "Autor" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:17 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:17 msgid "Tag" msgstr "Etikett" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:18 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:18 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:343 msgid "Series" msgstr "Serie" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:19 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:634 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:19 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:634 msgid "Format" msgstr "Format" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:20 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:20 msgid "Any" msgstr "Irgendein" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:40 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:110 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:110 msgid "Form" msgstr "Art" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:41 msgid "contains" msgstr "beinhaltet" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:42 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:42 msgid "The text to search for. It is interpreted as a regular expression." msgstr "" "Der Text, nach dem gesucht werden soll. Dies wird als eine Reguläre " "Expression interpretiert." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:43 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1591,43 +1600,43 @@ msgstr "" "<p>Diesen Treffer ausblenden. Das heißt, es werden nur Ergebnisse angezeigt, " "die <b>nicht</b> dieser Suchanfrage entsprechen. " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:44 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:44 msgid "Negate" msgstr "Ausblenden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:80 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:80 msgid "Advanced Search" msgstr "Erweiterte Suche" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:81 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:81 msgid "Match a&ll of the following criteria" msgstr "Übereinstimmung mit a&llen der folgenden Kriterien" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:82 msgid "Match a&ny of the following criteria" msgstr "Übereinstimmung mit irge&ndeinem der folgenden Kriterien" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:83 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:83 msgid "Search criteria" msgstr "Suchkriterien" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:84 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:84 msgid "More" msgstr "Mehr" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:85 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:85 msgid "Fewer" msgstr "Weniger" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:141 msgid "Tag Editor" msgstr "Etiketten Editor" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:142 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:142 msgid "A&vailable tags" msgstr "&Verfügbare Etiketten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1635,23 +1644,23 @@ msgstr "" "Etikett aus der Datenbank löschen. Entfernt das Etikett von allen Büchern " "und löscht es dann aus der Datenbank." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:145 msgid "Apply tag to current book" msgstr "Etikett dem aktuellen Buch zuweisen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:147 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:147 msgid "A&pplied tags" msgstr "Zuge&wiesene Etiketten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:148 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:148 msgid "Unapply (remove) tag from current book" msgstr "Etikett vom aktuellen Buch entfernen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:150 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:150 msgid "&Add tag:" msgstr "Etikett &anfügen:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:151 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1659,83 +1668,83 @@ msgstr "" "Ist das gewünschte Etikett nicht in der Liste, kann es hier hinzugefügt " "werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:152 msgid "Add tag to available tags and apply it to current book" msgstr "" "Etikett zu den verfügbaren Etiketten hinzufügen und dem aktuellen Buch " "zuweisen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:48 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:58 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:48 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:58 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:222 msgid "Switch to Advanced mode" msgstr "In erweiterten Modus umschalten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:53 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:61 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:61 msgid "Switch to Basic mode" msgstr "Zum Basis Modus wechseln" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:71 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:71 msgid "Feed must have a title" msgstr "Feed benötigt einen Titel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:72 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:72 msgid "The feed must have a title" msgstr "Feed benötigt einen Titel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:76 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:76 msgid "Feed must have a URL" msgstr "Feed benötigt eine URL" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:77 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:77 msgid "The feed %s must have a URL" msgstr "Feed %s benötigt eine URL" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:82 msgid "Already exists" msgstr "Gibts hier schon" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:83 msgid "This feed has already been added to the recipe" msgstr "Dieser Feed wurde schon zu diesem Rezept hinzugefügt" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:133 msgid "Invalid input" msgstr "Ungültige Eingabe" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:125 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:134 msgid "<p>Could not create recipe. Error:<br>%s" msgstr "<p>Konnte Rezept nicht erstellen. Fehler:<br>%s" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:140 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:140 msgid "Replace recipe?" msgstr "Rezept ersetzen?" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:141 msgid "A custom recipe named %s already exists. Do you want to replace it?" msgstr "" "Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:218 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:218 msgid "Add custom news source" msgstr "Eigene Nachrichtenquelle hinzufügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:219 msgid "Available user recipes" msgstr "Verfügbare Benutzer-Rezepte" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:220 msgid "Add/Update &recipe" msgstr "&Rezept hinzufügen/aktualisieren " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:221 msgid "&Remove recipe" msgstr "Rezept entfe&rnen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:223 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1760,69 +1769,69 @@ msgstr "" "Konfiguration bedarf. Dazu müssen Sie den \"Erweiterten Modus\" verwenden.</" "p></body></html>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:227 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:227 msgid "Recipe &title:" msgstr "&Titel des Rezepts:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:228 msgid "&Oldest article:" msgstr "Ä<ester Artikel:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:229 msgid "The oldest article to download" msgstr "Ältester Artikel, der geladen wird" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:230 msgid " days" msgstr " Tage" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:231 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:232 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:232 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:233 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:233 msgid "Feeds in recipe" msgstr "Feeds des Rezepts" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:234 msgid "Remove feed from recipe" msgstr "Feed aus dem Rezept entfernen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:239 msgid "Add feed to recipe" msgstr "Feed zum Rezept hinzufügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:237 msgid "&Feed title:" msgstr "&Feed Titel:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:238 msgid "Feed &URL:" msgstr "Feed &URL:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:240 msgid "&Add feed" msgstr "Feed &anfügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:241 msgid "" "For help with writing advanced news recipes, please visit <a href=\"http://" -"libprs500.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" +"calibre.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" msgstr "" "Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte benötigen, " -"besuchen Sie die englischsprachige Seite <a href=\"http://libprs500." -"kovidgoyal.net/user_manual/news.html\">User Recipes</a>" +"besuchen Sie die englischsprachige Seite <a href=\"http://calibre.kovidgoyal." +"net/user_manual/news.html\">User Recipes</a>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:242 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:242 msgid "Recipe source code (python)" msgstr "Source Code (Python) des Rezepts" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:111 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:111 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." @@ -1837,108 +1846,108 @@ msgstr "" "Sie die <b>Test</b>-Funktionalität unten zur Überprüfung der regulären " "Ausdrücke bei einigen Beispiel-Dateinamen." -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:112 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:112 msgid "Regular &expression" msgstr "R&egulärer Ausdruck" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:113 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:113 msgid "&Test" msgstr "&Test" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:114 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:114 msgid "File &name:" msgstr "Datei&name:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:115 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:115 msgid "Test" msgstr "Test" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:116 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:116 msgid "Title:" msgstr "Titel:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:117 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:117 msgid "Regular expression group name (?P<title>)" msgstr "Regulärer Ausdruck Gruppenname (?P<title>)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:118 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:121 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:127 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:41 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:45 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:50 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:55 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:118 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:121 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:45 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:50 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:55 msgid "No match" msgstr "Kein Treffer" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:119 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:119 msgid "Authors:" msgstr "Autoren:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:120 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:120 msgid "Regular expression group name (?P<authors>)" msgstr "Regulärer Ausdruck Gruppenname (?P<authors>)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:122 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:122 msgid "Series:" msgstr "Serien:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:123 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:123 msgid "Regular expression group name (?P<series>)" msgstr "Regulärer Ausdruck Gruppenname (?P<series>)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:125 msgid "Series index:" msgstr "Serien Index:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:126 msgid "Regular expression group name (?P<series_index>)" msgstr "Regulärer Ausdruck Gruppenname (?P<series_index>)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:279 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:279 msgid "Job" msgstr "Auftrag" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:280 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:280 msgid "Status" msgstr "Status" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:281 msgid "Progress" msgstr "Fortschritt" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:282 msgid "Running time" msgstr "Laufzeit" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 msgid "Error" msgstr "Fehler" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 msgid "Finished" msgstr "Fertig" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 msgid "Waiting" msgstr "Abwarten und Tee trinken..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 msgid "Working" msgstr "Bei der Arbeit..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:315 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:315 msgid "Unavailable" msgstr "Nicht verfügbar" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:343 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:347 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:351 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:347 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:351 msgid "Cannot kill job" msgstr "Kann Auftrag nicht abbrechen." -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:344 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:344 msgid "" "Cannot kill jobs that are communicating with the device as this may cause " "data corruption." @@ -1946,155 +1955,155 @@ msgstr "" "Kann Aufträge nicht abbrechen, die mit dem Gerät kommunizieren, da dies zu " "Datenverlust führen kann." -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:348 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:348 msgid "Cannot kill already completed jobs." msgstr "Kann schon fertiggestellte Aufträge nicht abbrechen." -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:352 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:352 msgid "Cannot kill waiting jobs." msgstr "Kann Aufträge in Warteliste nicht abbrechen." -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:212 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:218 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:222 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:212 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:218 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:222 msgid "None" msgstr "Keine" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:213 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:342 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:640 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:704 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:213 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:342 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:704 msgid "Tags" msgstr "Etiketten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:219 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:219 msgid "Formats" msgstr "Formate" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 msgid "Book <font face=\"serif\">%s</font> of %s." msgstr "Buch <font face=\"serif\">%s</font> von %s." -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:328 msgid "Double click to <b>edit</b> me<br><br>" msgstr "Doppelklick ermöglicht <b>Bearbeitung</b><br><br>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:701 msgid "Author(s)" msgstr "Autor(en)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:338 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:702 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:338 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:702 msgid "Size (MB)" msgstr "Größe (MB)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:339 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:703 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:339 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:703 msgid "Date" msgstr "Datum" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:340 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:340 msgid "Rating" msgstr "Bewertung" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:635 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:635 msgid "Path" msgstr "Pfad" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:639 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:639 msgid "Timestamp" msgstr "Zeitstempel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:739 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:739 msgid "Search (For Advanced Search click the button to the left)" msgstr "Suche (Zur erweiterten Suche die Schaltfläche links klicken)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:51 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:51 msgid "Configure Viewer" msgstr "Viewer konfigurieren " -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:52 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:52 msgid "Use white background" msgstr "Weißen Hintergrund verwenden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:53 msgid "Hyphenate" msgstr "Mit Trennstrich versehen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:54 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:54 msgid "<b>Changes will only take affect after a restart." msgstr "<b>Änderungen treten erst nach einem Neustart in Kraft." -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 msgid "<b>No matches</b> for the search phrase <i>%s</i> were found." msgstr "<b>Keine Treffer</b> für die Suchworte <i>%s</i> gefunden." -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 msgid "No matches found" msgstr "Keine Treffer gefunden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:184 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:184 msgid "LRF Viewer" msgstr "LRF Viewer" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:191 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:191 msgid "Parsing LRF file" msgstr "Analysiere LRF Datei" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:192 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:192 msgid "Next Page" msgstr "Nächste Seite" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:193 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:193 msgid "Previous Page" msgstr "Vorherige Seite" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:194 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:194 msgid "Back" msgstr "Zurück" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:195 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:195 msgid "Forward" msgstr "Weiter" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:196 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:196 msgid "Next match" msgstr "Nächster Treffer" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:197 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:197 msgid "Open ebook" msgstr "eBook öffnen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:198 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:198 msgid "Configure" msgstr "Konfigurieren" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:72 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:72 msgid "Error communicating with device" msgstr "Fehler bei der Kommunikation mit dem Gerät" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:102 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:102 msgid "Send to main memory" msgstr "An Hauptspeicher senden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:103 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:103 msgid "Send to storage card" msgstr "An Speicherkarte senden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:106 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106 msgid "Edit metadata individually" msgstr "Meta-Daten einzeln bearbeiten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:107 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:107 msgid "Edit metadata in bulk" msgstr "Meta-Daten auf einmal bearbeiten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:110 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:110 msgid "Add books from a single directory" msgstr "Bücher aus einem einzelnen Verzeichnis hinzufügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:111 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:111 msgid "" "Add books recursively (One book per directory, assumes every ebook file is " "the same book in a different format)" @@ -2102,7 +2111,7 @@ msgstr "" "Bücher rekursiv hinzufügen (Ein Buch pro Verzeichnis, setzt voraus, dass " "jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enthält)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:112 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:112 msgid "" "Add books recursively (Multiple books per directory, assumes every ebook " "file is a different book)" @@ -2110,37 +2119,37 @@ msgstr "" "Bücher rekursiv hinzufügen (Mehrere Bücher pro Verzeichnis, setzt voraus, " "dass jede eBook Datei ein anderes Buch enthält)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:126 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:289 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:289 msgid "Save to disk" msgstr "Auf HD sichern" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:127 msgid "Save to disk in a single directory" msgstr "Auf Festplatte in ein einziges Verzeichnis speichern" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:130 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:292 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:292 msgid "View" msgstr "Vorschau" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:131 msgid "View specific format" msgstr "Spezielles Format ansehen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:146 msgid "Convert individually" msgstr "Einzeln konvertieren" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:147 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:147 msgid "Bulk convert" msgstr "Auf einmal konvertieren" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:260 msgid "Device database corrupted" msgstr "Gerätedatenbank ist beschädigt" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:261 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:261 msgid "" "\n" " <p>The database of books on the reader is corrupted. Try the " @@ -2156,8 +2165,8 @@ msgid "" " " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:313 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:379 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:313 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:379 msgid "" "<p>Books with the same title as the following already exist in the database. " "Add them anyway?<ul>" @@ -2165,88 +2174,88 @@ msgstr "" "<p>Es existieren bereits Bücher mit dem selben Titel in der Datenbank. " "Sollen die folgenden Bücher trotzdem hinzugefügt werden?<ul>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:316 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:382 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:382 msgid "Duplicates found!" msgstr "Duplikate gefunden" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:412 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:412 msgid "No space on device" msgstr "Gerätespeicher voll" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:413 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:413 msgid "<p>Cannot upload books to device there is no more free space available " msgstr "" "<p>Es können keine Bücher mehr auf das Gerät geladen werden, da der " "Gerätespeicher voll ist " -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 msgid "Cannot edit metadata" msgstr "Kann Metadaten nicht bearbeiten" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 msgid "No books selected" msgstr "Keine Bücher ausgewählt" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 msgid "Cannot save to disk" msgstr "Speichern auf Festplatte nicht möglich" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:626 msgid "Fetch news from " msgstr "Nachrichten abrufen von" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:628 msgid "Fetching news from " msgstr "Rufe Nachrichten ab von" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:638 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:638 msgid "News fetched. Uploading to device." msgstr "Nachrichten abgerufen. Übertragung ans Gerät läuft." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 msgid "Cannot convert" msgstr "Konvertierung nicht möglich" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 msgid "No book selected" msgstr "Kein Buch ausgewählt" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:798 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:798 msgid "Cannot view" msgstr "Ansehen nicht möglich" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:773 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:803 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:773 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:803 msgid "Choose the format to view" msgstr "Format zur Vorschau wählen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:799 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:799 msgid "%s has no available formats." msgstr "%s hat keine verfügbaren Formate." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 msgid "Cannot configure" msgstr "Konfiguration nicht möglich" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 msgid "Cannot configure while there are running jobs." msgstr "Konfiguration nicht möglich während Aufträge abgearbeitet werden." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:863 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:863 msgid "Invalid database" msgstr "Ungültige Datenbank" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:864 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:864 msgid "" "<p>An invalid database already exists at %s, delete it before trying to move " "the existing database.<br>Error: %s" @@ -2254,15 +2263,15 @@ msgstr "" "<p>Es existiert bereits eine ungültige Datenbank in %s, bitte löschen Sie " "diese, bevor sie die bestehende Datenbank verschieben.<br>Fehler: %s" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:872 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:872 msgid "Could not move database" msgstr "Konnte Datenbank nicht verschieben" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:922 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922 msgid "Error talking to device" msgstr "Fehler in der Kommunikation zum Gerät" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:923 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923 msgid "" "There was a temporary error talking to the device. Please unplug and " "reconnect the device and or reboot." @@ -2270,7 +2279,7 @@ msgstr "" "Es trat ein Fehler in der Kommunikation mit dem Gerät auf. Bitte entfernen " "und schließen Sie das Gerät wieder an und - oder starten Sie neu." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:1003 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1003 msgid "" "<span style=\"color:red; font-weight:bold\">Latest version: <a href=\"%s\">%" "s</a></span>" @@ -2278,11 +2287,11 @@ msgstr "" "<span style=\"color:red; font-weight:bold\">Letzte Version: <a href=\"%s\">%" "s</a></span>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:266 -msgid "libprs500" -msgstr "libprs500" +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:266 +msgid "calibre" +msgstr "calibre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:267 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:267 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -2291,11 +2300,10 @@ msgid "" "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>" +"\"http://calibre.kovidgoyal.net/user_manual\"><span style=\" text-" +"decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</span></" +"a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 by <span " +"style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></body></html>" msgstr "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -2304,25 +2312,24 @@ msgstr "" "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>" +"<a href=\"http://calibre.kovidgoyal.net/user_manual\"><span style=\" text-" +"decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</span></" +"a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 by <span " +"style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></body></html>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:271 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:271 msgid "Advanced search" msgstr "Erweiterte Suche" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:273 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:273 msgid "Alt+S" msgstr "Alt+S" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:274 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:274 msgid "&Search:" msgstr "&Suche:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:275 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:275 msgid "" "Search the list of books by title or author<br><br>Words separated by spaces " "are ANDed" @@ -2330,7 +2337,7 @@ msgstr "" "Liste der Bücher nach Titel oder Autor durchsuchen<br><br>Durch Leerzeichen " "getrennte Wörter werden mit \"AND\" verknüpft" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:276 +#: /home/kovid/work/calibre/src/calibre/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" @@ -2339,52 +2346,52 @@ msgstr "" "durchsuchen<br><br>Durch Leerzeichen getrennte Wörter werden mit \"AND\" " "verknüpft" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:277 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:277 msgid "Reset Quick Search" msgstr "Quick Search löschen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:281 msgid "Add books" msgstr "Bücher hinzufügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:282 msgid "A" msgstr "A" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:284 msgid "Remove books" msgstr "Bücher entfernen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:285 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:285 msgid "Del" msgstr "Löschen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:286 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:286 msgid "Edit meta information" msgstr "Meta-Informationen editieren" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:287 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:287 msgid "E" msgstr "E" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:288 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:288 msgid "Send to device" msgstr "An Reader übertragen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:290 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:290 msgid "Fetch news" msgstr "Nachrichten abrufen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:291 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:291 msgid "Convert E-books" msgstr "In eBooks umwandeln" -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:32 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:32 msgid "Add a custom news source" msgstr "Neue individuelle Nachrichtenquelle hinzufügen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:53 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." @@ -2393,31 +2400,31 @@ msgstr "" "Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel " "zugriefen zu können. <br/> Klicken Sie OK, um fortzufahren." -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:79 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:79 msgid "Custom news sources" msgstr "Individuelle Nachrichtenquellen" -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:87 +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:87 msgid "Jobs:" msgstr "Aufträge:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:96 +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:96 msgid "Click to see list of active jobs." msgstr "Ein Klick zeigt die aktiven Aufträge." -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:34 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:34 msgid "Invalid regular expression" msgstr "Ungültiger regulärer Ausdruck" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:35 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:35 msgid "Invalid regular expression: %s" msgstr "Ungültiger regulärer Ausdruck: %s" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:86 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:86 msgid "Library" msgstr "Bibliothek" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:87 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:87 msgid "" "Reader\n" "%s available" @@ -2425,7 +2432,7 @@ msgstr "" "Reader\n" "%s verfügbar" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:88 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:88 msgid "" "Card\n" "%s available" @@ -2433,21 +2440,21 @@ msgstr "" "Karte\n" "%s verfügbar" -#: /home/kovid/work/libprs500/src/libprs500/parallel.py:114 +#: /home/kovid/work/calibre/src/calibre/parallel.py:114 msgid "Job killed by user" msgstr "Auftrag durch Benutzer abgebrochen" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:56 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:77 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:56 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:77 msgid "Unknown feed" msgstr "Feed unbekannt" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:115 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:115 msgid "Untitled article" msgstr "Artikel ohne Titel" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:15 msgid "" "%%prog [options] ARG\n" "\n" @@ -2487,12 +2494,12 @@ msgstr "" "Verfügbare installierte Rezepte:\n" "%s\n" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" "Einstellungen für web2disk (um von Feeds verlinkte Webseiten abzurufen)" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -2506,11 +2513,11 @@ msgstr "" "Wenn Sie diese Option wählen, wird jedes Argument %prog ignoriert und die " "Voreinstellung zum Download der Feeds verwendet. " -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "Mehr Wörter bei der weiteren Verarbeitung angeben." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." @@ -2518,17 +2525,17 @@ msgstr "" "Der Titel für dieses Rezept. Wird als Titel für alle eBooks benutzt, die aus " "den geladenen Feeds erstellt wurden." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" "Benutzername für Webseiten, die einen Login für den Inhaltsabruf benötigen." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" "Passwort für Webseiten, die einen Login für den Inhaltsabruf benötigen." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" @@ -2536,7 +2543,7 @@ msgstr "" "Anzahl der Links in die Tiefe, die vom Feed aus verfolgt werden sollen. " "Voreinstellung %default" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." @@ -2544,15 +2551,15 @@ msgstr "" "Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. " "Voreinstellung auf das aktuelle Verzeichnis." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "Fortschrittsbalken nicht anzeigen" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "Ausführliche Ausgabe, hilfreich zur Fehlerbeseitigung." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." @@ -2560,72 +2567,72 @@ msgstr "" "Hilfreich zur Entwicklung von Rezepten. Erzwingt maximal 2 Artikel pro Feed " "und lädt höchstens 2 Feeds." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:84 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:88 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "Rufe Feeds ab..." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:33 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:33 msgid "Unknown News Source" msgstr "Nachrichtenquelle unbekannt" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:468 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:468 msgid "Download finished" msgstr "Download beendet" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:470 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:470 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:472 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:478 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:472 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:478 msgid " from " msgstr " von" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:476 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:476 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:480 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:480 msgid "\tFailed links:" msgstr "\tFehlgeschlagene Verknüpfungen:" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:549 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:549 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:571 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:571 msgid "Got feeds from index page" msgstr "Feeds der Index Seite erhalten" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:575 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:575 msgid "Trying to download cover..." msgstr "Versuche Umschlagbild zu laden..." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:625 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:625 msgid "Starting download [%d thread(s)]..." msgstr "Starte Download von [%d Thread(s)]..." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:639 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:639 msgid "Feeds downloaded to %s" msgstr "Feeds wurden nach %s heruntergeladen" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:648 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:648 msgid "Could not download cover: %s" msgstr "Konnte Umschlagbild nicht laden: %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:653 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:653 msgid "Downloading cover from %s" msgstr "Lade Umschlagbild von %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:688 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:688 msgid "Untitled Article" msgstr "Artikel ohne Titel" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:729 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:729 msgid "" "\n" "Downloaded article %s from %s\n" @@ -2635,23 +2642,23 @@ msgstr "" "Artikel %s von %s geladen\n" "%s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:735 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:735 msgid "Article downloaded: %s" msgstr "Artikel geladen: %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:741 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:741 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:746 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:746 msgid "Article download failed: %s" msgstr "Laden der Artikel schlug fehl: %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:761 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:761 msgid "Fetching feed" msgstr "Rufe Feed ab" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:373 msgid "" "%prog URL\n" "\n" @@ -2661,13 +2668,13 @@ msgstr "" "\n" "URL ist z.B. http://google.com" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:376 msgid "Base directory into which URL is saved. Default is %default" msgstr "" "Grundverzeichnis, in das die URL gespeichert wird. Voreinstellung ist %" "default " -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:379 msgid "" "Timeout in seconds to wait for a response from the server. Default: %default " "s" @@ -2675,7 +2682,7 @@ msgstr "" "Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: " "%default s" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:382 msgid "" "Maximum number of levels to recurse i.e. depth of links to follow. Default %" "default" @@ -2683,7 +2690,7 @@ msgstr "" "Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt " "werden. Voreinstellung %default" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:385 msgid "" "The maximum number of files to download. This only applies to files from <a " "href> tags. Default is %default" @@ -2691,7 +2698,7 @@ msgstr "" "Höchstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus " "<a href> Tags zu. Voreinstellung ist %default" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:387 msgid "" "Minimum interval in seconds between consecutive fetches. Default is %default " "s" @@ -2699,7 +2706,7 @@ msgstr "" "Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. " "Voreinstellung ist %default s" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:389 msgid "" "The character encoding for the websites you are trying to download. The " "default is to try and guess the encoding." @@ -2707,7 +2714,7 @@ msgstr "" "Zeichenkodierung für Webseiten, die zu laden versucht werden. In der " "Voreinstellung wird versucht, die Kodierung zu erraten. " -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:391 msgid "" "Only links that match this regular expression will be followed. This option " "can be specified multiple times, in which case as long as a link matches any " @@ -2718,7 +2725,7 @@ msgstr "" "sie einem Regulären Ausdruck entsprechen. In der Voreinstellung werden alle " "Links verfolgt." -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:393 msgid "" "Any link that matches this regular expression will be ignored. This option " "can be specified multiple times, in which case as long as any regexp matches " @@ -2732,11 +2739,11 @@ msgstr "" "Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben " "sind, wird --filter-regexp zuerst angewendet." -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:395 msgid "Do not download CSS stylesheets." msgstr "Lade CSS Stylesheets nicht herunter." -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:396 msgid "Show detailed output information. Useful for debugging" msgstr "Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche." @@ -2839,21 +2846,21 @@ msgstr "Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche." #~ msgid "" #~ "For help with writing advanced news profiles, please visit <a href=" -#~ "\"https://libprs500.kovidgoyal.net/wiki/UserProfiles\">UserProfiles</a>" +#~ "\"https://calibre.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/" +#~ "Schauen Sie hier vorbei: <a href=\"https://calibre.kovidgoyal.net/wiki/" #~ "UserProfiles\">UserProfiles</a>" #~ msgid "Add custom RSS feed" #~ msgstr "Individuellen RSS feed hinzufügen" #~ msgid "" -#~ "Set the default timeout for network fetches (i.e. anytime libprs500 foes " +#~ "Set the default timeout for network fetches (i.e. anytime calibre foes " #~ "out to the internet to get information)" #~ msgstr "" #~ "Geben Sie die Vorgabe für die Zeitüberschreitung bei Netzwerkzugriffen an " -#~ "(immer dann, wenn libprs500 zur Informationsbeschaffung auf das Internet " +#~ "(immer dann, wenn calibre zur Informationsbeschaffung auf das Internet " #~ "zugreift)" #~ msgid "" @@ -2883,10 +2890,10 @@ msgstr "Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche." #~ "font-weight:400; font-style:normal;\">\n" #~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-" #~ "right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href=" -#~ "\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " -#~ "text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</" -#~ "span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %" -#~ "1 by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></" +#~ "\"https://calibre.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " +#~ "text-decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</" +#~ "span></a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 " +#~ "by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></" #~ "body></html>" #~ msgstr "" #~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/" @@ -2896,11 +2903,11 @@ msgstr "Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche." #~ "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 bei <a " -#~ "href=\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span " -#~ "style=\" text-decoration: underline; color:#0000ff;\">libprs500." -#~ "kovidgoyal.net</span></a><br /><br /><span style=\" font-weight:600;" -#~ "\">libprs500</span>: %1 by <span style=\" font-weight:600;\">Kovid Goyal</" -#~ "span> %2<br />%3</p></body></html>" +#~ "href=\"https://calibre.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=" +#~ "\" text-decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</" +#~ "span></a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 " +#~ "by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></" +#~ "body></html>" #~ msgid "Not yet implemented." #~ msgstr "Noch nicht eingeführt." diff --git a/src/libprs500/translations/es.po b/src/calibre/translations/es.po similarity index 50% rename from src/libprs500/translations/es.po rename to src/calibre/translations/es.po index 3286c9a38b..a4f2401b15 100644 --- a/src/libprs500/translations/es.po +++ b/src/calibre/translations/es.po @@ -10,28 +10,28 @@ msgid "" msgstr "" "Project-Id-Version: es\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-04 09:07+PDT\n" +"POT-Creation-Date: 2008-04-07 16:11+IST\n" "PO-Revision-Date: 2007-11-16 09:21+0100\n" -"Last-Translator: libprs500\n" +"Last-Translator: calibre\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:85 +#: /home/kovid/work/calibre/src/calibre/__init__.py:85 msgid "%sUsage%s: %s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:122 +#: /home/kovid/work/calibre/src/calibre/__init__.py:122 msgid "Created by " msgstr "Creado por " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:88 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:88 msgid "Set the title. Default: filename." msgstr "Insertar título. Por defecto: nombre_del_archivo." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:90 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:90 msgid "" "Set the author(s). Multiple authors should be set as a comma separated list. " "Default: %default" @@ -39,38 +39,38 @@ msgstr "" "Insertar autor(es). Si indica más de un autor, sepárelos mediante comas. Por " "defecto: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:91 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:630 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:91 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:630 msgid "Unknown" msgstr "Desconocido" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:93 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:93 msgid "Set the comment." msgstr "Insertar comentarios." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:95 msgid "Set the category" msgstr "Insertar categorí­a." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:97 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:97 msgid "Sort key for the title" msgstr "Clave de orden por tí­tulo." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:99 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:99 msgid "Sort key for the author" msgstr "Clave de orden por autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:101 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:16 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:341 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:16 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:341 msgid "Publisher" msgstr "Editorial" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:103 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:103 msgid "Path to file containing image to be used as cover" msgstr "Ruta al archivo de imagen a utilizar como portada" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:105 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:105 msgid "" "If there is a cover graphic detected in the source file, use that instead of " "the specified cover." @@ -78,12 +78,12 @@ msgstr "" "Si se detecta un gráfico para la portada en el archivo de origen, utilizarla " "en lugar de la portada especificada." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:108 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:108 msgid "Output file name. Default is derived from input filename" msgstr "" "Nombre del archivo de destino­. Por defecto, deriva del archivo de entrada" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:110 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:110 msgid "" "Render HTML tables as blocks of text instead of actual tables. This is " "neccessary if the HTML contains very large or complex tables." @@ -91,7 +91,7 @@ msgstr "" "Renderizar las tablas HTML como bloques de texto en lugar de las tablas " "actuales. Activar si el archivo HTML contiene tablas muy grandes o complejas." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:113 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:113 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 " @@ -101,25 +101,25 @@ msgstr "" "según este valo. Esta opción sustituye a --font-delta que se considera " "obsoleta. Para user ---font-delta, asigne 0 aquí." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:115 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:115 msgid "Enable autorotation of images that are wider than the screen width." msgstr "" "Activa la rotación automática de imágenes más grandes que el ancho de la " "pantalla." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:118 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:118 msgid "Set the space between words in pts. Default is %default" msgstr "Fija el espacio entre palabras en puntos. Por defecto: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:120 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:120 msgid "Separate paragraphs by blank lines." msgstr "Separa los párrafos mediante líneas en blanco." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:122 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:122 msgid "Add a header to all the pages with title and author." msgstr "Añadir el encabezado en todas las páginas, poniendo tí­tulo y autor." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:124 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:124 msgid "" "Set the format of the header. %a is replaced by the author and %t by the " "title. Default is %default" @@ -127,7 +127,7 @@ msgstr "" "Establece el formato del encabezado. %a se reemplaza por el autor y %t por " "el tí­tulo. Por defecto: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:126 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:126 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." @@ -135,7 +135,7 @@ msgstr "" "Substituye la hoja CSS. Se admite tanto una ruta al archivo CSS alternativo, " "como una cadena. En el último caso, la cadena se interpreta como CSS." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:128 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:128 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 " @@ -145,13 +145,13 @@ msgstr "" "que se añaden los archivos HTML al LRF. El archivo .opf debe estar en la " "misma carpeta que el archivo HTML base." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:130 msgid "" "Minimum paragraph indent (the indent of the first line of a paragraph) in " "pts. Default: %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:132 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 " @@ -161,13 +161,13 @@ msgstr "" "nea en FONT_DELTA puntos. FONT_DELTA puede ser una fracción. Si es un valor " "negativo, el tamaño de la fuente disminuye." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:137 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:137 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:144 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:144 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 " @@ -177,23 +177,23 @@ msgstr "" "determina, entre otras cosas, la resolución y el tamaño de la pantalla del " "dispositivo. Por defecto: %s Perfiles soportados:" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:150 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:150 msgid "Left margin of page. Default is %default px." msgstr "Margen izquierdo de la página. Por defecto: %default px." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:152 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:152 msgid "Right margin of page. Default is %default px." msgstr "Margen derecho de la página. Por defecto: %default px." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:154 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:154 msgid "Top margin of page. Default is %default px." msgstr "Margen superior de la página. Por defecto: %default px." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:156 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:156 msgid "Bottom margin of page. Default is %default px." msgstr "Margen inferior de la página. Por defecto: %default px." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:160 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:160 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 " @@ -203,7 +203,7 @@ msgstr "" "(cero) indica que no se seguirán. Un valor negativo, ignora las marcas <a>." # ??? -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:164 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:164 msgid "" "A regular expression. <a> tags whoose href matches will be ignored. Defaults " "to %default" @@ -211,14 +211,14 @@ msgstr "" "Expresión regular. Las marcas <a> que tengan href coincidentes, son " "ignoradas. Por defecto: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:169 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:169 msgid "" "Prevent the automatic insertion of page breaks before detected chapters." msgstr "" "Evita la inserción automática de saltos de página delante de los capítulos " "detectados." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:173 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:173 msgid "" "The regular expression used to detect chapter titles. It is searched for in " "heading tags (h1-h6). Defaults to %default" @@ -226,7 +226,7 @@ msgstr "" "Expressión regular utilizada para detectar los títulos de los capítulos. " "Busca las marcas de encabezado (h1-h6). Por defecto: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:176 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:176 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 " @@ -244,14 +244,14 @@ msgstr "" "cambio de página en el archivo LRF. Esta opción se ignora si la página " "actual tiene pocos elementos." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:186 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:186 msgid "" "Force a page break before tags whoose names match this regular expression." msgstr "" "Fuerza un salto de página antes de las marcas cuyo nombre coincida con la " "expresión regular." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:188 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:188 msgid "" "Force a page break before an element having the specified attribute. The " "format for this option is tagname regexp,attribute name,attribute value " @@ -263,12 +263,12 @@ msgstr "" "ejemplo, \"h\\d,class,chapter\", coincide con todas las marcas de encabezado " "que tienen el atributo class=\"chapter\". Por defecto: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:191 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:191 msgid "Preprocess Baen HTML files to improve generated LRF." msgstr "" "Preprocesa los archivos Baen HTML para mejorar el archivo LRF generado." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:193 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:193 msgid "" "You must add this option if processing files generated by pdftohtml, " "otherwise conversion will fail." @@ -276,11 +276,11 @@ msgstr "" "Es necesario activar esta opción para archivos generados con pdftohtml, para " "evitar que la conversión falle." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:195 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:195 msgid "Use this option on html0 files from Book Designer." msgstr "Utilice esta opción para archivos html0 de Book Designer." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:198 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:198 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 " @@ -294,27 +294,27 @@ msgstr "" "especificar cada una de las familias se utiliza: \"ruta a la carpeta de " "fuents, familia\" ( --serif-family \"%s, Times New Roman\")\n" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:207 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:207 msgid "The serif family of fonts to embed" msgstr "Familia de fuentes serif per a incrustar." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:210 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:210 msgid "The sans-serif family of fonts to embed" msgstr "Familia de fuentes sans-serif a incrustar." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:213 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:213 msgid "The monospace family of fonts to embed" msgstr "Familia de fuentes monoespaiadas a incrustar." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:217 msgid "Be verbose while processing" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:219 msgid "Convert to LRS" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " "option if you are on a memory constrained machine." @@ -322,7 +322,7 @@ msgstr "" "Minimizar el uso de memoria, a cambio de mayor tiempo de procesador. Usar " "esta opción si el equipo no dispone de mucha RAM." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:223 msgid "" "Specify the character encoding of the source file. If the output LRF file " "contains strange characters, try changing this option. A common encoding for " @@ -330,7 +330,7 @@ msgid "" "default is to try and guess the encoding." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:143 msgid "" "any2lrf [options] myfile\n" "\n" @@ -341,11 +341,11 @@ msgid "" " " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:158 msgid "No file to convert specified." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/epub/convert_from.py:17 msgid "" "Usage: %prog [options] mybook.epub\n" " \n" @@ -353,102 +353,115 @@ msgid "" "%prog converts mybook.epub to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:18 +msgid "" +"%prog [options] mybook.fb2\n" +"\n" +"\n" +"%prog converts mybook.fb2 to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:23 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:22 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:22 msgid "Options to control the behavior of html2lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:44 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:44 msgid "Fetching of recipe failed: " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:302 msgid "\tBook Designer file detected." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:304 msgid "\tParsing HTML..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:326 msgid "\tBaen file detected. Re-parsing..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:341 msgid "Written preprocessed HTML to " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:352 msgid "Processing %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:366 msgid "\tConverting to BBeB..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:504 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:511 msgid "Could not parse file: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:523 msgid "Failed to parse link %s %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:566 msgid "Cannot add link %s to TOC" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:908 msgid "Unable to process image %s. Error: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:946 msgid "Unable to process interlaced PNG %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:961 msgid "" "Could not process image: %s\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1651 msgid "An error occurred while processing a table: %s. Ignoring table markup." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1653 msgid "" "Bad table:\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1675 msgid "Table has cell that is too large" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1703 msgid "" "You have to save the website %s as an html file first and then run html2lrf " "on it." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1741 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1743 msgid "Could not read cover image: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1744 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1746 msgid "Cannot read from: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1873 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1875 msgid "Failed to process opf file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1879 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1881 msgid "" "Usage: %prog [options] mybook.html\n" "\n" @@ -459,7 +472,7 @@ msgid "" "convert a whole tree of HTML files." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lit/convert_from.py:19 msgid "" "Usage: %prog [options] mybook.lit\n" "\n" @@ -467,26 +480,26 @@ msgid "" "%prog converts mybook.lit to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:254 msgid "" "%prog [options] file.lrs\n" "Compile an LRS file into an LRF file." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:255 msgid "Path to output file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:113 msgid "Verbose processing" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:259 msgid "Convert LRS to LRS, useful for debugging." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:541 msgid "" "%prog [options] mybook.lrf\n" "\n" @@ -495,50 +508,50 @@ msgid "" "\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:548 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:18 msgid "Set the book title" msgstr "Insertar el nombre del libro" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:550 msgid "Set sort key for the title" msgstr "Insertar la clave de orden por título" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:552 msgid "Set the author" msgstr "Insertar el autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:554 msgid "Set sort key for the author" msgstr "Insertar la clave de orden por autor" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:556 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "Categoria a la que pertenece el libro. Por ejemplo, Historia" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" msgstr "Ruta al archivo de imagen que se utilizará como miniatura" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:562 msgid "Path to a txt file containing the comment to be stored in the lrf file." msgstr "" "Ruta al archivo txt que contiene el comentaria a guardar en el archivo LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "Extraer la miniatura del archivo LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "Insertar el ID del libro" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "No sé para qué sirve esto" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/mobi/convert_from.py:43 msgid "" "Usage: %prog [options] mybook.mobi|prc\n" "\n" @@ -546,29 +559,29 @@ msgid "" "%prog converts mybook.mobi to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:132 msgid "" "%prog book.lrf\n" "Convert an LRF file into an LRS (XML UTF-8 encoded) file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:133 msgid "Output LRS file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:151 msgid "Parsing LRF..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:154 msgid "Creating XML..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:156 msgid "LRS written to " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/convert_from.py:47 msgid "" "%prog [options] mybook.pdf\n" "\n" @@ -576,21 +589,21 @@ msgid "" "%prog converts mybook.pdf to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:402 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:404 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:404 msgid "Be more verbose." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:416 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:416 msgid "You must specify a single PDF file." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/rtf/convert_from.py:20 msgid "" "%prog [options] mybook.rtf\n" "\n" @@ -598,7 +611,7 @@ msgid "" "%prog converts mybook.rtf to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:17 msgid "" "%prog [options] mybook.txt\n" "\n" @@ -606,27 +619,23 @@ msgid "" "%prog converts mybook.txt to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 -msgid "Print generated HTML to stdout and quit." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:20 msgid "Set the authors" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:24 msgid "Set the comment" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 msgid "Usage:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 msgid "mybook.epub" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:95 msgid "" "\n" "%prog [options] key\n" @@ -640,37 +649,37 @@ msgid "" "\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:106 msgid "The ISBN ID of the book you want metadata for." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:108 msgid "The author whoose book to search for." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:110 msgid "The title of the book to search for." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:112 msgid "The publisher of the book to search for." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:46 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:47 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:47 msgid " not found." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:50 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:50 msgid "Server error. Try again later." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:59 msgid "" "\n" "%prog [options] ISBN\n" @@ -678,189 +687,189 @@ msgid "" "Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:746 msgid "Usage: %s file.lit" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:753 msgid "Cover saved to" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:39 msgid "Usage: pdf-meta file.pdf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:40 msgid "No filename specified." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:297 msgid "%prog [options] myebook.mobi" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:299 msgid "Output directory. Defaults to current directory." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:318 msgid "Raw MOBI HTML saved in" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:320 msgid "OEB ebook created in" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Elegir formato" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:62 msgid "TextLabel" msgstr "TextLabel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 msgid "<br>Must be a directory." msgstr "<br>Debe ser un directorio." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 msgid "Invalid database location " msgstr "Ubicación no válida" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 msgid "Invalid database location" msgstr "Ubicación no válida" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 msgid "Invalid database location.<br>Cannot write to " msgstr "Ubicación no válida.<br>Imposible escribir en " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 msgid "Compacting database. This may take a while." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 msgid "Compacting..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:216 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:279 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:216 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:279 msgid "Configuration" msgstr "Configuración" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:220 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:220 msgid "Basic" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:224 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:224 msgid "Advanced" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:226 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:226 msgid "&Location of books database (library1.db)" msgstr "&Ubicación de la base de datos (library1.db)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:227 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:227 msgid "Browse for the new database location" msgstr "Navegar a la nueva ubicación de la base de datos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:238 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:610 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:320 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:329 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:331 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:335 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:144 -#: /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:235 -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:188 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:189 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:190 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:272 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:278 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:280 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:610 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:320 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:329 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:331 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:335 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:153 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:185 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:186 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:187 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:188 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:189 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:190 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:272 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:278 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:280 msgid "..." msgstr "..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:229 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:229 msgid "Use &Roman numerals for series number" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:230 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:230 msgid "Default network &timeout:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:231 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:231 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:232 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:232 msgid " seconds" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:233 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:233 msgid "&Priority for conversion jobs:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:234 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:234 msgid "Frequently used directories" msgstr "Directorios usados con frecuencia" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:235 msgid "Add a directory to the frequently used directories list" msgstr "Añadir directorio a la lista de directorios frecuentes" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:237 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:237 msgid "Remove a directory from the frequently used directories list" msgstr "Eliminar directorio a la lista de directorios frecuentes" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:239 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:239 msgid "Select visible &columns in library view" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:240 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:240 msgid "Free unused diskspace from the database" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:241 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:241 msgid "&Compact database" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:242 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:242 msgid "&Metadata from file name" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/conversion_error_ui.py:37 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/conversion_error_ui.py:37 msgid "ERROR" msgstr "ERROR" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:101 msgid "Cannot connect" msgstr "No se puede conectar" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:102 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:102 msgid "You must specify a valid access key for isbndb.com" msgstr "Especifica una clave de acceso válida para isbndb.com" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:89 msgid "Fetch metadata" msgstr "Buscar metadatos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:90 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:90 msgid "Fetching metadata for <b>%1</b>" msgstr "Buscando metadatos para <b>%1</b>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:91 +#: /home/kovid/work/calibre/src/calibre/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." @@ -868,80 +877,80 @@ msgstr "" "Registraros gratuitamente en <a href=\"http://www.isbndb.com\">ISBNdb.com</" "a> para obtenir una clave de acceso." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:92 msgid "&Access Key;" msgstr "Clave de &acceso;" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:93 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:93 msgid "Fetch" msgstr "Buscar" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:94 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:94 msgid "Matches" msgstr "Coincidencias" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:95 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:95 msgid "Select the book that most closely matches your copy from the list below" msgstr "Seleccionar el libro que más se aproxime al listado mostrado abajo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/job_view_ui.py:30 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/job_view_ui.py:30 msgid "Details of job" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:39 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:39 msgid "Active Jobs" msgstr "Trebajos activos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:40 msgid "&Stop selected job" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:81 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:81 msgid "No available formats" msgstr "Formatos no disponibles" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:82 msgid "Cannot convert %s as this book has no supported formats" msgstr "No se puede convertir %s porque el formato no está soportado" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:86 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:86 msgid "Choose the format to convert into LRF" msgstr "Elegir el formato a conertir en LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:94 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:94 msgid "Convert %s to LRF" msgstr "Convertir %s a LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:97 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:97 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:149 msgid "Set conversion defaults" msgstr "Fijar valores de conversión por defecto" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:163 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:163 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:43 msgid "Cannot read" msgstr "No se puede leer" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:164 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:44 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:164 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:44 msgid "You do not have permission to read the file: " msgstr "No tienes permiso de lectura en el archivo: " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:172 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:52 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:172 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:52 msgid "Error reading file" msgstr "Error leyendo archivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:173 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:173 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:53 msgid "<p>There was an error reading from file: <br /><b>" msgstr "<p>Hubo un error leyendo el archivo: <br /><b>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:179 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:179 msgid " is not a valid picture" msgstr " no es una imagen válida" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:245 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:245 msgid "" "Preprocess the file before converting to LRF. This is useful if you know " "that the file is from a specific source. Known sources:" @@ -949,22 +958,22 @@ msgstr "" "Preprocesar el archivo antes de convertir a LRF, útil si se conoce el origen " "del archivo. Tipos de archivos conocidos:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:246 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:246 msgid "<ol><li><b>baen</b> - Books from BAEN Publishers</li>" msgstr "<ol><li><b>baen</b> - Libros de BAEN Publishers</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:247 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:247 msgid "" "<li><b>pdftohtml</b> - HTML files that are the output of the program " "pdftohtml</li>" msgstr "" "<li><b>pdftohtml</b> - Archivos HTML creados con el programa pdftohtml</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:248 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:248 msgid "<li><b>book-designer</b> - HTML0 files from Book Designer</li>" msgstr "<li><b>book-designer</b> - Archivos HTML0 de Book Designer</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 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." @@ -972,12 +981,12 @@ msgstr "" "Especificar datos como título y autor para el libro.<p>Esta información se " "actualiza tanto en la base de datos como en el archivo LRF." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:592 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:592 msgid "Metadata" msgstr "Metadatos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 msgid "" "Adjust the look of the generated LRF file by specifying things like font " "sizes and the spacing between words." @@ -985,91 +994,91 @@ msgstr "" "Mejorar la apariencia del archivo LRF generado, especificando el tamaño de " "fuente y el espaciado entre palabras." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:596 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:596 msgid "Look & Feel" msgstr "Apariencia" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 msgid "" "Specify the page settings like margins and the screen size of the target " "device." msgstr "" "Configuración de página del dispositivo: márgenes y tamaño de la pantalla" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:600 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:600 msgid "Page Setup" msgstr "Configuración de página" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 msgid "Fine tune the detection of chapter and section headings." msgstr "Afinar la detección de capítulos y secciones." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:604 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:604 msgid "Chapter Detection" msgstr "Detección de capítulos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:292 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:292 msgid "<font color=\"gray\">No help available</font>" msgstr "<font color=\"gray\">Ayuda no disponible</font>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:396 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:396 msgid "Bulk convert ebooks to LRF" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:587 msgid "Convert to LRF" msgstr "Convertir a LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:588 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:588 msgid "Category" msgstr "Categoría" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:606 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:606 msgid "Options" msgstr "Opciones" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:607 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:332 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:607 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:332 msgid "Book Cover" msgstr "Portada" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:608 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:333 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:608 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:333 msgid "Change &cover image:" msgstr "Cambia la imagen de &portada:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:609 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:334 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:609 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:334 msgid "Browse for an image to use as the cover of this book." msgstr "Localizar una imagen a utilizar como portada de este libro." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:611 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:611 msgid "Use cover from &source file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:612 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:300 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:612 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:300 msgid "&Title: " msgstr "&Título:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:613 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:301 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:613 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:301 msgid "Change the title of this book" msgstr "Cambiar el título del libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:614 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:129 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:302 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:614 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:129 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:302 msgid "&Author(s): " msgstr "&Autor(es):" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:615 -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:615 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:617 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:303 msgid "" "Change the author(s) of this book. Multiple authors should be separated by a " "comma" @@ -1077,30 +1086,30 @@ msgstr "" "Cambia el(los) autor(es). Para especificar más de uno, separarlos mediante " "comas." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:616 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:616 msgid "Author So&rt:" msgstr "O&rd&en por autor:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:618 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:137 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:618 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:137 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:310 msgid "&Publisher: " msgstr "&Editorial:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:619 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:138 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:311 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:619 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:138 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:311 msgid "Change the publisher of this book" msgstr "Cambia la editorial del libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:620 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:620 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:312 msgid "Ta&gs: " msgstr "Etique&tas:" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:621 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:140 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1108,173 +1117,173 @@ msgstr "" "Etiquetas para categorizar el libr (muy útil en búsquedas). <br><br>Puede " "utilizarse qualquier palabra o frase, separada medante comas." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:622 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:143 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:622 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:316 msgid "&Series:" msgstr "&Series:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:623 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:624 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:144 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:145 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:317 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:318 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:623 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:624 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:317 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:318 msgid "List of known series. You can add new series." msgstr "Listado de series conocidas. Se puede añadir nuevas series." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:625 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:626 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:321 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:322 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:625 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:321 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:322 msgid "Series index." msgstr "Índice de serie." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:627 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:323 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:627 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:323 msgid "Book " msgstr "Libro " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:628 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:325 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:223 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:325 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:223 msgid "Comments" msgstr "Comentarios" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:629 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:629 msgid "Base &font size:" msgstr "Tamaño de la &fuente base:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:630 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:637 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:639 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:630 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:637 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:639 msgid " pts" msgstr " puntos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:631 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:631 msgid "Embedded Fonts" msgstr "Fuentes incrustadas" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:632 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:632 msgid "&Serif:" msgstr "&Serif:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:633 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:633 msgid "S&ans-serif:" msgstr "S&ans-serif:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:634 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:634 msgid "&Monospace:" msgstr "&Monospace:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:635 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:635 msgid "Source en&coding:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:636 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:636 msgid "Minimum &indent:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:638 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:638 msgid "&Word spacing:" msgstr "&Espaciado de palabras:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:640 msgid "Enable auto &rotation of images" msgstr "Activa la &rotación automática de imágenes" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:641 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:641 msgid "Insert &blank lines between paragraphs" msgstr "Inserta líneas en &blanco entre párrafos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:642 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:642 msgid "Ignore &tables" msgstr "Ignora las &tablas" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:643 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:643 msgid "Ignore &colors" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:644 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:644 msgid "&Preprocess:" msgstr "&Preprocesamiento:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:645 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:645 msgid "Header" msgstr "Encabezado" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:646 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:646 msgid "&Show header" msgstr "&Mostrar encabezado" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:647 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:647 msgid "&Header format:" msgstr "&Formato del encabezado:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:648 msgid "Override<br>CSS" msgstr "Substituye<br>CSS" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:649 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:649 msgid "&Profile:" msgstr "&Perfil:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:650 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:650 msgid "&Left Margin:" msgstr "Margen &Izquierdo:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:651 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:653 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:655 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:657 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:651 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:653 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:655 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:657 msgid " px" msgstr " Píxeles" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:652 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:652 msgid "&Right Margin:" msgstr "Margen &Derecho:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:654 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:654 msgid "&Top Margin:" msgstr "Margen &Superior:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:656 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:656 msgid "&Bottom Margin:" msgstr "Margen &Inferior:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:658 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:658 msgid "Title based detection" msgstr "Detección basada en el título" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:659 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:659 msgid "&Disable chapter detection" msgstr "&Desactivar detección de capítulos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:660 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:660 msgid "&Regular expression:" msgstr "Expresión &Regular:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:661 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:661 msgid "Tag based detection" msgstr "Detección basada en etiquetas" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:662 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:662 msgid "&Page break before tag:" msgstr "Inserta un salto de &página delante de la marca:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:663 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:663 msgid "&Force page break before tag:" msgstr "&Fuerza un salto de página delante de la marca:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:664 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:664 msgid "Force page break before &attribute:" msgstr "Fuerza un salto de página delante del &atributo:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:665 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:665 msgid "Help on item" msgstr "Ayuda con el ítem" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:666 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:666 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1286,22 +1295,22 @@ msgid "" "family:'Sans Serif'; font-size:9pt;\"></p></body></html>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:127 msgid "Edit Meta information" msgstr "Editar Meta-información" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:128 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:299 msgid "Meta information" msgstr "Meta-información" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:304 msgid "Author S&ort: " msgstr "&Ordenar autores:" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:132 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1309,307 +1318,307 @@ msgstr "" "Especificar cómo ordenar el(los) autor(es) de este libro. Por ejemplo,ordena " "Federico García Lorca como Lorca, Federico" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:306 msgid "&Rating:" msgstr "&Valoración:" -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:308 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:135 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:307 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:308 msgid "Rating of this book. 0-5 stars" msgstr "Valora este libro: 0-5 estrellas" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:136 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:309 msgid " stars" msgstr " estrellas" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:139 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:139 msgid "Add Ta&gs: " msgstr "Aña&dir las etiquetas: " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:141 msgid "&Remove tags:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:142 +#: /home/kovid/work/calibre/src/calibre/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:224 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:224 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:254 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 msgid "<b>Could not fetch cover.</b><br/>" msgstr "<b>No se puede descargar la portada.</b><br/>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:254 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 msgid "Could not fetch cover" msgstr "No se puede descargar la portada." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 msgid "Cannot fetch cover" msgstr "No se puede descargar la portada" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 msgid "You must specify the ISBN identifier for this book." msgstr "Especifique primero un ISBN válido para el libro." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:298 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:298 msgid "Edit Meta Information" msgstr "Editar meta-información" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:314 +#: /home/kovid/work/calibre/src/calibre/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 +#: /home/kovid/work/calibre/src/calibre/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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:324 msgid "IS&BN:" msgstr "IS&BN:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:326 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:326 msgid "Fetch metadata from server" msgstr "Buscar metadatos en el servidor" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:327 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:327 msgid "Available Formats" msgstr "Formatos disponibles" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:328 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:328 msgid "Add a new format for this book to the database" msgstr "Añadir un nuevo formato para este libro en la base de datos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:330 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:330 msgid "Remove the selected formats for this book from the database." msgstr "" "Elimina los formatos seleccionados para este libro de la base de datos." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:336 msgid "Fetch cover image from server" msgstr "Buscar portada en el servidor" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:337 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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:338 msgid "Change password" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:61 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:61 msgid "Password needed" msgstr "Se necesita contraseña." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:63 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:63 msgid "&Username:" msgstr "&Usuario:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:64 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:64 msgid "&Password:" msgstr "&Contraseña:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:65 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:65 msgid "&Show password" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:14 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:336 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:700 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:14 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:700 msgid "Title" msgstr "Título" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:15 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:15 msgid "Author" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:17 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:17 msgid "Tag" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:18 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:18 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:343 msgid "Series" msgstr "Series" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:19 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:634 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:19 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:634 msgid "Format" msgstr "Formato" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:20 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:20 msgid "Any" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:40 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:110 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:110 msgid "Form" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:41 msgid "contains" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:42 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:42 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 +#: /home/kovid/work/calibre/src/calibre/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." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:44 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:44 msgid "Negate" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:80 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:80 msgid "Advanced Search" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:81 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:81 msgid "Match a&ll of the following criteria" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:82 msgid "Match a&ny of the following criteria" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:83 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:83 msgid "Search criteria" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:84 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:84 msgid "More" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:85 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:85 msgid "Fewer" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:141 msgid "Tag Editor" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:142 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:142 msgid "A&vailable tags" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/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." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:145 msgid "Apply tag to current book" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:147 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:147 msgid "A&pplied tags" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:148 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:148 msgid "Unapply (remove) tag from current book" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:150 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:150 msgid "&Add tag:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:151 +#: /home/kovid/work/calibre/src/calibre/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." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:152 +#: /home/kovid/work/calibre/src/calibre/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.py:48 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:58 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:48 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:58 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:222 msgid "Switch to Advanced mode" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:53 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:61 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:61 msgid "Switch to Basic mode" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:71 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:71 msgid "Feed must have a title" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:72 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:72 msgid "The feed must have a title" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:76 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:76 msgid "Feed must have a URL" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:77 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:77 msgid "The feed %s must have a URL" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:82 msgid "Already exists" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:83 msgid "This feed has already been added to the recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:133 msgid "Invalid input" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:125 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:134 msgid "<p>Could not create recipe. Error:<br>%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:140 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:140 msgid "Replace recipe?" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:141 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:218 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:218 msgid "Add custom news source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:219 msgid "Available user recipes" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:220 msgid "Add/Update &recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:221 msgid "&Remove recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:223 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1623,66 +1632,66 @@ msgid "" "body></html>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:227 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:227 msgid "Recipe &title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:228 msgid "&Oldest article:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:229 msgid "The oldest article to download" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:230 msgid " days" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:231 msgid "&Max. number of articles per feed:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:232 msgid "Maximum number of articles to download per feed." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:233 msgid "Feeds in recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:234 msgid "Remove feed from recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:239 msgid "Add feed to recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:237 msgid "&Feed title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:238 msgid "Feed &URL:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:240 msgid "&Add feed" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:241 msgid "" "For help with writing advanced news recipes, please visit <a href=\"http://" -"libprs500.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" +"calibre.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:242 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:242 msgid "Recipe source code (python)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:111 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:111 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." @@ -1691,304 +1700,304 @@ msgid "" "on a few sample filenames." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:112 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:112 msgid "Regular &expression" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:113 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:113 msgid "&Test" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:114 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:114 msgid "File &name:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:115 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:115 msgid "Test" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:116 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:116 msgid "Title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:117 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:117 msgid "Regular expression group name (?P<title>)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:118 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:121 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:127 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:41 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:45 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:50 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:55 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:118 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:121 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:45 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:50 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:55 msgid "No match" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:119 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:119 msgid "Authors:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:120 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:120 msgid "Regular expression group name (?P<authors>)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:122 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:122 msgid "Series:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:123 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:123 msgid "Regular expression group name (?P<series>)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:125 msgid "Series index:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:126 msgid "Regular expression group name (?P<series_index>)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:279 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:279 msgid "Job" msgstr "Trabajo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:280 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:280 msgid "Status" msgstr "Estado" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:281 msgid "Progress" msgstr "Progreso" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:282 msgid "Running time" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 msgid "Error" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 msgid "Finished" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 msgid "Waiting" msgstr "En espera..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 msgid "Working" msgstr "Procesando..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:315 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:315 msgid "Unavailable" msgstr "No disponible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:343 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:347 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:351 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:347 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:351 msgid "Cannot kill job" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:344 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:344 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:348 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:348 msgid "Cannot kill already completed jobs." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:352 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:352 msgid "Cannot kill waiting jobs." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:212 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:218 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:222 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:212 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:218 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:222 msgid "None" msgstr "Ninguno" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:213 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:342 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:640 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:704 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:213 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:342 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:704 msgid "Tags" msgstr "Etiquetas" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:219 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:219 msgid "Formats" msgstr "Formatos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 msgid "Book <font face=\"serif\">%s</font> of %s." msgstr "Libro <font face=\"serif\">%s</font> de %s." -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:328 msgid "Double click to <b>edit</b> me<br><br>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:701 msgid "Author(s)" msgstr "Autor(es)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:338 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:702 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:338 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:702 msgid "Size (MB)" msgstr "Tamaño (MB)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:339 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:703 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:339 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:703 msgid "Date" msgstr "Fecha" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:340 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:340 msgid "Rating" msgstr "Valoración" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:635 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:635 msgid "Path" msgstr "Ruta" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:639 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:639 msgid "Timestamp" msgstr "Marca de tiempo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:739 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:739 msgid "Search (For Advanced Search click the button to the left)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:51 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:51 msgid "Configure Viewer" msgstr "Configurar el visor" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:52 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:52 msgid "Use white background" msgstr "Utilizar fondo blanco" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:53 msgid "Hyphenate" msgstr "Partición de palabras" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:54 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:54 msgid "<b>Changes will only take affect after a restart." msgstr "<b>Los cambios no se aplicaran hasta reiniciar." -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 msgid "<b>No matches</b> for the search phrase <i>%s</i> were found." msgstr "<b>No </b>se han encontrado coincidencias para \"<i>%s</i>\"." -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 msgid "No matches found" msgstr "No se han encontrado coincidencias" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:184 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:184 msgid "LRF Viewer" msgstr "Visor LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:191 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:191 msgid "Parsing LRF file" msgstr "Analizando el archivo LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:192 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:192 msgid "Next Page" msgstr "Página siguiente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:193 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:193 msgid "Previous Page" msgstr "Página anterior" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:194 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:194 msgid "Back" msgstr "Atrás" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:195 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:195 msgid "Forward" msgstr "Siguiente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:196 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:196 msgid "Next match" msgstr "Siguiente coincidencia" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:197 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:197 msgid "Open ebook" msgstr "Abrir eBook" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:198 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:198 msgid "Configure" msgstr "Configurar" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:72 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:72 msgid "Error communicating with device" msgstr "Error en la comunicación con el dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:102 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:102 msgid "Send to main memory" msgstr "Enviar a la memoria interna" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:103 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:103 msgid "Send to storage card" msgstr "Envia a la targeta de memoria" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:106 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106 msgid "Edit metadata individually" msgstr "Editar metadatos individualmente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:107 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:107 msgid "Edit metadata in bulk" msgstr "Edita metadatos en bloque" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:110 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:110 msgid "Add books from a single directory" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:111 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:111 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:112 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:112 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:126 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:289 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:289 msgid "Save to disk" msgstr "Guardar en el disco" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:127 msgid "Save to disk in a single directory" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:130 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:292 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:292 msgid "View" msgstr "Mostrar" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:131 msgid "View specific format" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:146 msgid "Convert individually" msgstr "Convertir individualmente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:147 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:147 msgid "Bulk convert" msgstr "Convertir en bloque" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:260 msgid "Device database corrupted" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:261 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:261 msgid "" "\n" " <p>The database of books on the reader is corrupted. Try the " @@ -2004,108 +2013,108 @@ msgid "" " " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:313 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:379 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:313 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:379 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:316 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:382 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:382 msgid "Duplicates found!" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:412 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:412 msgid "No space on device" msgstr "No hay espacio en el dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:413 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:413 msgid "<p>Cannot upload books to device there is no more free space available " msgstr "" "<p>No se pueden guardar los libros porque no hay espacio en el dispositivo " -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 msgid "Cannot edit metadata" msgstr "No se pueden editar los metadatos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 msgid "No books selected" msgstr "No hay libros seleccionados" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 msgid "Cannot save to disk" msgstr "No se puede guardar en disco" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:626 msgid "Fetch news from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:628 msgid "Fetching news from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:638 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:638 msgid "News fetched. Uploading to device." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 msgid "Cannot convert" msgstr "No se puede convertir" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 msgid "No book selected" msgstr "Seleccione un libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:798 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:798 msgid "Cannot view" msgstr "No se puede visualizar" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:773 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:803 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:773 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:803 msgid "Choose the format to view" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:799 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:799 msgid "%s has no available formats." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 msgid "Cannot configure" msgstr "No se puede configurar" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 msgid "Cannot configure while there are running jobs." msgstr "No se puede configurar con trabajos en proceso." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:863 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:863 msgid "Invalid database" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:864 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:864 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:872 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:872 msgid "Could not move database" msgstr "No se puede mover la base de datos" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:922 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922 msgid "Error talking to device" msgstr "Error de comunicación con el dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:923 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923 msgid "" "There was a temporary error talking to the device. Please unplug and " "reconnect the device and or reboot." @@ -2113,17 +2122,17 @@ msgstr "" "Hubo un error de comunicación con el dispositivo. Desconecte, vuelva a " "conectar el dispositivo y reinicie la aplicación." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:1003 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1003 msgid "" "<span style=\"color:red; font-weight:bold\">Latest version: <a href=\"%s\">%" "s</a></span>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:266 -msgid "libprs500" -msgstr "libprs500" +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:266 +msgid "calibre" +msgstr "calibre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:267 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:267 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -2132,26 +2141,25 @@ msgid "" "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>" +"\"http://calibre.kovidgoyal.net/user_manual\"><span style=\" text-" +"decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</span></" +"a><br /><br /><span style=\" font-weight:600;\">calibre</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 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:271 msgid "Advanced search" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:273 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:273 msgid "Alt+S" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:274 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:274 msgid "&Search:" msgstr "&Buscar:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:275 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:275 msgid "" "Search the list of books by title or author<br><br>Words separated by spaces " "are ANDed" @@ -2159,7 +2167,7 @@ msgstr "" "Busca libros por título o autor. <br><br>Los espacios entre palabras se " "sustituyen por AND." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:276 +#: /home/kovid/work/calibre/src/calibre/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" @@ -2167,82 +2175,82 @@ msgstr "" "Buscar libros por título, autor, editorial, etiquetas y " "comentaris<br><br>Los espacios entre parlabras se sustituyen por AND." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:277 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:277 msgid "Reset Quick Search" msgstr "Reinicializar búsqueda rápida" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:281 msgid "Add books" msgstr "Añadir libros" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:282 msgid "A" msgstr "A" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:284 msgid "Remove books" msgstr "Suprimir libros" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:285 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:285 msgid "Del" msgstr "Borrar" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:286 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:286 msgid "Edit meta information" msgstr "Editar la meta-información" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:287 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:287 msgid "E" msgstr "E" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:288 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:288 msgid "Send to device" msgstr "Enviar al dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:290 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:290 msgid "Fetch news" msgstr "Descargar noticias (RSS)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:291 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:291 msgid "Convert E-books" msgstr "Convertir Ebooks" -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:32 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:32 msgid "Add a custom news source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:53 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:79 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:79 msgid "Custom news sources" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:87 +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:87 msgid "Jobs:" msgstr "Trabajos:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:96 +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:96 msgid "Click to see list of active jobs." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:34 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:34 msgid "Invalid regular expression" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:35 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:35 msgid "Invalid regular expression: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:86 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:86 msgid "Library" msgstr "Biblioteca" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:87 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:87 msgid "" "Reader\n" "%s available" @@ -2250,7 +2258,7 @@ msgstr "" "Sony Reader\n" "%s disponible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:88 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:88 msgid "" "Card\n" "%s available" @@ -2258,21 +2266,21 @@ msgstr "" "Tarjeta\n" "%s disponible" -#: /home/kovid/work/libprs500/src/libprs500/parallel.py:114 +#: /home/kovid/work/calibre/src/calibre/parallel.py:114 msgid "Job killed by user" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:56 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:77 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:56 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:77 msgid "Unknown feed" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:115 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:115 msgid "Untitled article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:15 msgid "" "%%prog [options] ARG\n" "\n" @@ -2293,11 +2301,11 @@ msgid "" "%s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -2306,185 +2314,185 @@ msgid "" "recipe is used to download the feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:84 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:88 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:33 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:33 msgid "Unknown News Source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:468 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:468 msgid "Download finished" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:470 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:470 msgid "Failed to download the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:472 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:478 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:472 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:478 msgid " from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:476 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:476 msgid "Failed to download parts of the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:480 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:480 msgid "\tFailed links:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:549 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:549 msgid "Could not fetch article. Run with --debug to see the reason" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:571 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:571 msgid "Got feeds from index page" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:575 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:575 msgid "Trying to download cover..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:625 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:625 msgid "Starting download [%d thread(s)]..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:639 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:639 msgid "Feeds downloaded to %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:648 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:648 msgid "Could not download cover: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:653 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:653 msgid "Downloading cover from %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:688 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:688 msgid "Untitled Article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:729 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:729 msgid "" "\n" "Downloaded article %s from %s\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:735 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:735 msgid "Article downloaded: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:741 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:741 msgid "Failed to download article: %s from %s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:746 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:746 msgid "Article download failed: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:761 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:761 msgid "Fetching feed" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:373 msgid "" "%prog URL\n" "\n" "Where URL is for example http://google.com" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:376 msgid "Base directory into which URL is saved. Default is %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:379 msgid "" "Timeout in seconds to wait for a response from the server. Default: %default " "s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:382 msgid "" "Maximum number of levels to recurse i.e. depth of links to follow. Default %" "default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:385 msgid "" "The maximum number of files to download. This only applies to files from <a " "href> tags. Default is %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:387 msgid "" "Minimum interval in seconds between consecutive fetches. Default is %default " "s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:389 msgid "" "The character encoding for the websites you are trying to download. The " "default is to try and guess the encoding." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:391 msgid "" "Only links that match this regular expression will be followed. This option " "can be specified multiple times, in which case as long as a link matches any " "one regexp, it will be followed. By default all links are followed." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:393 msgid "" "Any link that matches this regular expression will be ignored. This option " "can be specified multiple times, in which case as long as any regexp matches " @@ -2493,11 +2501,11 @@ msgid "" "applied first." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:395 msgid "Do not download CSS stylesheets." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:396 msgid "Show detailed output information. Useful for debugging" msgstr "" @@ -2512,10 +2520,10 @@ msgstr "" #~ "font-weight:400; font-style:normal;\">\n" #~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-" #~ "right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href=" -#~ "\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " -#~ "text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</" -#~ "span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %" -#~ "1 by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></" +#~ "\"https://calibre.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " +#~ "text-decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</" +#~ "span></a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 " +#~ "by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></" #~ "body></html>" #~ msgstr "" #~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/" @@ -2525,10 +2533,10 @@ msgstr "" #~ "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;\">Para más información " -#~ "visite (en inglés) <a href=\"https://libprs500.kovidgoyal.net/wiki/" +#~ "visite (en inglés) <a href=\"https://calibre.kovidgoyal.net/wiki/" #~ "WikiStart#Usage\"><span style=\" text-decoration: underline; color:" -#~ "#0000ff;\">libprs500.kovidgoyal.net</span></a><br /><br /><span style=\" " -#~ "font-weight:600;\">libprs500</span>: %1 de <span style=\" font-weight:600;" +#~ "#0000ff;\">calibre.kovidgoyal.net</span></a><br /><br /><span style=\" " +#~ "font-weight:600;\">calibre</span>: %1 de <span style=\" font-weight:600;" #~ "\">Kovid Goyal</span> %2<br />%3</p></body></html>" #~ msgid "Not yet implemented." diff --git a/src/libprs500/translations/fr.po b/src/calibre/translations/fr.po similarity index 51% rename from src/libprs500/translations/fr.po rename to src/calibre/translations/fr.po index 0b775cc501..e15cf1a50e 100644 --- a/src/libprs500/translations/fr.po +++ b/src/calibre/translations/fr.po @@ -4,8 +4,8 @@ # msgid "" msgstr "" -"Project-Id-Version: libprs500 0.4.22\n" -"POT-Creation-Date: 2008-04-04 09:07+PDT\n" +"Project-Id-Version: calibre 0.4.22\n" +"POT-Creation-Date: 2008-04-07 16:11+IST\n" "PO-Revision-Date: 2008-01-20 09:59+0100\n" "Last-Translator: FixB <fix.bornes@free.fr>\n" "Language-Team: fr\n" @@ -14,19 +14,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:85 +#: /home/kovid/work/calibre/src/calibre/__init__.py:85 msgid "%sUsage%s: %s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:122 +#: /home/kovid/work/calibre/src/calibre/__init__.py:122 msgid "Created by " msgstr "Créé par" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:88 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:88 msgid "Set the title. Default: filename." msgstr "Indiquer le titre. Par défaut : nom du fichier." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:90 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:90 msgid "" "Set the author(s). Multiple authors should be set as a comma separated list. " "Default: %default" @@ -34,38 +34,38 @@ msgstr "" "Définir le(s) auteur(s). Si plusieurs auteurs, les séparer d'une virgule. " "Par défaut : %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:91 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:630 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:91 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:630 msgid "Unknown" msgstr "Inconnu" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:93 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:93 msgid "Set the comment." msgstr "Définir le commentaire" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:95 msgid "Set the category" msgstr "Définir la catégorie" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:97 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:97 msgid "Sort key for the title" msgstr "Clé de tri pour le titre" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:99 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:99 msgid "Sort key for the author" msgstr "Clé de tri pour l'auteur" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:101 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:16 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:341 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:16 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:341 msgid "Publisher" msgstr "Editeur" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:103 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:103 msgid "Path to file containing image to be used as cover" msgstr "Chemin du fichier contenant l'image à utiliser comme couverture" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:105 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:105 msgid "" "If there is a cover graphic detected in the source file, use that instead of " "the specified cover." @@ -73,11 +73,11 @@ msgstr "" "Si une couverture est déctectée dans le fichier source, utilise cette image " "plutôt que l'image spécifiée." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:108 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:108 msgid "Output file name. Default is derived from input filename" msgstr "Nom du fichier résultat. Basé par défaut sur le fichier d'entrée" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:110 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:110 msgid "" "Render HTML tables as blocks of text instead of actual tables. This is " "neccessary if the HTML contains very large or complex tables." @@ -86,7 +86,7 @@ msgstr "" "véritables tables. Cela peut être nécessaire si le HTML contient des tables " "trop grosses ou complexes ." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:113 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:113 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 " @@ -96,25 +96,25 @@ msgstr "" "retaillées en fonction. Cette option remplace l'ancienne option --font-" "delta. Pour utiliser --font-delta, saisir 0." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:115 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:115 msgid "Enable autorotation of images that are wider than the screen width." msgstr "" "Permet l'autorotation des images qui sont plus larges que la largeur de " "l'écran." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:118 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:118 msgid "Set the space between words in pts. Default is %default" msgstr "Définit les epsaces entre les mots en pts. Par défaut : %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:120 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:120 msgid "Separate paragraphs by blank lines." msgstr "Sépare les paragraphe avec des lignes blanches." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:122 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:122 msgid "Add a header to all the pages with title and author." msgstr "Rajoute une en-tête à toutes les pages, avec le titre et l'auteur." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:124 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:124 msgid "" "Set the format of the header. %a is replaced by the author and %t by the " "title. Default is %default" @@ -122,7 +122,7 @@ msgstr "" "Définit le format de l'en-tête de page. %a est remplacé par l'auteur et %t " "par le titre. Par défaut : %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:126 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:126 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." @@ -130,7 +130,7 @@ msgstr "" "Surcharge le CSS. Peut être soit un chemin vers une feuille de styles CC ou " "une chaîne. Si c'est une chaîne, elle est interprétée comme du CSS. " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:128 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:128 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 " @@ -140,13 +140,13 @@ msgstr "" "les fichiers HTML sont ajoutés au LRF. Le fichier .opt doit être dans le " "même répertoire que les fichiers HTML de base." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:130 msgid "" "Minimum paragraph indent (the indent of the first line of a paragraph) in " "pts. Default: %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:132 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 " @@ -156,13 +156,13 @@ msgstr "" "entre lignes de FONT_DELTA points. FONT_DELTA peut-être un réel. Si " "FONT_DELTA est négatif, la taille de la police est réduite." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:137 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:137 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:144 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:144 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 " @@ -172,23 +172,23 @@ msgstr "" "paramètres comme la résolution et la taille de l'écran du lecteur. Par " "défaut : %s Profils supportés : " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:150 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:150 msgid "Left margin of page. Default is %default px." msgstr "La marge de gauche. Par défaut : %default points." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:152 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:152 msgid "Right margin of page. Default is %default px." msgstr "La marge de droite. Par défaut : %default points." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:154 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:154 msgid "Top margin of page. Default is %default px." msgstr "La marge de haut de page. Par défaut : %default points." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:156 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:156 msgid "Bottom margin of page. Default is %default px." msgstr "La marge de bas de page. Par défaut : %default points." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:160 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:160 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 " @@ -198,7 +198,7 @@ msgstr "" "indique qu'aucun lien ne sera traité. Une valeur négative indique que les " "tags <a> sont ignorés." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:164 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:164 msgid "" "A regular expression. <a> tags whoose href matches will be ignored. Defaults " "to %default" @@ -206,14 +206,14 @@ msgstr "" "Une expression régulière. Les tags <a> qui respectent cette expression " "seront ignorés. Par défaut : %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:169 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:169 msgid "" "Prevent the automatic insertion of page breaks before detected chapters." msgstr "" "Empêche l'insertion automatique d'un saut de page avant chaque chapitre " "détecté." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:173 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:173 msgid "" "The regular expression used to detect chapter titles. It is searched for in " "heading tags (h1-h6). Defaults to %default" @@ -222,7 +222,7 @@ msgstr "" "expression rest recherchée dans les tags d'en-têtes (h1-h6). Par défaut : %" "default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:176 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:176 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 " @@ -241,14 +241,14 @@ msgstr "" "page. De ce fait, cette option est ignorée si la page courante a peu " "d'éléments." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:186 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:186 msgid "" "Force a page break before tags whoose names match this regular expression." msgstr "" "Impose un saut de page avant chaque tags dont le nom respecte cette " "expression régulière." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:188 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:188 msgid "" "Force a page break before an element having the specified attribute. The " "format for this option is tagname regexp,attribute name,attribute value " @@ -261,12 +261,12 @@ msgstr "" "classe \"chapter\" il faudrait saisir : \"h\\d,class,chapter\". Par défaut : " "%default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:191 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:191 msgid "Preprocess Baen HTML files to improve generated LRF." msgstr "" "Préprocesse les fichiers HTML Bean pour améliorer le fichier LRF généré." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:193 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:193 msgid "" "You must add this option if processing files generated by pdftohtml, " "otherwise conversion will fail." @@ -274,11 +274,11 @@ msgstr "" "Vous devez utiliser cette option pour traiter des fichiers générés par " "pdftohtml, sinon la conversion échouera." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:195 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:195 msgid "Use this option on html0 files from Book Designer." msgstr "Utilisez cette option sur des fichiers html0 venant de Book Designer." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:198 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:198 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 " @@ -292,27 +292,27 @@ msgstr "" "Chaque définition de famille est de la forme : \"chemin du répertoir, famille" "\" Par exemple : --serif-family \"%s, Times New Roman\"" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:207 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:207 msgid "The serif family of fonts to embed" msgstr "La famille de police serif à inclure" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:210 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:210 msgid "The sans-serif family of fonts to embed" msgstr "La famille de police sans-serif à inclure" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:213 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:213 msgid "The monospace family of fonts to embed" msgstr "La famille de police monospace à inclure" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:217 msgid "Be verbose while processing" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:219 msgid "Convert to LRS" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " "option if you are on a memory constrained machine." @@ -321,7 +321,7 @@ msgstr "" "long. N'utilisez cette option que si vous avez des problèmes de mémoire " "disponible." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:223 msgid "" "Specify the character encoding of the source file. If the output LRF file " "contains strange characters, try changing this option. A common encoding for " @@ -329,7 +329,7 @@ msgid "" "default is to try and guess the encoding." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:143 msgid "" "any2lrf [options] myfile\n" "\n" @@ -340,11 +340,11 @@ msgid "" " " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:158 msgid "No file to convert specified." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/epub/convert_from.py:17 msgid "" "Usage: %prog [options] mybook.epub\n" " \n" @@ -352,102 +352,115 @@ msgid "" "%prog converts mybook.epub to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:18 +msgid "" +"%prog [options] mybook.fb2\n" +"\n" +"\n" +"%prog converts mybook.fb2 to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:23 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:22 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:22 msgid "Options to control the behavior of html2lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:44 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:44 msgid "Fetching of recipe failed: " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:302 msgid "\tBook Designer file detected." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:304 msgid "\tParsing HTML..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:326 msgid "\tBaen file detected. Re-parsing..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:341 msgid "Written preprocessed HTML to " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:352 msgid "Processing %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:366 msgid "\tConverting to BBeB..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:504 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:511 msgid "Could not parse file: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:523 msgid "Failed to parse link %s %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:566 msgid "Cannot add link %s to TOC" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:908 msgid "Unable to process image %s. Error: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:946 msgid "Unable to process interlaced PNG %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:961 msgid "" "Could not process image: %s\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1651 msgid "An error occurred while processing a table: %s. Ignoring table markup." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1653 msgid "" "Bad table:\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1675 msgid "Table has cell that is too large" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1703 msgid "" "You have to save the website %s as an html file first and then run html2lrf " "on it." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1741 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1743 msgid "Could not read cover image: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1744 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1746 msgid "Cannot read from: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1873 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1875 msgid "Failed to process opf file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1879 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1881 msgid "" "Usage: %prog [options] mybook.html\n" "\n" @@ -458,7 +471,7 @@ msgid "" "convert a whole tree of HTML files." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lit/convert_from.py:19 msgid "" "Usage: %prog [options] mybook.lit\n" "\n" @@ -466,26 +479,26 @@ msgid "" "%prog converts mybook.lit to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:254 msgid "" "%prog [options] file.lrs\n" "Compile an LRS file into an LRF file." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:255 msgid "Path to output file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:113 msgid "Verbose processing" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:259 msgid "Convert LRS to LRS, useful for debugging." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:541 msgid "" "%prog [options] mybook.lrf\n" "\n" @@ -494,51 +507,51 @@ msgid "" "\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:548 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:18 msgid "Set the book title" msgstr "Définit le titre du livre" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:550 msgid "Set sort key for the title" msgstr "Définit la clé de tri pour le titre" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:552 msgid "Set the author" msgstr "Définit l'auteur" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:554 msgid "Set sort key for the author" msgstr "Définit la clef de tri pour l'auteur" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:556 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "La catégorie à laquelle le livre appartient. Exemple : Histoire" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" msgstr "Chemin d'une image qui sera utilisée comme vignette pour ces fichiers" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:562 msgid "Path to a txt file containing the comment to be stored in the lrf file." msgstr "" "Chemin d'un fichier texte contenant les commentaires qui seront inclus dans " "le fichier lrf." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "Extrait la vignette du fichier LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "Définit l'ID du livre" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "Je ne sais pas à quoi cela sert" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/mobi/convert_from.py:43 msgid "" "Usage: %prog [options] mybook.mobi|prc\n" "\n" @@ -546,29 +559,29 @@ msgid "" "%prog converts mybook.mobi to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:132 msgid "" "%prog book.lrf\n" "Convert an LRF file into an LRS (XML UTF-8 encoded) file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:133 msgid "Output LRS file" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:151 msgid "Parsing LRF..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:154 msgid "Creating XML..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:156 msgid "LRS written to " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/convert_from.py:47 msgid "" "%prog [options] mybook.pdf\n" "\n" @@ -576,21 +589,21 @@ msgid "" "%prog converts mybook.pdf to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:402 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:404 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:404 msgid "Be more verbose." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:416 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:416 msgid "You must specify a single PDF file." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/rtf/convert_from.py:20 msgid "" "%prog [options] mybook.rtf\n" "\n" @@ -598,7 +611,7 @@ msgid "" "%prog converts mybook.rtf to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:17 msgid "" "%prog [options] mybook.txt\n" "\n" @@ -606,27 +619,23 @@ msgid "" "%prog converts mybook.txt to mybook.lrf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 -msgid "Print generated HTML to stdout and quit." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:20 msgid "Set the authors" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:24 msgid "Set the comment" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 msgid "Usage:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 msgid "mybook.epub" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:95 msgid "" "\n" "%prog [options] key\n" @@ -640,23 +649,23 @@ msgid "" "\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:106 msgid "The ISBN ID of the book you want metadata for." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:108 msgid "The author whoose book to search for." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:110 msgid "The title of the book to search for." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:112 msgid "The publisher of the book to search for." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:46 msgid "" "Could not fetch cover as server is experiencing high load. Please try again " "later." @@ -664,15 +673,15 @@ msgstr "" "L'image de couverture n'a pas pu être récupérée à cause de problèmes de " "connexion. Veuillez réessayer ultérieurement." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:47 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:47 msgid " not found." msgstr " pas trouvé." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:50 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:50 msgid "Server error. Try again later." msgstr "Erreur Serveur. Veuillez essayer ultérieurement." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:59 msgid "" "\n" "%prog [options] ISBN\n" @@ -680,189 +689,189 @@ msgid "" "Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:746 msgid "Usage: %s file.lit" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:753 msgid "Cover saved to" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:39 msgid "Usage: pdf-meta file.pdf" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:40 msgid "No filename specified." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:297 msgid "%prog [options] myebook.mobi" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:299 msgid "Output directory. Defaults to current directory." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:318 msgid "Raw MOBI HTML saved in" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:320 msgid "OEB ebook created in" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Choisir le format" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:62 msgid "TextLabel" msgstr "TextLabel" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 msgid "<br>Must be a directory." msgstr "<br>Doit être un répertoire." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 msgid "Invalid database location " msgstr "Chemin de la database invalide" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 msgid "Invalid database location" msgstr "Chemin de la database invalide" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 msgid "Invalid database location.<br>Cannot write to " msgstr "Chemin de la database invalide.<br>Erreur en écriture" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 msgid "Compacting database. This may take a while." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 msgid "Compacting..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:216 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:279 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:216 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:279 msgid "Configuration" msgstr "Configuration" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:220 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:220 msgid "Basic" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:224 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:224 msgid "Advanced" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:226 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:226 msgid "&Location of books database (library1.db)" msgstr "&Emplacement de la base de données (library1.db)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:227 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:227 msgid "Browse for the new database location" msgstr "Choisir un nouvel emplacement pour la base de données" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:238 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:610 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:320 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:329 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:331 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:335 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:144 -#: /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:235 -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:188 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:189 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:190 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:272 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:278 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:280 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:610 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:320 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:329 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:331 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:335 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:153 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:185 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:186 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:187 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:188 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:189 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:190 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:272 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:278 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:280 msgid "..." msgstr "..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:229 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:229 msgid "Use &Roman numerals for series number" msgstr "Utilisation de chiffres romains pour les numéro de séries" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:230 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:230 msgid "Default network &timeout:" msgstr "&Timeout par défaut pour les connexions réseau :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:231 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:231 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:232 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:232 msgid " seconds" msgstr " secondes" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:233 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:233 msgid "&Priority for conversion jobs:" msgstr "&Priorité pour les travaux de conversion :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:234 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:234 msgid "Frequently used directories" msgstr "Répertoires utilisés fréquemment" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:235 msgid "Add a directory to the frequently used directories list" msgstr "Ajouter un répetoire à la liste des répertoires utilisés fréquemment" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:237 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:237 msgid "Remove a directory from the frequently used directories list" msgstr "Supprime un répetoire de la liste des répertoires utilisés fréquemment" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:239 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:239 msgid "Select visible &columns in library view" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:240 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:240 msgid "Free unused diskspace from the database" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:241 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:241 msgid "&Compact database" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:242 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:242 msgid "&Metadata from file name" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/conversion_error_ui.py:37 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/conversion_error_ui.py:37 msgid "ERROR" msgstr "ERREUR" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:101 msgid "Cannot connect" msgstr "Impossible de se connecter" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:102 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:102 msgid "You must specify a valid access key for isbndb.com" msgstr "Vous devez spécifier une clef d'accès valide à isbndb.com" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:89 msgid "Fetch metadata" msgstr "Récupération des metadata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:90 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:90 msgid "Fetching metadata for <b>%1</b>" msgstr "Récupération des metadata pour <b>%1</b>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:91 +#: /home/kovid/work/calibre/src/calibre/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." @@ -870,84 +879,84 @@ msgstr "" "Enregistrez-vous gratuitement sur <a href=\"http://www.isbndb.com\">ISBNdb." "com</a> pour obtenir une clef d'accès (access key)." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:92 msgid "&Access Key;" msgstr "&Access Key;" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:93 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:93 msgid "Fetch" msgstr "Récupère" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:94 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:94 msgid "Matches" msgstr "Résultats correspondants" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:95 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:95 msgid "Select the book that most closely matches your copy from the list below" msgstr "" "Sélectionnez le livre qui correspond le mieux au votre dans la liste ci-" "dessous." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/job_view_ui.py:30 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/job_view_ui.py:30 msgid "Details of job" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:39 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:39 msgid "Active Jobs" msgstr "Exécutions en cours" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:40 msgid "&Stop selected job" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:81 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:81 msgid "No available formats" msgstr "Aucun format disponible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:82 msgid "Cannot convert %s as this book has no supported formats" msgstr "" "Conversion du livre %s impossible parcequ'il ne dispose d'aucun format " "supporté" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:86 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:86 msgid "Choose the format to convert into LRF" msgstr "Choix du format de conversion vers LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:94 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:94 msgid "Convert %s to LRF" msgstr "Conversion de %s en LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:97 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:97 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:149 msgid "Set conversion defaults" msgstr "Définir les paramètres par défaut de conversion" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:163 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:163 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:43 msgid "Cannot read" msgstr "Impossible de lire" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:164 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:44 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:164 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:44 msgid "You do not have permission to read the file: " msgstr "Vous n'avez pas les permissions nécessaires pour lire ce fichier:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:172 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:52 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:172 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:52 msgid "Error reading file" msgstr "Erreur à la lecture du fichier" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:173 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:173 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:53 msgid "<p>There was an error reading from file: <br /><b>" msgstr "<p>Il y a eu une erreur à la lecture du fichier : <br /><b>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:179 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:179 msgid " is not a valid picture" msgstr " n'est pas une image vailde" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:245 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:245 msgid "" "Preprocess the file before converting to LRF. This is useful if you know " "that the file is from a specific source. Known sources:" @@ -955,23 +964,23 @@ msgstr "" "Pré-processe le fichier avant la conversion vers le format LRF. Ceci est " "utile si vous connaissez l'origine du fichiers. Origines connues :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:246 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:246 msgid "<ol><li><b>baen</b> - Books from BAEN Publishers</li>" msgstr "<ol><li><b>baen</b> -Livres des éditions BAEN </li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:247 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:247 msgid "" "<li><b>pdftohtml</b> - HTML files that are the output of the program " "pdftohtml</li>" msgstr "" "<li><b>pdftohtml</b> - fichiers HTML générés par le programme pdftohtml</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:248 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:248 msgid "<li><b>book-designer</b> - HTML0 files from Book Designer</li>" msgstr "" "<li><b>book-designer</b> - Fichiers HTML0 générés avec Book Designer</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 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." @@ -979,12 +988,12 @@ msgstr "" "Définit les metadata comme le titre et l'auteur du livre.<p>Les metadata " "seront modifiées dans la base de données et dans le fichier LRF généré." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:592 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:592 msgid "Metadata" msgstr "Metadata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 msgid "" "Adjust the look of the generated LRF file by specifying things like font " "sizes and the spacing between words." @@ -992,12 +1001,12 @@ msgstr "" "Ajuste la présentation du fichier LRF généré en définissant des paramètres " "tels que la taille des polices et l'espacement entre les mots." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:596 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:596 msgid "Look & Feel" msgstr "Présentation" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 msgid "" "Specify the page settings like margins and the screen size of the target " "device." @@ -1005,79 +1014,79 @@ msgstr "" "Définit les paramètres de la pages tels que les marges et la taille de " "l'écran du lecteur cible." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:600 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:600 msgid "Page Setup" msgstr "Mise en page" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 msgid "Fine tune the detection of chapter and section headings." msgstr "Peaufiner la détection des chapitres et des en-têtes de section." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:604 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:604 msgid "Chapter Detection" msgstr "Détection des chapitres" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:292 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:292 msgid "<font color=\"gray\">No help available</font>" msgstr "<font color=\"gray\">Aucune aide n'est disponible</font>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:396 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:396 msgid "Bulk convert ebooks to LRF" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:587 msgid "Convert to LRF" msgstr "Convertir en LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:588 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:588 msgid "Category" msgstr "Catégorie" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:606 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:606 msgid "Options" msgstr "Options" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:607 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:332 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:607 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:332 msgid "Book Cover" msgstr "Couverture du livre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:608 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:333 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:608 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:333 msgid "Change &cover image:" msgstr "Modifie l'image &cover :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:609 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:334 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:609 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:334 msgid "Browse for an image to use as the cover of this book." msgstr "Rechercher une image à utiliser en tant que couverture du livre." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:611 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:611 msgid "Use cover from &source file" msgstr "Utilise l'image de couverture du fichier &source" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:612 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:300 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:612 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:300 msgid "&Title: " msgstr "&Titre :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:613 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:301 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:613 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:301 msgid "Change the title of this book" msgstr "Modifie le titre du livre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:614 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:129 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:302 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:614 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:129 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:302 msgid "&Author(s): " msgstr "&Auteurs :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:615 -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:615 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:617 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:303 msgid "" "Change the author(s) of this book. Multiple authors should be separated by a " "comma" @@ -1085,30 +1094,30 @@ msgstr "" "Modifie les auteurs du livres. Si plusieurs auteurs, les séparer avec des " "virgules." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:616 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:616 msgid "Author So&rt:" msgstr "T&ri de l'auteur :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:618 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:137 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:618 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:137 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:310 msgid "&Publisher: " msgstr "&Editeur :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:619 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:138 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:311 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:619 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:138 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:311 msgid "Change the publisher of this book" msgstr "Modifie l'éditeur du livre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:620 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:620 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:312 msgid "Ta&gs: " msgstr "Ta&gs :" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:621 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:140 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1116,173 +1125,173 @@ msgstr "" "Tags caractérisant le livre, particulièrement utile pour la recherche. <br> " "<br> Cela peut être n'importe quels mots, séparés par des virgules." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:622 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:143 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:622 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:316 msgid "&Series:" msgstr "&Séries :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:623 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:624 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:144 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:145 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:317 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:318 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:623 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:624 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:317 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:318 msgid "List of known series. You can add new series." msgstr "Liste de séries connues. Vous pouvez ajouter de nouvelles séries." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:625 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:626 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:321 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:322 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:625 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:321 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:322 msgid "Series index." msgstr "Index de séries" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:627 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:323 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:627 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:323 msgid "Book " msgstr "Livre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:628 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:325 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:223 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:325 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:223 msgid "Comments" msgstr "Commentaires" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:629 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:629 msgid "Base &font size:" msgstr "Taille de &police par défaut :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:630 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:637 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:639 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:630 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:637 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:639 msgid " pts" msgstr " pts" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:631 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:631 msgid "Embedded Fonts" msgstr "Polices inclues" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:632 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:632 msgid "&Serif:" msgstr "&Serif :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:633 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:633 msgid "S&ans-serif:" msgstr "S&ans-serif :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:634 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:634 msgid "&Monospace:" msgstr "&Monospace :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:635 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:635 msgid "Source en&coding:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:636 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:636 msgid "Minimum &indent:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:638 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:638 msgid "&Word spacing:" msgstr "Espacement entre &mots :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:640 msgid "Enable auto &rotation of images" msgstr "Active l'auto &rotation des images" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:641 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:641 msgid "Insert &blank lines between paragraphs" msgstr "Insère des lignes &blanches entre les paragraphes" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:642 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:642 msgid "Ignore &tables" msgstr "Ignore les &tables" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:643 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:643 msgid "Ignore &colors" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:644 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:644 msgid "&Preprocess:" msgstr "&Preprocess :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:645 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:645 msgid "Header" msgstr "En-têtre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:646 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:646 msgid "&Show header" msgstr "&Affiche l'en-tête" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:647 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:647 msgid "&Header format:" msgstr "Format de l'&en-tête" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:648 msgid "Override<br>CSS" msgstr "Surcharge <br> CSS" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:649 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:649 msgid "&Profile:" msgstr "&Profil :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:650 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:650 msgid "&Left Margin:" msgstr "Marge &Gauche :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:651 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:653 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:655 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:657 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:651 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:653 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:655 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:657 msgid " px" msgstr " px" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:652 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:652 msgid "&Right Margin:" msgstr "Marge &Droite :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:654 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:654 msgid "&Top Margin:" msgstr "Marge &Haute :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:656 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:656 msgid "&Bottom Margin:" msgstr "Marge &Basse :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:658 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:658 msgid "Title based detection" msgstr "Détection basée sur les titres" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:659 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:659 msgid "&Disable chapter detection" msgstr "&Désactive la détection de chapitres" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:660 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:660 msgid "&Regular expression:" msgstr "Expression &Régulière :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:661 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:661 msgid "Tag based detection" msgstr "Détection basée sur des tags" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:662 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:662 msgid "&Page break before tag:" msgstr "Saut de &page avant le tag:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:663 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:663 msgid "&Force page break before tag:" msgstr "&Force un saut de page avant le tag:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:664 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:664 msgid "Force page break before &attribute:" msgstr "Force un saut de page avant l'&attribut :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:665 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:665 msgid "Help on item" msgstr "Aide" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:666 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:666 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1294,22 +1303,22 @@ msgid "" "family:'Sans Serif'; font-size:9pt;\"></p></body></html>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:127 msgid "Edit Meta information" msgstr "Editer les informations Metadata" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:128 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:299 msgid "Meta information" msgstr "Informations (metadata)" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:304 msgid "Author S&ort: " msgstr "Clé de tr&i de l'auteur :" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:132 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1317,36 +1326,36 @@ msgstr "" "Définit comment l'auteur de ce livre doit être classé. Par exemple, Charles " "Dickens peut être classé comme Dickens, Charles." -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:306 msgid "&Rating:" msgstr "&Note :" -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:308 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:135 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:307 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:308 msgid "Rating of this book. 0-5 stars" msgstr "Note de ce livre. de 0 à 5 étoiles" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:136 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:309 msgid " stars" msgstr " étoiles" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:139 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:139 msgid "Add Ta&gs: " msgstr "Ajout de Ta&gs :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:141 msgid "&Remove tags:" msgstr "&Supprime des mots-clefs :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:142 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:142 msgid "Comma separated list of tags to remove from the books. " msgstr "Liste de mots-clefs séparés par des virgules à retirer des livres." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:224 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:224 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> " @@ -1356,171 +1365,171 @@ msgstr "" "<b>LibraryThing.com</b>. <br/>Si vous n'en avez pas, vous pouvez <a " "href='http://www.librarything.com'>y créer un compte </a> gratuitement !</p>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:254 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 msgid "<b>Could not fetch cover.</b><br/>" msgstr "<b>Erreur à la récupération de l'image de couverture.</b><br/>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:254 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 msgid "Could not fetch cover" msgstr "Erreur à la récupération de l'image de couverture" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 msgid "Cannot fetch cover" msgstr "Erreur à la récupération de l'image de couverture" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 msgid "You must specify the ISBN identifier for this book." msgstr "Vous devez fournir l'identifiant ISBN de ce livre." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:298 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:298 msgid "Edit Meta Information" msgstr "Edition des metadata" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:314 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:315 msgid "Open Tag Editor" msgstr "Ouvre l'éditeur de mots-clefs" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:319 +#: /home/kovid/work/calibre/src/calibre/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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:324 msgid "IS&BN:" msgstr "I&SBN :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:326 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:326 msgid "Fetch metadata from server" msgstr "Récupération des metadata depuis le serveur" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:327 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:327 msgid "Available Formats" msgstr "Formats disponibles" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:328 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:328 msgid "Add a new format for this book to the database" msgstr "Ajout d'un nouveau format dans la base de données pour ce livre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:330 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:330 msgid "Remove the selected formats for this book from the database." msgstr "Retire les formats sélectionnés de ce livre de la base de données." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:336 msgid "Fetch cover image from server" msgstr "Récupération de l'image de couverture depuis le serveur" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:337 msgid "" "Change the username and/or password for your account at LibraryThing.com" msgstr "" "Modifie le nom d'utilisateur et/ou le mot de passe de votre compte à " "LibraryThing.com" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:338 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:338 msgid "Change password" msgstr "Modifie le mot de passe" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:61 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:61 msgid "Password needed" msgstr "Mot de passe nécessaire" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:63 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:63 msgid "&Username:" msgstr "Nom de l'&utilisateur :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:64 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:64 msgid "&Password:" msgstr "Mot de &passe :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:65 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:65 msgid "&Show password" msgstr "&Affiche le mot de passe" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:14 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:336 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:700 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:14 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:700 msgid "Title" msgstr "Titre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:15 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:15 msgid "Author" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:17 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:17 msgid "Tag" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:18 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:18 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:343 msgid "Series" msgstr "Séries" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:19 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:634 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:19 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:634 msgid "Format" msgstr "Format" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:20 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:20 msgid "Any" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:40 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:110 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:110 msgid "Form" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:41 msgid "contains" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:42 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:42 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 +#: /home/kovid/work/calibre/src/calibre/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." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:44 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:44 msgid "Negate" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:80 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:80 msgid "Advanced Search" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:81 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:81 msgid "Match a&ll of the following criteria" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:82 msgid "Match a&ny of the following criteria" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:83 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:83 msgid "Search criteria" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:84 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:84 msgid "More" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:85 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:85 msgid "Fewer" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:141 msgid "Tag Editor" msgstr "Editeur de Mots-Clefs" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:142 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:142 msgid "A&vailable tags" msgstr "Mots-clefs disponibles" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1528,103 +1537,103 @@ msgstr "" "Supprime un mot-clef de la base de données. Cette opération va retirer ce " "mot-clef de tous les livres et le supprimer de la base de données." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:145 msgid "Apply tag to current book" msgstr "Applique le mot-clef au livre en cours." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:147 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:147 msgid "A&pplied tags" msgstr "Mots-clefs" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:148 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:148 msgid "Unapply (remove) tag from current book" msgstr "Enlève le mot-clef du livre en cours" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:150 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:150 msgid "&Add tag:" msgstr "Ajoute mot-clef" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:151 +#: /home/kovid/work/calibre/src/calibre/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." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:152 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.py:48 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:58 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:48 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:58 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:222 msgid "Switch to Advanced mode" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:53 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:61 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:61 msgid "Switch to Basic mode" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:71 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:71 msgid "Feed must have a title" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:72 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:72 msgid "The feed must have a title" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:76 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:76 msgid "Feed must have a URL" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:77 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:77 msgid "The feed %s must have a URL" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:82 msgid "Already exists" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:83 msgid "This feed has already been added to the recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:133 msgid "Invalid input" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:125 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:134 msgid "<p>Could not create recipe. Error:<br>%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:140 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:140 msgid "Replace recipe?" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:141 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:218 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:218 msgid "Add custom news source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:219 msgid "Available user recipes" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:220 msgid "Add/Update &recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:221 msgid "&Remove recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:223 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1638,66 +1647,66 @@ msgid "" "body></html>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:227 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:227 msgid "Recipe &title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:228 msgid "&Oldest article:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:229 msgid "The oldest article to download" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:230 msgid " days" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:231 msgid "&Max. number of articles per feed:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:232 msgid "Maximum number of articles to download per feed." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:233 msgid "Feeds in recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:234 msgid "Remove feed from recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:239 msgid "Add feed to recipe" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:237 msgid "&Feed title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:238 msgid "Feed &URL:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:240 msgid "&Add feed" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:241 msgid "" "For help with writing advanced news recipes, please visit <a href=\"http://" -"libprs500.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" +"calibre.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:242 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:242 msgid "Recipe source code (python)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:111 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:111 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." @@ -1706,306 +1715,306 @@ msgid "" "on a few sample filenames." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:112 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:112 msgid "Regular &expression" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:113 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:113 msgid "&Test" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:114 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:114 msgid "File &name:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:115 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:115 msgid "Test" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:116 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:116 msgid "Title:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:117 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:117 msgid "Regular expression group name (?P<title>)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:118 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:121 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:127 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:41 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:45 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:50 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:55 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:118 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:121 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:45 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:50 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:55 msgid "No match" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:119 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:119 msgid "Authors:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:120 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:120 msgid "Regular expression group name (?P<authors>)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:122 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:122 msgid "Series:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:123 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:123 msgid "Regular expression group name (?P<series>)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:125 msgid "Series index:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:126 msgid "Regular expression group name (?P<series_index>)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:279 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:279 msgid "Job" msgstr "Travaux" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:280 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:280 msgid "Status" msgstr "Statut" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:281 msgid "Progress" msgstr "Progression" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:282 msgid "Running time" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 msgid "Error" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 msgid "Finished" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 msgid "Waiting" msgstr "En attente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 msgid "Working" msgstr "En cours" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:315 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:315 msgid "Unavailable" msgstr "Indisponible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:343 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:347 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:351 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:347 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:351 msgid "Cannot kill job" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:344 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:344 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:348 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:348 msgid "Cannot kill already completed jobs." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:352 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:352 msgid "Cannot kill waiting jobs." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:212 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:218 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:222 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:212 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:218 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:222 msgid "None" msgstr "Aucun" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:213 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:342 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:640 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:704 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:213 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:342 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:704 msgid "Tags" msgstr "Tags" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:219 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:219 msgid "Formats" msgstr "Formats" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 msgid "Book <font face=\"serif\">%s</font> of %s." msgstr "Livre <font face=\"serif\">%s</font> of %s." -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:328 msgid "Double click to <b>edit</b> me<br><br>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:701 msgid "Author(s)" msgstr "Auteur(s)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:338 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:702 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:338 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:702 msgid "Size (MB)" msgstr "Taille (MB)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:339 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:703 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:339 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:703 msgid "Date" msgstr "Date" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:340 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:340 msgid "Rating" msgstr "Note" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:635 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:635 msgid "Path" msgstr "Chemin" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:639 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:639 msgid "Timestamp" msgstr "Horodatage" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:739 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:739 msgid "Search (For Advanced Search click the button to the left)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:51 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:51 msgid "Configure Viewer" msgstr "Configuration du visualisateur" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:52 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:52 msgid "Use white background" msgstr "Utilise un arrière-plan blanc" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:53 msgid "Hyphenate" msgstr "Hyphenation" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:54 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:54 msgid "<b>Changes will only take affect after a restart." msgstr "" "<b>Les modifications ne seront prises en compte qu'après avoir relancé le " "programme." -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 msgid "<b>No matches</b> for the search phrase <i>%s</i> were found." msgstr "<b>Aucun résultat</b> pour la recherche <i>%s</i>." -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 msgid "No matches found" msgstr "Aucun résultat" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:184 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:184 msgid "LRF Viewer" msgstr "Visualisateur LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:191 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:191 msgid "Parsing LRF file" msgstr "Parse le fichier LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:192 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:192 msgid "Next Page" msgstr "Page suivante" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:193 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:193 msgid "Previous Page" msgstr "Page précédente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:194 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:194 msgid "Back" msgstr "Recule" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:195 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:195 msgid "Forward" msgstr "Avance" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:196 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:196 msgid "Next match" msgstr "Résultat suivant" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:197 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:197 msgid "Open ebook" msgstr "Ouvrir le livre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:198 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:198 msgid "Configure" msgstr "Configuration" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:72 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:72 msgid "Error communicating with device" msgstr "Erreur pendant la communication avec le lecteur électronique" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:102 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:102 msgid "Send to main memory" msgstr "Envoi vers la mémoire du lecteur" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:103 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:103 msgid "Send to storage card" msgstr "Envoi vers la carte mémoire" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:106 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106 msgid "Edit metadata individually" msgstr "Edition des metadata individuellement" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:107 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:107 msgid "Edit metadata in bulk" msgstr "Edition des metadata par lot" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:110 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:110 msgid "Add books from a single directory" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:111 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:111 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:112 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:112 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:126 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:289 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:289 msgid "Save to disk" msgstr "Enregistrer sur le disque" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:127 msgid "Save to disk in a single directory" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:130 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:292 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:292 msgid "View" msgstr "Visualiser" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:131 msgid "View specific format" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:146 msgid "Convert individually" msgstr "Convertion individuelle" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:147 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:147 msgid "Bulk convert" msgstr "Convertion par lot" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:260 msgid "Device database corrupted" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:261 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:261 msgid "" "\n" " <p>The database of books on the reader is corrupted. Try the " @@ -2021,8 +2030,8 @@ msgid "" " " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:313 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:379 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:313 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:379 msgid "" "<p>Books with the same title as the following already exist in the database. " "Add them anyway?<ul>" @@ -2030,88 +2039,88 @@ msgstr "" "<p>Des livres ayant le même titre existent déjà dans la base de données. Les " "ajouter quand même ?<ul>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:316 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:382 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:382 msgid "Duplicates found!" msgstr "Des doublons ont été détectés !" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:412 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:412 msgid "No space on device" msgstr "Le lecteur électronique n'a plus d'espace mémoire disponible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:413 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:413 msgid "<p>Cannot upload books to device there is no more free space available " msgstr "" "<p>Impossible d'envoyer les livres sur le lecteur : il n'y a plus assez " "d'espace mémoire disponible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 msgid "Cannot edit metadata" msgstr "Erreur à l'édition des metadat" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 msgid "No books selected" msgstr "Aucun livre sélectionné" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 msgid "Cannot save to disk" msgstr "Ne peut pas enregistrer sur le disque" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:626 msgid "Fetch news from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:628 msgid "Fetching news from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:638 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:638 msgid "News fetched. Uploading to device." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 msgid "Cannot convert" msgstr "Conversion impossible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 msgid "No book selected" msgstr "Aucun livre sélectionné" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:798 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:798 msgid "Cannot view" msgstr "Impossible de visualiser" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:773 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:803 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:773 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:803 msgid "Choose the format to view" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:799 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:799 msgid "%s has no available formats." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 msgid "Cannot configure" msgstr "Configuration impossible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 msgid "Cannot configure while there are running jobs." msgstr "Impossible de configurer pendant que des travaux sont en cours." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:863 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:863 msgid "Invalid database" msgstr "Base de données invalide" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:864 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:864 msgid "" "<p>An invalid database already exists at %s, delete it before trying to move " "the existing database.<br>Error: %s" @@ -2119,15 +2128,15 @@ msgstr "" "<p>Une base de données invalide existe déjà ici : %s, spprimez la avant " "d'essayer de déplacer la base de données existante.<br>Erreur : %s" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:872 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:872 msgid "Could not move database" msgstr "Déplacement de la base de données impossible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:922 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922 msgid "Error talking to device" msgstr "Erreur pendant la communication avec le lecteur électronique" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:923 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923 msgid "" "There was a temporary error talking to the device. Please unplug and " "reconnect the device and or reboot." @@ -2136,17 +2145,17 @@ msgstr "" "lecteur électronique. Veuillez déconnecter et reconnecter le lecteur " "électronique et redémarrer." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:1003 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1003 msgid "" "<span style=\"color:red; font-weight:bold\">Latest version: <a href=\"%s\">%" "s</a></span>" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:266 -msgid "libprs500" -msgstr "libprs500" +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:266 +msgid "calibre" +msgstr "calibre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:267 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:267 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -2155,26 +2164,25 @@ msgid "" "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>" +"\"http://calibre.kovidgoyal.net/user_manual\"><span style=\" text-" +"decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</span></" +"a><br /><br /><span style=\" font-weight:600;\">calibre</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 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:271 msgid "Advanced search" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:273 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:273 msgid "Alt+S" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:274 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:274 msgid "&Search:" msgstr "&Recherche :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:275 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:275 msgid "" "Search the list of books by title or author<br><br>Words separated by spaces " "are ANDed" @@ -2182,7 +2190,7 @@ msgstr "" "Recherche les livres par titre ou auteur <br><br>Recherche en ET pour les " "mots séparés par des espaces." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:276 +#: /home/kovid/work/calibre/src/calibre/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" @@ -2190,82 +2198,82 @@ msgstr "" "Recherche les livres par titre, auteur, éditeur, tags et commentaires " "<br><br>Recherche en ET pour les mots séparés par des espaces." -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:277 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:277 msgid "Reset Quick Search" msgstr "Réinitialisation de la recherche rapide" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:281 msgid "Add books" msgstr "Ajout d'un livre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:282 msgid "A" msgstr "A" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:284 msgid "Remove books" msgstr "Suppression du livre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:285 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:285 msgid "Del" msgstr "Suppression" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:286 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:286 msgid "Edit meta information" msgstr "Edition des metadata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:287 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:287 msgid "E" msgstr "E" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:288 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:288 msgid "Send to device" msgstr "Envoyer au lecteur" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:290 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:290 msgid "Fetch news" msgstr "Récupérer des News" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:291 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:291 msgid "Convert E-books" msgstr "Convertir des ebooks" -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:32 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:32 msgid "Add a custom news source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:53 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:79 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:79 msgid "Custom news sources" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:87 +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:87 msgid "Jobs:" msgstr "Travaux :" -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:96 +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:96 msgid "Click to see list of active jobs." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:34 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:34 msgid "Invalid regular expression" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:35 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:35 msgid "Invalid regular expression: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:86 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:86 msgid "Library" msgstr "Librairie" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:87 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:87 msgid "" "Reader\n" "%s available" @@ -2273,7 +2281,7 @@ msgstr "" "Lecteur \n" "%s disponible" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:88 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:88 msgid "" "Card\n" "%s available" @@ -2281,21 +2289,21 @@ msgstr "" "Carte\n" "%s disponible" -#: /home/kovid/work/libprs500/src/libprs500/parallel.py:114 +#: /home/kovid/work/calibre/src/calibre/parallel.py:114 msgid "Job killed by user" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:56 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:77 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:56 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:77 msgid "Unknown feed" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:115 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:115 msgid "Untitled article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:15 msgid "" "%%prog [options] ARG\n" "\n" @@ -2316,11 +2324,11 @@ msgid "" "%s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -2329,185 +2337,185 @@ msgid "" "recipe is used to download the feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:84 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:88 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:33 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:33 msgid "Unknown News Source" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:468 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:468 msgid "Download finished" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:470 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:470 msgid "Failed to download the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:472 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:478 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:472 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:478 msgid " from " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:476 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:476 msgid "Failed to download parts of the following articles:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:480 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:480 msgid "\tFailed links:" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:549 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:549 msgid "Could not fetch article. Run with --debug to see the reason" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:571 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:571 msgid "Got feeds from index page" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:575 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:575 msgid "Trying to download cover..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:625 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:625 msgid "Starting download [%d thread(s)]..." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:639 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:639 msgid "Feeds downloaded to %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:648 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:648 msgid "Could not download cover: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:653 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:653 msgid "Downloading cover from %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:688 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:688 msgid "Untitled Article" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:729 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:729 msgid "" "\n" "Downloaded article %s from %s\n" "%s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:735 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:735 msgid "Article downloaded: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:741 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:741 msgid "Failed to download article: %s from %s\n" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:746 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:746 msgid "Article download failed: %s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:761 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:761 msgid "Fetching feed" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:373 msgid "" "%prog URL\n" "\n" "Where URL is for example http://google.com" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:376 msgid "Base directory into which URL is saved. Default is %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:379 msgid "" "Timeout in seconds to wait for a response from the server. Default: %default " "s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:382 msgid "" "Maximum number of levels to recurse i.e. depth of links to follow. Default %" "default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:385 msgid "" "The maximum number of files to download. This only applies to files from <a " "href> tags. Default is %default" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:387 msgid "" "Minimum interval in seconds between consecutive fetches. Default is %default " "s" msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:389 msgid "" "The character encoding for the websites you are trying to download. The " "default is to try and guess the encoding." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:391 msgid "" "Only links that match this regular expression will be followed. This option " "can be specified multiple times, in which case as long as a link matches any " "one regexp, it will be followed. By default all links are followed." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:393 msgid "" "Any link that matches this regular expression will be ignored. This option " "can be specified multiple times, in which case as long as any regexp matches " @@ -2516,19 +2524,19 @@ msgid "" "applied first." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:395 msgid "Do not download CSS stylesheets." msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:396 msgid "Show detailed output information. Useful for debugging" msgstr "" #~ msgid "" -#~ "Set the default timeout for network fetches (i.e. anytime libprs500 foes " +#~ "Set the default timeout for network fetches (i.e. anytime calibre foes " #~ "out to the internet to get information)" #~ msgstr "" -#~ "Définit le délai maximum de connexion avant erreur lorsque libprs500 " +#~ "Définit le délai maximum de connexion avant erreur lorsque calibre " #~ "récupère des informations sur internet." #~ msgid "%s is not available in LRF format. Please convert it first." @@ -2542,10 +2550,10 @@ msgstr "" #~ "font-weight:400; font-style:normal;\">\n" #~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-" #~ "right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href=" -#~ "\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " -#~ "text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</" -#~ "span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %" -#~ "1 by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></" +#~ "\"https://calibre.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " +#~ "text-decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</" +#~ "span></a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 " +#~ "by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></" #~ "body></html>" #~ msgstr "" #~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/" @@ -2555,10 +2563,10 @@ msgstr "" #~ "font-weight:400; font-style:normal;\">\n" #~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-" #~ "right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href=" -#~ "\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " -#~ "text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</" -#~ "span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %" -#~ "1 by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></" +#~ "\"https://calibre.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " +#~ "text-decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</" +#~ "span></a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 " +#~ "by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></" #~ "body></html>" #~ msgid "Not yet implemented." diff --git a/src/libprs500/translations/it.po b/src/calibre/translations/it.po similarity index 56% rename from src/libprs500/translations/it.po rename to src/calibre/translations/it.po index cbb9dc1bae..e3370e0553 100644 --- a/src/libprs500/translations/it.po +++ b/src/calibre/translations/it.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: it\n" -"POT-Creation-Date: 2008-04-04 09:07+PDT\n" +"POT-Creation-Date: 2008-04-07 16:11+IST\n" "PO-Revision-Date: 16:44, 4/4/2008\n" "Last-Translator: Iacopo Benesperi <iacchi@iacchi.org>\n" "Language-Team: italiano\n" @@ -18,19 +18,19 @@ msgstr "" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:85 +#: /home/kovid/work/calibre/src/calibre/__init__.py:85 msgid "%sUsage%s: %s\n" msgstr "%sUso%s: %s\n" -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:122 +#: /home/kovid/work/calibre/src/calibre/__init__.py:122 msgid "Created by " msgstr "Creato da " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:88 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:88 msgid "Set the title. Default: filename." msgstr "Imposta il titolo. Predefinito: nome del file" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:90 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:90 msgid "" "Set the author(s). Multiple authors should be set as a comma separated list. " "Default: %default" @@ -38,38 +38,38 @@ msgstr "" "Imposta l'autore. Autori multipli devono essere separati da una virgola. " "Predefinito: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:91 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:630 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:91 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:630 msgid "Unknown" msgstr "Sconosciuto" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:93 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:93 msgid "Set the comment." msgstr "Imposta il commento" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:95 msgid "Set the category" msgstr "Imposta la categoria" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:97 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:97 msgid "Sort key for the title" msgstr "Chiave per la classificazione del titolo" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:99 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:99 msgid "Sort key for the author" msgstr "Chiave per la classificazione dell'autore" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:101 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:16 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:341 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:16 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:341 msgid "Publisher" msgstr "Editore" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:103 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:103 msgid "Path to file containing image to be used as cover" msgstr "Percorso al file contenente l'immagine da usare come copertina" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:105 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:105 msgid "" "If there is a cover graphic detected in the source file, use that instead of " "the specified cover." @@ -77,12 +77,12 @@ msgstr "" "Se esiste una copertina grafica individuata nel file di origine, usa quella " "invece della copertina specificata" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:108 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:108 msgid "Output file name. Default is derived from input filename" msgstr "" "Nome del file in uscita. Il nome predefinito è preso dal file in ingresso" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:110 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:110 msgid "" "Render HTML tables as blocks of text instead of actual tables. This is " "neccessary if the HTML contains very large or complex tables." @@ -91,7 +91,7 @@ msgstr "" "Questa opzione è necessaria se il file HTML contiene tabelle molto grandi o " "complesse" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:113 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:113 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 " @@ -102,27 +102,27 @@ msgstr "" "Questa opzione rende obsoleta l'opzione --font-delta e ha precedenza su " "quest'ultima. Per usare --font-delta, impostare questa a 0" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:115 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:115 msgid "Enable autorotation of images that are wider than the screen width." msgstr "" "Abilita la rotazione automatica delle immagini che sono più larghe dello " "schermo" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:118 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:118 msgid "Set the space between words in pts. Default is %default" msgstr "" "Imposta lo spazio tra le parole in punti. Il valore predefinito è %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:120 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:120 msgid "Separate paragraphs by blank lines." msgstr "Separa i paragrafi con linee bianche" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:122 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:122 msgid "Add a header to all the pages with title and author." msgstr "" "Aggiunge a tutte le pagine un'intestazione contenente il titolo e l'autore" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:124 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:124 msgid "" "Set the format of the header. %a is replaced by the author and %t by the " "title. Default is %default" @@ -130,7 +130,7 @@ msgstr "" "Imposta il formato dell'intestazione. %a verrà rimpiazzato dall'autore e %t " "dal titolo. L'impostazione predefinita è %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:126 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:126 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." @@ -138,7 +138,7 @@ msgstr "" "Sovrascrive il CSS. Può essere un percorso ad un foglio di stile CSS o una " "stringa. Se è una stringa, sarà interpretata come CSS" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:128 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:128 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 " @@ -148,7 +148,7 @@ msgstr "" "HTML devono essere aggiunti al file LRF. Il file OPF deve essere nella " "stessa cartella del file HTML principale" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:130 msgid "" "Minimum paragraph indent (the indent of the first line of a paragraph) in " "pts. Default: %default" @@ -156,7 +156,7 @@ msgstr "" "Indentazione minima paragrafo (l'indentazione della prima riga di un " "paragrafo) in pt. Predefinita: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:132 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 " @@ -166,7 +166,7 @@ msgstr "" "tra le linee di FONT_DELTA punti. FONT_DELTA può essere una frazione. Se " "FONT_DELTA è negativo, la grandezza dei caratteri verrà diminuita" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:137 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:137 msgid "" "Render all content as black on white instead of the colors specified by the " "HTML or CSS." @@ -174,7 +174,7 @@ msgstr "" "Trasforma tutto il contenuto in bianco e nero al posto dei colori " "specificati dall'HTML o dal CSS." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:144 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:144 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 " @@ -184,23 +184,23 @@ msgstr "" "determina parametri come la risoluzione e la dimensione dello schermo del " "dispositivo. Predefinito: %s. Profili supportati: " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:150 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:150 msgid "Left margin of page. Default is %default px." msgstr "Margine sinistro della pagina. Predefinito: %default px" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:152 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:152 msgid "Right margin of page. Default is %default px." msgstr "Margine destro della pagina. Predefinito: %default px" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:154 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:154 msgid "Top margin of page. Default is %default px." msgstr "Margine superiore della pagina. Predefinito: %default px" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:156 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:156 msgid "Bottom margin of page. Default is %default px." msgstr "Margine inferiore della pagina. Predefinito: %default px" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:160 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:160 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 " @@ -210,7 +210,7 @@ msgstr "" "0 significa che i link non vengono seguiti. Un valore negativo significa che " "i tag <a> vengono ignorati" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:164 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:164 msgid "" "A regular expression. <a> tags whoose href matches will be ignored. Defaults " "to %default" @@ -218,14 +218,14 @@ msgstr "" "Un'espressione regolare. I tag <a> i cui href corrispondono verranno " "ignorati. Predefinita: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:169 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:169 msgid "" "Prevent the automatic insertion of page breaks before detected chapters." msgstr "" "Previene l'inserimento automatico di interruzioni di pagina prima dei " "capitoli individuati" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:173 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:173 msgid "" "The regular expression used to detect chapter titles. It is searched for in " "heading tags (h1-h6). Defaults to %default" @@ -233,7 +233,7 @@ msgstr "" "L'espressione regolare utilizzata per individuare i titoli dei capitoli. I " "titoli vengono cercati nei tag d'intestazione (H1-H6). Predefinita: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:176 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:176 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 " @@ -252,14 +252,14 @@ msgstr "" "degradano le prestazioni dell'LRF nel girare la pagina. Questa opzione viene " "perciò ignorata se la pagina corrente ha solo pochi elementi" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:186 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:186 msgid "" "Force a page break before tags whoose names match this regular expression." msgstr "" "Forza un'interruzione di pagina prima dei tag i cui nomi corrispondono a " "questa espressione regolare" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:188 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:188 msgid "" "Force a page break before an element having the specified attribute. The " "format for this option is tagname regexp,attribute name,attribute value " @@ -272,11 +272,11 @@ msgstr "" "tutti i tag intestazione che hanno l'attributo class=\"chapter\" bisogna " "usare \"h\\d,class,chapter\". Predefinita: %default" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:191 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:191 msgid "Preprocess Baen HTML files to improve generated LRF." msgstr "Preprocessa i file HTML di Baen per migliorare i file LRF generati" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:193 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:193 msgid "" "You must add this option if processing files generated by pdftohtml, " "otherwise conversion will fail." @@ -284,11 +284,11 @@ msgstr "" "È necessario aggiungere questa opzione se si stanno processando file " "generati da pdftohtml, altrimenti la conversione non riuscirà" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:195 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:195 msgid "Use this option on html0 files from Book Designer." msgstr "Usare questa opzione sui file html0 di Book Designer" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:198 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:198 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 " @@ -304,27 +304,27 @@ msgstr "" "family \"%s, Times New Roman\"\n" " " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:207 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:207 msgid "The serif family of fonts to embed" msgstr "La famiglia di caratteri con grazie da includere" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:210 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:210 msgid "The sans-serif family of fonts to embed" msgstr "La famiglia di caratteri senza grazie da includere" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:213 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:213 msgid "The monospace family of fonts to embed" msgstr "La famiglia di caratteri a spaziatura fissa da includere" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:217 msgid "Be verbose while processing" msgstr "Prolisso durante il processamento" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:219 msgid "Convert to LRS" msgstr "Converte in LRS" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:221 msgid "" "Minimize memory usage at the cost of longer processing times. Use this " "option if you are on a memory constrained machine." @@ -332,7 +332,7 @@ msgstr "" "Minimizza l'uso di memoria al costo di un maggior tempo di processamento. " "Usare questa opzione se si è su una macchina a corto di memoria" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:223 msgid "" "Specify the character encoding of the source file. If the output LRF file " "contains strange characters, try changing this option. A common encoding for " @@ -344,7 +344,7 @@ msgstr "" "comune per i computer Windows è cp-1252. Un'altra scelta comune è utf-8. " "L'opzione predefinita è quella di provare ad indovinare la codifica" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:143 msgid "" "any2lrf [options] myfile\n" "\n" @@ -361,11 +361,11 @@ msgstr "" "archivio RAR o ZIP, cercando i libri dentro l'archivio.\n" " " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:158 msgid "No file to convert specified." msgstr "Nessun file da convertire specificato" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/epub/convert_from.py:17 msgid "" "Usage: %prog [options] mybook.epub\n" " \n" @@ -377,64 +377,77 @@ msgstr "" " \n" "%prog converte miolibro.epub in miolibro.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:18 +msgid "" +"%prog [options] mybook.fb2\n" +"\n" +"\n" +"%prog converts mybook.fb2 to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:23 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "Invia l'HTML generato allo stdout ed esce" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:20 msgid "Options to control the behavior of feeds2disk" msgstr "Opzioni per controllare il comportamento di feeds2disk" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:22 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:22 msgid "Options to control the behavior of html2lrf" msgstr "Opzioni per controllare il comportamento di html2lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:44 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:44 msgid "Fetching of recipe failed: " msgstr "Scaricamento della formula fallito: " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:302 msgid "\tBook Designer file detected." msgstr "\tFile di Book Designer individuato" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:304 msgid "\tParsing HTML..." msgstr "\tAnalisi HTML..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:326 msgid "\tBaen file detected. Re-parsing..." msgstr "\tFile di Baen individuato. Rianalizzo..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:341 msgid "Written preprocessed HTML to " msgstr "HTML preprocessato scritto in " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:352 msgid "Processing %s" msgstr "Sto processando %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:366 msgid "\tConverting to BBeB..." msgstr "\tConversione in BBeB..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:504 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:511 msgid "Could not parse file: %s" msgstr "Impossibile analizzare il file: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:523 msgid "Failed to parse link %s %s" msgstr "Analisi fallita del link %s %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:566 msgid "Cannot add link %s to TOC" msgstr "Impossibile aggiungere il link %s alla TOC" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:908 msgid "Unable to process image %s. Error: %s" msgstr "Impossibile processare l'immagine %s. Errore: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:946 msgid "Unable to process interlaced PNG %s" msgstr "Impossibile processare la PNG interlacciata %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:961 msgid "" "Could not process image: %s\n" "%s" @@ -442,13 +455,13 @@ msgstr "" "Impossibile processare l'immagine: %s\n" "%s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1651 msgid "An error occurred while processing a table: %s. Ignoring table markup." msgstr "" "Si è verificato un errore nel processamento della tabella: %s. Ignoro il " "codice della tabella" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1653 msgid "" "Bad table:\n" "%s" @@ -456,11 +469,11 @@ msgstr "" "Tabella malformata:\n" "%s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1675 msgid "Table has cell that is too large" msgstr "La tabella ha celle troppo larghe" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1703 msgid "" "You have to save the website %s as an html file first and then run html2lrf " "on it." @@ -468,19 +481,19 @@ msgstr "" "È necessario prima salvare il sito web %s come un file HTML e poi eseguire " "html2lrf su di esso" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1741 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1743 msgid "Could not read cover image: %s" msgstr "Impossibile leggere l'immagine di copertina: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1744 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1746 msgid "Cannot read from: %s" msgstr "Impossibile leggere da: %s" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1873 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1875 msgid "Failed to process opf file" msgstr "Processamento del file OPF fallito" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1879 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1881 msgid "" "Usage: %prog [options] mybook.html\n" "\n" @@ -498,7 +511,7 @@ msgstr "" "che puntano a file locali. In questo modo è possibile\n" "usarlo per convertire un intero albero di file HTML" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lit/convert_from.py:19 msgid "" "Usage: %prog [options] mybook.lit\n" "\n" @@ -510,7 +523,7 @@ msgstr "" "\n" "%prog converte miolibro.lit in miolibro.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:254 msgid "" "%prog [options] file.lrs\n" "Compile an LRS file into an LRF file." @@ -518,20 +531,20 @@ msgstr "" "%prog [opzioni] file.lrs\n" "Compila un file LRS dentro un file LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:255 msgid "Path to output file" msgstr "Percorso del file in uscita" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:113 msgid "Verbose processing" msgstr "Processamento prolisso" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:259 msgid "Convert LRS to LRS, useful for debugging." msgstr "Converte LRS in LRS, utile per il debugging" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:541 msgid "" "%prog [options] mybook.lrf\n" "\n" @@ -545,51 +558,51 @@ msgstr "" "Mostra/modifica i metadati in un file LRF\n" "\n" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:548 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:18 msgid "Set the book title" msgstr "Imposta il titolo del libro" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:550 msgid "Set sort key for the title" msgstr "Imposta la chiave per la classificazione del titolo" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:552 msgid "Set the author" msgstr "Imposta l'autore" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:554 msgid "Set sort key for the author" msgstr "Imposta la chiave per la classificazione dell'autore" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:556 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:22 msgid "The category this book belongs to. E.g.: History" msgstr "La categoria a cui questo libro appartiene. Es: Storia" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:559 msgid "Path to a graphic that will be set as this files' thumbnail" msgstr "" "Percorso a un'immagine che verrà impostata come miniatura di questo file" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:562 msgid "Path to a txt file containing the comment to be stored in the lrf file." msgstr "" "Percorso a un file TXT contenente il commento che verrà incluso nel file LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:566 msgid "Extract thumbnail from LRF file" msgstr "Estrae la miniatura da un file LRF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:568 msgid "Set book ID" msgstr "Imposta l'ID del libro" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:570 msgid "Don't know what this is for" msgstr "Non so a cosa serve questo" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/mobi/convert_from.py:43 msgid "" "Usage: %prog [options] mybook.mobi|prc\n" "\n" @@ -601,7 +614,7 @@ msgstr "" "\n" "%prog converte miolibro.mobi in miolibro.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:132 msgid "" "%prog book.lrf\n" "Convert an LRF file into an LRS (XML UTF-8 encoded) file" @@ -609,23 +622,23 @@ msgstr "" "%prog libro.lrf\n" "Converte un file LRF in un file LRS (XML codificato UTF-8)" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:133 msgid "Output LRS file" msgstr "Estrae un file LRS" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:151 msgid "Parsing LRF..." msgstr "Analisi LRF..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:154 msgid "Creating XML..." msgstr "Creazione XML..." -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:156 msgid "LRS written to " msgstr "LRS scritto in " -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/convert_from.py:47 msgid "" "%prog [options] mybook.pdf\n" "\n" @@ -637,7 +650,7 @@ msgstr "" "\n" "%prog converte miolibro.pdf in miolibro.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:402 msgid "" "Path to output directory in which to create the HTML file. Defaults to " "current directory." @@ -645,15 +658,15 @@ msgstr "" "Percorso della cartella in uscita dove creare il file HTML. Predefinito: " "cartella corrente" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:404 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:404 msgid "Be more verbose." msgstr "Più prolisso" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:416 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:416 msgid "You must specify a single PDF file." msgstr "È necessario specificare un singolo file PDF" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/rtf/convert_from.py:20 msgid "" "%prog [options] mybook.rtf\n" "\n" @@ -665,7 +678,7 @@ msgstr "" "\n" "%prog converte miolibro.rtf in miolibro.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:17 msgid "" "%prog [options] mybook.txt\n" "\n" @@ -677,27 +690,23 @@ msgstr "" "\n" "%prog converte miolibro.txt in miolibro.lrf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 -msgid "Print generated HTML to stdout and quit." -msgstr "Invia l'HTML generato allo stdout ed esce" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:20 msgid "Set the authors" msgstr "Imposta gli autori" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:24 msgid "Set the comment" msgstr "Imposta il commento" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 msgid "Usage:" msgstr "Uso:" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 msgid "mybook.epub" msgstr "miolibro.epub" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:95 msgid "" "\n" "%prog [options] key\n" @@ -722,23 +731,23 @@ msgstr "" "isndb.com\n" "\n" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:106 msgid "The ISBN ID of the book you want metadata for." msgstr "Il codice ISBN del libro di cui si vogliono i metadati" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:108 msgid "The author whoose book to search for." msgstr "L'autore del libro da cercare" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:110 msgid "The title of the book to search for." msgstr "Il titolo del libro da cercare" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:112 msgid "The publisher of the book to search for." msgstr "L'editore del libro da cercare" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:46 msgid "" "Could not fetch cover as server is experiencing high load. Please try again " "later." @@ -746,15 +755,15 @@ msgstr "" "Impossibile scaricare la copertina perché il server è sovraccarico. " "Ritentare più tardi" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:47 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:47 msgid " not found." msgstr " non trovato" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:50 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:50 msgid "Server error. Try again later." msgstr "Errore del server. Ritentare più tardi" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:59 msgid "" "\n" "%prog [options] ISBN\n" @@ -767,127 +776,127 @@ msgstr "" "Scarica un'immagine di copertina per il libro identificato dall'ISBN da " "LibraryThing.com\n" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:746 msgid "Usage: %s file.lit" msgstr "Uso: %s file.lit" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:753 msgid "Cover saved to" msgstr "Copertina salvata in" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:39 msgid "Usage: pdf-meta file.pdf" msgstr "Uso: pdf-meta-file.pdf" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:40 msgid "No filename specified." msgstr "Nessun nome file specificato" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:297 msgid "%prog [options] myebook.mobi" msgstr "%prog [opzioni] miolibro.mobi" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:299 msgid "Output directory. Defaults to current directory." msgstr "Cartella in uscita. Predefinita: cartella corrente" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:318 msgid "Raw MOBI HTML saved in" msgstr "MOBI HTML raw salvato in" -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:320 msgid "OEB ebook created in" msgstr "Libro OEB creato in" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:42 msgid "Choose Format" msgstr "Scegliere il formato" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:62 msgid "TextLabel" msgstr "EtichettaDiTesto" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 msgid "<br>Must be a directory." msgstr "<br>Deve essere una cartella" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 msgid "Invalid database location " msgstr "Percorso database non valido " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 msgid "Invalid database location" msgstr "Percorso database non valido" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 msgid "Invalid database location.<br>Cannot write to " msgstr "Percorso database non valido.<br>Impossibile scrivere su" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 msgid "Compacting database. This may take a while." msgstr "Compattamento database. Poterbbe richiedere un po' di tempo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 msgid "Compacting..." msgstr "Compattamento..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:216 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:279 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:216 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:279 msgid "Configuration" msgstr "Configurazione" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:220 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:220 msgid "Basic" msgstr "Base" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:224 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:224 msgid "Advanced" msgstr "Avanzata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:226 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:226 msgid "&Location of books database (library1.db)" msgstr "&Posizione del database dei libri (library1.db)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:227 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:227 msgid "Browse for the new database location" msgstr "Sfoglia per specificare una nuova posizione del database" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:238 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:610 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:320 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:329 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:331 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:335 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:144 -#: /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:235 -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:188 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:189 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:190 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:272 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:278 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:280 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:610 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:320 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:329 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:331 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:335 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:153 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:185 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:186 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:187 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:188 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:189 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:190 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:272 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:278 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:280 msgid "..." msgstr "..." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:229 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:229 msgid "Use &Roman numerals for series number" msgstr "&Usare numeri romani per i numeri delle serie" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:230 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:230 msgid "Default network &timeout:" msgstr "&Timeout predefinito della rete:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:231 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:231 msgid "" "Set the default timeout for network fetches (i.e. anytime we go out to the " "internet to get information)" @@ -895,63 +904,63 @@ msgstr "" "Imposta il timeout predefinito per gli scaricamenti dalla rete (cioè ogni " "volta che si usa Internet per prelevare informazioni)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:232 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:232 msgid " seconds" msgstr " secondi" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:233 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:233 msgid "&Priority for conversion jobs:" msgstr "Pri&orità per i lavori di conversione:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:234 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:234 msgid "Frequently used directories" msgstr "Cartelle usate frequentemente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:235 msgid "Add a directory to the frequently used directories list" msgstr "Aggiunge una cartella alla lista delle cartelle usate frequentemente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:237 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:237 msgid "Remove a directory from the frequently used directories list" msgstr "Rimuove una cartella dalla lista delle cartelle usate frequentemente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:239 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:239 msgid "Select visible &columns in library view" msgstr "&Selezionare le colonne visibili nella vista biblioteca" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:240 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:240 msgid "Free unused diskspace from the database" msgstr "Libera lo spazio non utilizzato dal database" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:241 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:241 msgid "&Compact database" msgstr "&Compatta database" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:242 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:242 msgid "&Metadata from file name" msgstr "&Metadati dal nome del file" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/conversion_error_ui.py:37 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/conversion_error_ui.py:37 msgid "ERROR" msgstr "ERRORE" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:101 msgid "Cannot connect" msgstr "Impossibile connettersi" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:102 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:102 msgid "You must specify a valid access key for isbndb.com" msgstr "È necessario specificare delle chiavi d'accesso valide per isbndb.com" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:89 msgid "Fetch metadata" msgstr "Scarica metadati" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:90 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:90 msgid "Fetching metadata for <b>%1</b>" msgstr "Scaricamento metadati per <b>%1</b>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:91 +#: /home/kovid/work/calibre/src/calibre/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." @@ -959,83 +968,83 @@ msgstr "" "Sottoscrivere un account gratuito su <a href=\"http://www.isbndb.com" "\">ISBNdb.com</a> per ottenere delle chiavi d'accesso." -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:92 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:92 msgid "&Access Key;" msgstr "&Chiave d'accesso;" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:93 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:93 msgid "Fetch" msgstr "Scarica" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:94 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:94 msgid "Matches" msgstr "Corrispondenze" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:95 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:95 msgid "Select the book that most closely matches your copy from the list below" msgstr "" "Selezionare il libro che corrisponde maggiormente alla propria copia " "dall'elenco sottostante" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/job_view_ui.py:30 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/job_view_ui.py:30 msgid "Details of job" msgstr "Dettagli del lavoro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:39 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:39 msgid "Active Jobs" msgstr "Lavori attivi" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:40 msgid "&Stop selected job" msgstr "I&nterrompi il lavoro selezionato" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:81 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:81 msgid "No available formats" msgstr "Nessun formato disponibile" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:82 msgid "Cannot convert %s as this book has no supported formats" msgstr "" "Impossibile convertire %s perché questo libro non ha formati supportati" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:86 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:86 msgid "Choose the format to convert into LRF" msgstr "Scegliere il formato da convertire in LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:94 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:94 msgid "Convert %s to LRF" msgstr "Converte %s in LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:97 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:97 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:149 msgid "Set conversion defaults" msgstr "Impostazioni di conversione predefinite" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:163 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:163 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:43 msgid "Cannot read" msgstr "Impossibile leggere" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:164 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:44 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:164 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:44 msgid "You do not have permission to read the file: " msgstr "Non si hanno i permessi per leggere il file: " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:172 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:52 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:172 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:52 msgid "Error reading file" msgstr "Errore nella lettura del file" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:173 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:173 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:53 msgid "<p>There was an error reading from file: <br /><b>" msgstr "<p>Si è verificato un errore nella lettura del file: <br /><b>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:179 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:179 msgid " is not a valid picture" msgstr " non è un'immagine valida" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:245 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:245 msgid "" "Preprocess the file before converting to LRF. This is useful if you know " "that the file is from a specific source. Known sources:" @@ -1043,21 +1052,21 @@ msgstr "" "Preprocessa il file prima di convertirlo in LRF. È utile se si conosce la " "fonte da cui proviene il file. Fonti conosciute:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:246 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:246 msgid "<ol><li><b>baen</b> - Books from BAEN Publishers</li>" msgstr "<ol><li><b>baen</b> - Libri dall'editore BAEN</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:247 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:247 msgid "" "<li><b>pdftohtml</b> - HTML files that are the output of the program " "pdftohtml</li>" msgstr "<li><b>pdftohtml</b> - File HTML generati dal programma pdftohtml</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:248 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:248 msgid "<li><b>book-designer</b> - HTML0 files from Book Designer</li>" msgstr "<li><b>book-designer</b> - File HTML0 da Book Designer</li>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 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." @@ -1065,12 +1074,12 @@ msgstr "" "Specifica metadati come il titolo e l'autore del libro.<p>I metadati saranno " "aggiornati nel database e nel file LRF generato" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:592 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:592 msgid "Metadata" msgstr "Metadati" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 msgid "" "Adjust the look of the generated LRF file by specifying things like font " "sizes and the spacing between words." @@ -1078,12 +1087,12 @@ msgstr "" "Aggiusta la visualizzazione del file LRF generato specificando parametri " "come la dimensione dei caratteri e la spaziatura tra le parole" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:596 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:596 msgid "Look & Feel" msgstr "Visualizzazione" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 msgid "" "Specify the page settings like margins and the screen size of the target " "device." @@ -1091,82 +1100,82 @@ msgstr "" "Specifica le impostazioni della pagina come i margini e la dimensione dello " "schermo del dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:600 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:600 msgid "Page Setup" msgstr "Imposta pagina" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 msgid "Fine tune the detection of chapter and section headings." msgstr "" "Mette a punto in modo fine l'individuazione delle intestazioni dei capitoli " "e delle sezioni" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:604 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:604 msgid "Chapter Detection" msgstr "Individuazione capitoli" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:292 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:292 msgid "<font color=\"gray\">No help available</font>" msgstr "<font color=\"gray\">Nessun aiuto disponibile</font>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:396 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:396 msgid "Bulk convert ebooks to LRF" msgstr "Conversione in gruppo di libri in LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:587 msgid "Convert to LRF" msgstr "Converti in LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:588 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:588 msgid "Category" msgstr "Categoria" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:606 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:606 msgid "Options" msgstr "Opzioni" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:607 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:332 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:607 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:332 msgid "Book Cover" msgstr "Copertina del libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:608 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:333 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:608 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:333 msgid "Change &cover image:" msgstr "Ca&mbia l'immagine di copertina:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:609 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:334 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:609 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:334 msgid "Browse for an image to use as the cover of this book." msgstr "" "Sfoglia per trovare un'immagine da usare come copertina per questo libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:611 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:611 msgid "Use cover from &source file" msgstr "Usa copertina del file di &origine" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:612 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:300 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:612 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:300 msgid "&Title: " msgstr "&Titolo: " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:613 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:301 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:613 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:301 msgid "Change the title of this book" msgstr "Cambia il titolo di questo libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:614 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:129 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:302 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:614 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:129 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:302 msgid "&Author(s): " msgstr "A&utore(i): " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:615 -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:615 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:617 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:303 msgid "" "Change the author(s) of this book. Multiple authors should be separated by a " "comma" @@ -1174,30 +1183,30 @@ msgstr "" "Cambia l'autore di questo libro. Autori multipli devono essere separati da " "una virgola" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:616 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:616 msgid "Author So&rt:" msgstr "Classifica&zione autore:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:618 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:137 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:618 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:137 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:310 msgid "&Publisher: " msgstr "&Editore: " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:619 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:138 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:311 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:619 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:138 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:311 msgid "Change the publisher of this book" msgstr "Cambia l'editore di questo libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:620 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:620 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:312 msgid "Ta&gs: " msgstr "T&ag: " -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:621 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:140 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1206,173 +1215,173 @@ msgstr "" "ricerche. <br>Possono essere qualsiasi parola o frase, separati da una " "virgola" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:622 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:143 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:622 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:316 msgid "&Series:" msgstr "&Serie:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:623 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:624 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:144 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:145 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:317 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:318 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:623 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:624 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:317 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:318 msgid "List of known series. You can add new series." msgstr "Lista di serie conosciute. È possibile aggiungere nuove serie" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:625 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:626 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:321 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:322 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:625 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:321 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:322 msgid "Series index." msgstr "Indice serie" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:627 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:323 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:627 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:323 msgid "Book " msgstr "Libro " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:628 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:325 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:223 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:325 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:223 msgid "Comments" msgstr "Commenti" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:629 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:629 msgid "Base &font size:" msgstr "&Grandezza caratteri di base:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:630 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:637 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:639 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:630 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:637 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:639 msgid " pts" msgstr " pt" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:631 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:631 msgid "Embedded Fonts" msgstr "Caratteri inclusi" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:632 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:632 msgid "&Serif:" msgstr "&Con grazie:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:633 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:633 msgid "S&ans-serif:" msgstr "&Senza grazie:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:634 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:634 msgid "&Monospace:" msgstr "&Dimensione fissa:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:635 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:635 msgid "Source en&coding:" msgstr "C&odifica sorgente:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:636 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:636 msgid "Minimum &indent:" msgstr "I&ndentazione minima:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:638 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:638 msgid "&Word spacing:" msgstr "Spaziat&ura caratteri:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:640 msgid "Enable auto &rotation of images" msgstr "Abilita &rotazione automatica delle immagini" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:641 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:641 msgid "Insert &blank lines between paragraphs" msgstr "Ins&erisci linee bianche tra i paragrafi" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:642 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:642 msgid "Ignore &tables" msgstr "Ignora ta&belle" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:643 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:643 msgid "Ignore &colors" msgstr "Ignor&a colori" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:644 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:644 msgid "&Preprocess:" msgstr "&Preprocessamento:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:645 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:645 msgid "Header" msgstr "Intestazione" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:646 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:646 msgid "&Show header" msgstr "&Mostra intestazione" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:647 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:647 msgid "&Header format:" msgstr "&Formato intestazione:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:648 msgid "Override<br>CSS" msgstr "Sovrascrivi<br>CSS" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:649 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:649 msgid "&Profile:" msgstr "&Profilo:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:650 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:650 msgid "&Left Margin:" msgstr "Margine &sinistro:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:651 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:653 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:655 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:657 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:651 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:653 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:655 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:657 msgid " px" msgstr " px" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:652 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:652 msgid "&Right Margin:" msgstr "Margine &destro:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:654 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:654 msgid "&Top Margin:" msgstr "Margine s&uperiore:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:656 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:656 msgid "&Bottom Margin:" msgstr "Margine i&nferiore:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:658 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:658 msgid "Title based detection" msgstr "Individuazione basata sul titolo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:659 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:659 msgid "&Disable chapter detection" msgstr "&Disabilita l'individuazione del capitoli" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:660 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:660 msgid "&Regular expression:" msgstr "&Espressione regolare:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:661 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:661 msgid "Tag based detection" msgstr "Individuazione basata sui tag" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:662 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:662 msgid "&Page break before tag:" msgstr "I&nterruzione di pagina prima del tag:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:663 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:663 msgid "&Force page break before tag:" msgstr "&Forza interruzione di pagina prima del tag:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:664 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:664 msgid "Force page break before &attribute:" msgstr "Forza interruzione di pagina prima dell'&attributo:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:665 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:665 msgid "Help on item" msgstr "Aiuto per l'elemento" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:666 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:666 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1392,22 +1401,22 @@ msgstr "" "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-" "family:'Sans Serif'; font-size:9pt;\"></p></body></html>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:127 msgid "Edit Meta information" msgstr "Modifica metadati" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:128 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:299 msgid "Meta information" msgstr "Metadati" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:304 msgid "Author S&ort: " msgstr "&Classificazione autore: " -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:132 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1415,36 +1424,36 @@ msgstr "" "Specifica come deve essere classificato l'autore di questo libro. Ad " "esempio, Charles Dickens deve essere classificato come Dickens, Charles." -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:306 msgid "&Rating:" msgstr "&Giudizio:" -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:308 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:135 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:307 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:308 msgid "Rating of this book. 0-5 stars" msgstr "Giudizio su questo libro. 0-5 stelle" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:136 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:309 msgid " stars" msgstr " stelle" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:139 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:139 msgid "Add Ta&gs: " msgstr "&Aggiungi tag: " -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:141 msgid "&Remove tags:" msgstr "&Rimuovi tag:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:142 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:142 msgid "Comma separated list of tags to remove from the books. " msgstr "Lista separata da virgole dei tag da rimuovere dal libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:224 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:224 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> " @@ -1454,128 +1463,128 @@ msgstr "" "<br/>Se non se ne possiede uno, è possibile <a href='http://www.librarything." "com'>registrarsi</a> gratuitamente!</p>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:254 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 msgid "<b>Could not fetch cover.</b><br/>" msgstr "<b>Impossibile scaricare la copertina</b><br/>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:254 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 msgid "Could not fetch cover" msgstr "Impossibile scaricare la copertina" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 msgid "Cannot fetch cover" msgstr "Impossibile scaricare la copertina" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 msgid "You must specify the ISBN identifier for this book." msgstr "È necessario specificare il codice ISBN di questo libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:298 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:298 msgid "Edit Meta Information" msgstr "Modifica metadati" -#: /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 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:314 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:315 msgid "Open Tag Editor" msgstr "Apri l'editor dei tag" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:319 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:319 msgid "Remove unused series (Series that have no books)" msgstr "Rimuovi serie inutilizzate (che non hanno libri)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:324 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:324 msgid "IS&BN:" msgstr "IS&BN:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:326 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:326 msgid "Fetch metadata from server" msgstr "Scarica metadati dal server" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:327 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:327 msgid "Available Formats" msgstr "Formati disponibili" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:328 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:328 msgid "Add a new format for this book to the database" msgstr "Aggiungi un nuovo formato al database per questo libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:330 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:330 msgid "Remove the selected formats for this book from the database." msgstr "Rimuovi il formato selezionato dal database per questo libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:336 msgid "Fetch cover image from server" msgstr "Scarica immagine di copertina dal server" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:337 msgid "" "Change the username and/or password for your account at LibraryThing.com" msgstr "" "Cambia il nome utente e/o password del proprio account su LibraryThing.com" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:338 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:338 msgid "Change password" msgstr "Cambia password" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:61 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:61 msgid "Password needed" msgstr "Password necessaria" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:63 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:63 msgid "&Username:" msgstr "&Nome utente:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:64 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:64 msgid "&Password:" msgstr "&Password:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:65 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:65 msgid "&Show password" msgstr "&Mostra password" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:14 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:336 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:700 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:14 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:700 msgid "Title" msgstr "Titolo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:15 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:15 msgid "Author" msgstr "Autore" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:17 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:17 msgid "Tag" msgstr "Tag" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:18 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:18 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:343 msgid "Series" msgstr "Serie" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:19 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:634 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:19 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:634 msgid "Format" msgstr "Formato" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:20 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:20 msgid "Any" msgstr "Qualunque" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:40 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:110 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:110 msgid "Form" msgstr "Formato" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:41 msgid "contains" msgstr "contiene" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:42 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:42 msgid "The text to search for. It is interpreted as a regular expression." msgstr "Il testo da cercare. È interpretato come un'espressione regolare" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:43 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1583,43 +1592,43 @@ msgstr "" "<p>Nega questa corrispondenza. Restituisce soltanto i risultati che <b>non</" "b> corrispondono a questa ricerca" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:44 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:44 msgid "Negate" msgstr "Nega" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:80 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:80 msgid "Advanced Search" msgstr "Ricerca avanzata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:81 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:81 msgid "Match a&ll of the following criteria" msgstr "&Corrispondenza con tutti i criteri seguenti" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:82 msgid "Match a&ny of the following criteria" msgstr "C&orrispondenza con uno qualunque dei criteri seguenti" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:83 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:83 msgid "Search criteria" msgstr "Criteri di ricerca" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:84 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:84 msgid "More" msgstr "Di più" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:85 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:85 msgid "Fewer" msgstr "Meno" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:141 msgid "Tag Editor" msgstr "Editor di tag" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:142 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:142 msgid "A&vailable tags" msgstr "Tag &disponibili" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1627,23 +1636,23 @@ msgstr "" "Rimuovi il tag dal database. Questa operazione rimuoverà il tag da tutti i " "libri e poi dal database" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:145 msgid "Apply tag to current book" msgstr "Applica il tag al libro corrente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:147 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:147 msgid "A&pplied tags" msgstr "&Tag applicati" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:148 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:148 msgid "Unapply (remove) tag from current book" msgstr "Rimuovi il tag dal libro corrente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:150 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:150 msgid "&Add tag:" msgstr "&Aggiungi tag:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:151 +#: /home/kovid/work/calibre/src/calibre/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." @@ -1651,80 +1660,80 @@ msgstr "" "Se il tag voluto non è nella lista di quelli disponibili, è possibile " "aggiungerlo qui. Accetta una lista di tag separati da virgola" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:152 msgid "Add tag to available tags and apply it to current book" msgstr "Aggiungi il tag a quelli disponibili e applicalo al libro corrente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:48 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:58 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:48 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:58 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:222 msgid "Switch to Advanced mode" msgstr "Passa alla modalità avanzata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:53 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:61 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:61 msgid "Switch to Basic mode" msgstr "Passa alla modalità base" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:71 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:71 msgid "Feed must have a title" msgstr "Il feed deve avere un titolo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:72 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:72 msgid "The feed must have a title" msgstr "Il feed deve avere un titolo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:76 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:76 msgid "Feed must have a URL" msgstr "Il feed deve avere una URL" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:77 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:77 msgid "The feed %s must have a URL" msgstr "Il feed %S deve avere una URL" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:82 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:82 msgid "Already exists" msgstr "Esiste già" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:83 msgid "This feed has already been added to the recipe" msgstr "Questo feed è già stato aggiunto alla formula" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:133 msgid "Invalid input" msgstr "Input non valido" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:125 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:134 msgid "<p>Could not create recipe. Error:<br>%s" msgstr "<p>Impossibile creare la formula. Errore:<br>%s" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:140 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:140 msgid "Replace recipe?" msgstr "Sovrascrivere la formula?" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:141 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:141 msgid "A custom recipe named %s already exists. Do you want to replace it?" msgstr "Esiste già una formula personalizzata di nome %s. Sovrascriverla?" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:218 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:218 msgid "Add custom news source" msgstr "Aggiungi una fonte di notizie personalizzata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:219 msgid "Available user recipes" msgstr "Formule utente disponibili" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:220 msgid "Add/Update &recipe" msgstr "Aggiungi/Aggiorna for&mula" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:221 msgid "&Remove recipe" msgstr "Rimuo&vi formula" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:223 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -1748,68 +1757,68 @@ msgstr "" "parte dei feed, bisognerà usare la \"Modalità avanzata\" per personalizzare " "ulteriormente il processo di scaricamento.</p></body></html>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:227 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:227 msgid "Recipe &title:" msgstr "&Titolo formula:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:228 msgid "&Oldest article:" msgstr "Arti&colo più vecchio:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:229 msgid "The oldest article to download" msgstr "L'articolo più vecchio da scaricare" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:230 msgid " days" msgstr " giorni" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:231 msgid "&Max. number of articles per feed:" msgstr "&Numero massimo di articoli per feed:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:232 msgid "Maximum number of articles to download per feed." msgstr "Massimo numero di articoli da scaricare per feed" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:233 msgid "Feeds in recipe" msgstr "Feed nella formula" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:234 msgid "Remove feed from recipe" msgstr "Rimuove il feed dalla formula" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:239 msgid "Add feed to recipe" msgstr "Aggiunge il feed alla formula" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:237 msgid "&Feed title:" msgstr "Tit&olo del feed:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:238 msgid "Feed &URL:" msgstr "&URL del feed:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:240 msgid "&Add feed" msgstr "&Aggiungi feed" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:241 msgid "" "For help with writing advanced news recipes, please visit <a href=\"http://" -"libprs500.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" +"calibre.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" msgstr "" "Per un aiuto su come scrivere formule di notizie avanzate, visitare <a href=" -"\"http://libprs500.kovidgoyal.net/user_manual/news.html\">Formule utente</a>" +"\"http://calibre.kovidgoyal.net/user_manual/news.html\">Formule utente</a>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:242 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:242 msgid "Recipe source code (python)" msgstr "Codice sorgente formula (python)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:111 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:111 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." @@ -1824,108 +1833,108 @@ msgstr "" "sottostante per testare le proprie espressioni regolari su una serie di nomi " "di file di esempio." -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:112 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:112 msgid "Regular &expression" msgstr "&Espressione regolare" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:113 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:113 msgid "&Test" msgstr "&Test" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:114 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:114 msgid "File &name:" msgstr "&Nome file:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:115 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:115 msgid "Test" msgstr "Test" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:116 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:116 msgid "Title:" msgstr "Titolo:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:117 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:117 msgid "Regular expression group name (?P<title>)" msgstr "Nome del gruppo per l'espressione regolare (?P< title>)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:118 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:121 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:127 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:41 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:45 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:50 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:55 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:118 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:121 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:45 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:50 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:55 msgid "No match" msgstr "Nessuna corrispondenza" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:119 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:119 msgid "Authors:" msgstr "Autori:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:120 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:120 msgid "Regular expression group name (?P<authors>)" msgstr "Nome del gruppo per l'espressione regolare (?P<authors>)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:122 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:122 msgid "Series:" msgstr "Serie:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:123 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:123 msgid "Regular expression group name (?P<series>)" msgstr "Nome del gruppo per l'espressione regolare (?P<series>)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:125 msgid "Series index:" msgstr "Indice serie:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:126 msgid "Regular expression group name (?P<series_index>)" msgstr "Nome del gruppo per l'espressione regolare (?P<series_index>)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:279 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:279 msgid "Job" msgstr "Lavoro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:280 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:280 msgid "Status" msgstr "Stato" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:281 msgid "Progress" msgstr "Progresso" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:282 msgid "Running time" msgstr "Tempo di esecuzione" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 msgid "Error" msgstr "Errore" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 msgid "Finished" msgstr "Finito" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 msgid "Waiting" msgstr "In attesa" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 msgid "Working" msgstr "In esecuzione" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:315 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:315 msgid "Unavailable" msgstr "Non disponibile" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:343 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:347 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:351 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:347 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:351 msgid "Cannot kill job" msgstr "Impossibile terminare il lavoro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:344 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:344 msgid "" "Cannot kill jobs that are communicating with the device as this may cause " "data corruption." @@ -1933,155 +1942,155 @@ msgstr "" "Impossibile terminare i lavori che stanno comunicando col dispositivo dato " "che potrebbe causare una corruzione dei dati" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:348 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:348 msgid "Cannot kill already completed jobs." msgstr "Impossibile terminare i lavori già completati" -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:352 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:352 msgid "Cannot kill waiting jobs." msgstr "Impossibile terminare i lavori in attesa" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:212 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:218 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:222 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:212 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:218 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:222 msgid "None" msgstr "Nessuno" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:213 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:342 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:640 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:704 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:213 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:342 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:704 msgid "Tags" msgstr "Tag" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:219 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:219 msgid "Formats" msgstr "Formati" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 msgid "Book <font face=\"serif\">%s</font> of %s." msgstr "Libro <font face=\"serif\">%s</font> di %s" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:328 msgid "Double click to <b>edit</b> me<br><br>" msgstr "Doppio clic per modificarmi" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:701 msgid "Author(s)" msgstr "Autore(i)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:338 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:702 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:338 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:702 msgid "Size (MB)" msgstr "Dimensione (MB)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:339 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:703 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:339 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:703 msgid "Date" msgstr "Data" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:340 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:340 msgid "Rating" msgstr "Giudizio" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:635 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:635 msgid "Path" msgstr "Percorso" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:639 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:639 msgid "Timestamp" msgstr "Timestamp" -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:739 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:739 msgid "Search (For Advanced Search click the button to the left)" msgstr "Cerca (Per la ricerca avanzata fare clic sul bottone a sinistra)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:51 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:51 msgid "Configure Viewer" msgstr "Configura visualizzatore" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:52 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:52 msgid "Use white background" msgstr "Usa uno sfondo bianco" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:53 msgid "Hyphenate" msgstr "Unisci" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:54 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:54 msgid "<b>Changes will only take affect after a restart." msgstr "<b>Le modifiche avranno effetto dopo il riavvio" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 msgid "<b>No matches</b> for the search phrase <i>%s</i> were found." msgstr "<b>Nessuna corrispondenza</b> trovata per la frase <i>%s</i>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 msgid "No matches found" msgstr "Nessuna corrispondenza trovata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:184 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:184 msgid "LRF Viewer" msgstr "Visualizzatore LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:191 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:191 msgid "Parsing LRF file" msgstr "Analisi file LRF" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:192 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:192 msgid "Next Page" msgstr "Pagina successiva" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:193 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:193 msgid "Previous Page" msgstr "Pagina precedente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:194 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:194 msgid "Back" msgstr "Indietro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:195 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:195 msgid "Forward" msgstr "Avanti" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:196 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:196 msgid "Next match" msgstr "Prossima corrispondenza" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:197 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:197 msgid "Open ebook" msgstr "Apri libro" -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:198 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:198 msgid "Configure" msgstr "Configurazione" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:72 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:72 msgid "Error communicating with device" msgstr "Errore di comunicazione col dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:102 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:102 msgid "Send to main memory" msgstr "Invia alla memoria principale" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:103 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:103 msgid "Send to storage card" msgstr "Invia alla scheda di memoria" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:106 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106 msgid "Edit metadata individually" msgstr "Modifica metadati individualmente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:107 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:107 msgid "Edit metadata in bulk" msgstr "Modifica metadati in gruppo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:110 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:110 msgid "Add books from a single directory" msgstr "Aggiungi libri da una singola cartella" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:111 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:111 msgid "" "Add books recursively (One book per directory, assumes every ebook file is " "the same book in a different format)" @@ -2089,7 +2098,7 @@ msgstr "" "Aggiungi libri ricorsivamente (un libro per cartella, assume che ogni file " "sia lo stesso libro in un diverso formato)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:112 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:112 msgid "" "Add books recursively (Multiple books per directory, assumes every ebook " "file is a different book)" @@ -2097,37 +2106,37 @@ msgstr "" "Aggiungi libri ricorsivamente (più libri per cartella, assume che ogni file " "sia un libro diverso)" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:126 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:289 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:289 msgid "Save to disk" msgstr "Salva su disco" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:127 msgid "Save to disk in a single directory" msgstr "Salva su disco in una singola cartella" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:130 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:292 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:292 msgid "View" msgstr "Leggi" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:131 msgid "View specific format" msgstr "Leggi uno specifico formato" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:146 msgid "Convert individually" msgstr "Converti individualmente" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:147 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:147 msgid "Bulk convert" msgstr "Converti in gruppo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:260 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:260 msgid "Device database corrupted" msgstr "Database del dispositivo corrotto" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:261 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:261 msgid "" "\n" " <p>The database of books on the reader is corrupted. Try the " @@ -2143,8 +2152,8 @@ msgid "" " " msgstr "" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:313 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:379 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:313 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:379 msgid "" "<p>Books with the same title as the following already exist in the database. " "Add them anyway?<ul>" @@ -2152,88 +2161,88 @@ msgstr "" "<p>Nel database sono già presenti libri con i seguenti titoli. Aggiungerli " "ugualmente?<ul>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:316 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:382 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:382 msgid "Duplicates found!" msgstr "Scoperti duplicati!" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:412 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:412 msgid "No space on device" msgstr "Spazio insufficiente sul dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:413 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:413 msgid "<p>Cannot upload books to device there is no more free space available " msgstr "" "<p>Impossibile salvare libri sul dispositivo perché non c'è più spazio " "disponibile " -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 msgid "Cannot edit metadata" msgstr "Impossibile modificare i metadati" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 msgid "No books selected" msgstr "Nessun libro selezionato" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 msgid "Cannot save to disk" msgstr "Impossibile salvare sul disco" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:626 msgid "Fetch news from " msgstr "Scarica notizie da " -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:628 msgid "Fetching news from " msgstr "Scaricamento notizie da " -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:638 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:638 msgid "News fetched. Uploading to device." msgstr "Notizie scaricate. Salvataggio sul dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 msgid "Cannot convert" msgstr "Impossibile convertire" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 msgid "No book selected" msgstr "Nessun libro selezionato" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:798 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:798 msgid "Cannot view" msgstr "Impossibile leggere" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:773 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:803 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:773 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:803 msgid "Choose the format to view" msgstr "Scegliere il formato da leggere" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:799 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:799 msgid "%s has no available formats." msgstr "%s non ha formati disponibili" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 msgid "Cannot configure" msgstr "Impossibile configurare" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 msgid "Cannot configure while there are running jobs." msgstr "Impossibile configurare mentre ci sono lavori in esecuzione" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:863 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:863 msgid "Invalid database" msgstr "Database non valido" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:864 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:864 msgid "" "<p>An invalid database already exists at %s, delete it before trying to move " "the existing database.<br>Error: %s" @@ -2241,15 +2250,15 @@ msgstr "" "<p>Esiste già un database non valido in %s, eliminarlo prima di provare a " "spostare il database esistente.<br>Errore: %s" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:872 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:872 msgid "Could not move database" msgstr "Impossibile spostare il database" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:922 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922 msgid "Error talking to device" msgstr "Errore di comunicazione col dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:923 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923 msgid "" "There was a temporary error talking to the device. Please unplug and " "reconnect the device and or reboot." @@ -2257,7 +2266,7 @@ msgstr "" "Si è verificato un errore di comunicazione temporaneo col dispositivo. " "Disconnettere e riconnettere il dispositivo e/o riavviare" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:1003 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1003 msgid "" "<span style=\"color:red; font-weight:bold\">Latest version: <a href=\"%s\">%" "s</a></span>" @@ -2265,11 +2274,11 @@ msgstr "" "<span style=\"color:red; font-weight:bold\">Ultima versione: <a href=\"%s\">%" "s</a></span>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:266 -msgid "libprs500" -msgstr "libprs500" +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:266 +msgid "calibre" +msgstr "calibre" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:267 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:267 msgid "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -2278,11 +2287,10 @@ msgid "" "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>" +"\"http://calibre.kovidgoyal.net/user_manual\"><span style=\" text-" +"decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</span></" +"a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 by <span " +"style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></body></html>" msgstr "" "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/css" "\">\n" @@ -2291,25 +2299,25 @@ msgstr "" "weight:400; font-style:normal;\">\n" "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-" "right:0px; -qt-block-indent:0; text-indent:0px;\">Visitare <a href=\"http://" -"libprs500.kovidgoyal.net/user_manual\"><span style=\" text-decoration: " -"underline; color:#0000ff;\">libprs500.kovidgoyal.net</span></a> per la " -"guida<br /><br /><span style=\" font-weight:600;\">libprs500</span>: %1 di " +"calibre.kovidgoyal.net/user_manual\"><span style=\" text-decoration: " +"underline; color:#0000ff;\">calibre.kovidgoyal.net</span></a> per la " +"guida<br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 di " "<span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></body></" "html>" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:271 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:271 msgid "Advanced search" msgstr "Ricerca avanzata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:273 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:273 msgid "Alt+S" msgstr "Alt+S" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:274 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:274 msgid "&Search:" msgstr "&Cerca:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:275 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:275 msgid "" "Search the list of books by title or author<br><br>Words separated by spaces " "are ANDed" @@ -2317,7 +2325,7 @@ msgstr "" "Cerca nella lista dei libri per titolo o autore<br><br>Parole separate da " "spazi hanno come operatore AND" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:276 +#: /home/kovid/work/calibre/src/calibre/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" @@ -2325,52 +2333,52 @@ msgstr "" "Cerca nella lista dei libri per titolo, autore, editore, tag e " "commenti<br><br>Parole separate da spazi hanno come operatore AND" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:277 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:277 msgid "Reset Quick Search" msgstr "Resetta ricerca veloce" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:281 msgid "Add books" msgstr "Aggiungi libri" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:282 msgid "A" msgstr "A" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:284 msgid "Remove books" msgstr "Rimuovi libri" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:285 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:285 msgid "Del" msgstr "Canc" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:286 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:286 msgid "Edit meta information" msgstr "Modifica metadati" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:287 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:287 msgid "E" msgstr "E" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:288 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:288 msgid "Send to device" msgstr "Invia al dispositivo" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:290 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:290 msgid "Fetch news" msgstr "Scarica notizie" -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:291 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:291 msgid "Convert E-books" msgstr "Converti libri" -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:32 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:32 msgid "Add a custom news source" msgstr "Aggiungi una fonte di notizie personalizzata" -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:53 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." @@ -2379,31 +2387,31 @@ msgstr "" "possiede uno, sottoscriversi per avere accesso a questi articoli.<br/> Fare " "clic su OK per procedere." -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:79 +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:79 msgid "Custom news sources" msgstr "Fonti di notizie personalizzate" -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:87 +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:87 msgid "Jobs:" msgstr "Lavori:" -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:96 +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:96 msgid "Click to see list of active jobs." msgstr "Fare clic per vedere una lista dei lavori attivi" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:34 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:34 msgid "Invalid regular expression" msgstr "Espressione regolare non valida" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:35 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:35 msgid "Invalid regular expression: %s" msgstr "Espressione regolare non valida: %s" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:86 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:86 msgid "Library" msgstr "Biblioteca" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:87 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:87 msgid "" "Reader\n" "%s available" @@ -2411,7 +2419,7 @@ msgstr "" "Lettore\n" "%s disponibili" -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:88 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:88 msgid "" "Card\n" "%s available" @@ -2419,21 +2427,21 @@ msgstr "" "Scheda\n" "%s disponibili" -#: /home/kovid/work/libprs500/src/libprs500/parallel.py:114 +#: /home/kovid/work/calibre/src/calibre/parallel.py:114 msgid "Job killed by user" msgstr "Lavoro terminato dall'utente" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:56 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:77 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:56 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:77 msgid "Unknown feed" msgstr "Feed sconosciuto" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:115 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:115 msgid "Untitled article" msgstr "Articolo senza titolo" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:15 msgid "" "%%prog [options] ARG\n" "\n" @@ -2472,13 +2480,13 @@ msgstr "" "Le formule presenti disponibili sono:\n" "%s\n" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:37 msgid "Options to control web2disk (used to fetch websites linked from feeds)" msgstr "" "Opzioni per controllare web2disk (usato per scaricare i siti collegati ai " "feed)" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:40 msgid "" "Specify a list of feeds to download. For example: \n" "\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" @@ -2492,11 +2500,11 @@ msgstr "" "Se si specifica questa opzione, ogni indice per %prog viene ignorato e viene " "usata una formula predefinita per scaricare i feed." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:44 msgid "Be more verbose while processing." msgstr "Più prolisso durante il processamento" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:46 msgid "" "The title for this recipe. Used as the title for any ebooks created from the " "downloaded feeds." @@ -2504,19 +2512,19 @@ msgstr "" "Il titolo per questa formula. Usato come titolo per ogni libro creato da " "questi feed scaricati" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:47 msgid "Username for sites that require a login to access content." msgstr "" "Nome utente per i siti che richiedono un'identificazione per accedere ai " "contenuti" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:48 msgid "Password for sites that require a login to access content." msgstr "" "Password per i siti che richiedono un'identificazione per accedere ai " "contenuti" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:51 msgid "" "Number of levels of links to follow on webpages that are linked to from " "feeds. Defaul %default" @@ -2524,22 +2532,22 @@ msgstr "" "Numero di livelli di link da seguire nelle pagine web che sono collegate ai " "feed. Predefinito: %default" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:53 msgid "" "The directory in which to store the downloaded feeds. Defaults to the " "current directory." msgstr "" "La cartella in cui salvare i feed scaricati. Perdefinita: cartella corrente" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:55 msgid "Dont show the progress bar" msgstr "Non mostrare la barra di progresso" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:57 msgid "Very verbose output, useful for debugging." msgstr "Output molto prolisso, utile per il debugging" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:59 msgid "" "Useful for recipe development. Forces max_articles_per_feed to 2 and " "downloads at most 2 feeds." @@ -2547,71 +2555,71 @@ msgstr "" "Utile per lo sviluppo delle formule. Forza max_articles_per_feed a 2 e " "scarica al massimo 2 feed" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:84 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:88 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:567 msgid "Fetching feeds..." msgstr "Scaricamento feed..." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:33 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:33 msgid "Unknown News Source" msgstr "Sorgente di notizie sconosciuta" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:468 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:468 msgid "Download finished" msgstr "Scaricamento completato" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:470 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:470 msgid "Failed to download the following articles:" msgstr "Scaricamento dei seguenti articoli fallito:" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:472 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:478 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:472 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:478 msgid " from " msgstr " da " -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:476 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:476 msgid "Failed to download parts of the following articles:" msgstr "Scaricamento dei seguenti articoli fallito parzialmente:" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:480 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:480 msgid "\tFailed links:" msgstr "\tLink falliti:" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:549 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:549 msgid "Could not fetch article. Run with --debug to see the reason" msgstr "" "Impossibile scaricare l'articolo. Eseguire con --debug per vedere la ragione" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:571 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:571 msgid "Got feeds from index page" msgstr "Ricevuti feed dalla pagina principale" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:575 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:575 msgid "Trying to download cover..." msgstr "Tentativo di scaricamento della copertina..." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:625 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:625 msgid "Starting download [%d thread(s)]..." msgstr "Inizio scaricamento [%d articolo(i)]..." -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:639 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:639 msgid "Feeds downloaded to %s" msgstr "Feed scaricati in %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:648 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:648 msgid "Could not download cover: %s" msgstr "Impossibile scaricare la copertina: %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:653 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:653 msgid "Downloading cover from %s" msgstr "Scaricamento copertina da %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:688 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:688 msgid "Untitled Article" msgstr "Articolo senza titolo" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:729 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:729 msgid "" "\n" "Downloaded article %s from %s\n" @@ -2621,23 +2629,23 @@ msgstr "" "Scaricato articolo %s da %s\n" "%s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:735 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:735 msgid "Article downloaded: %s" msgstr "Articolo scaricato: %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:741 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:741 msgid "Failed to download article: %s from %s\n" msgstr "Scaricamento fallito dell'articolo: %s da %s\n" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:746 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:746 msgid "Article download failed: %s" msgstr "Scaricamento fallito dell'articolo: %s" -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:761 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:761 msgid "Fetching feed" msgstr "Scaricamento feed" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:373 msgid "" "%prog URL\n" "\n" @@ -2647,11 +2655,11 @@ msgstr "" "\n" "Dov'è l'URL. Esempio: http://google.com" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:376 msgid "Base directory into which URL is saved. Default is %default" msgstr "Cartella base in cui le URL sono salvate. Predefinita: %default" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:379 msgid "" "Timeout in seconds to wait for a response from the server. Default: %default " "s" @@ -2659,7 +2667,7 @@ msgstr "" "Timeout in secondi da aspettare per una risposta dal server. Predefinito: %" "default s" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:382 msgid "" "Maximum number of levels to recurse i.e. depth of links to follow. Default %" "default" @@ -2667,7 +2675,7 @@ msgstr "" "Numero massimo di livelli ricorsivi, cioè profondità dei link da seguire. " "Predefinito: %default" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:385 msgid "" "The maximum number of files to download. This only applies to files from <a " "href> tags. Default is %default" @@ -2675,7 +2683,7 @@ msgstr "" "Il numero massimo di file da scaricare. Questa si applica solo ai file dai " "tag <a fref>. Predefinito: %default" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:387 msgid "" "Minimum interval in seconds between consecutive fetches. Default is %default " "s" @@ -2683,7 +2691,7 @@ msgstr "" "Intervallo minimo in secondi tra due scaricamenti consecutivi. Predefinito: %" "default s" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:389 msgid "" "The character encoding for the websites you are trying to download. The " "default is to try and guess the encoding." @@ -2691,7 +2699,7 @@ msgstr "" "La codifica caratteri del sito webb che si sta cercando di scaricare. " "L'impostazione predefinita è quella di provare a indovinare la codifica" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:391 msgid "" "Only links that match this regular expression will be followed. This option " "can be specified multiple times, in which case as long as a link matches any " @@ -2702,7 +2710,7 @@ msgstr "" "un link corrisponde a una delle espressioni regolari verrà seguito. Per " "impostazione predefinita i link non vengono seguiti" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:393 msgid "" "Any link that matches this regular expression will be ignored. This option " "can be specified multiple times, in which case as long as any regexp matches " @@ -2717,11 +2725,11 @@ msgstr "" "sia --filter-regexp che --match-regexp, --filter-regexp viene applicata per " "prima" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:395 msgid "Do not download CSS stylesheets." msgstr "Non scaricare i fogli di stile CSS" -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:396 msgid "Show detailed output information. Useful for debugging" msgstr "Mostra un output dettagliato. Utile per il debugging" diff --git a/src/libprs500/translations/msgfmt.py b/src/calibre/translations/msgfmt.py similarity index 100% rename from src/libprs500/translations/msgfmt.py rename to src/calibre/translations/msgfmt.py diff --git a/src/libprs500/translations/pygettext.py b/src/calibre/translations/pygettext.py similarity index 99% rename from src/libprs500/translations/pygettext.py rename to src/calibre/translations/pygettext.py index d5a11e1639..0c6fac8d9f 100644 --- a/src/libprs500/translations/pygettext.py +++ b/src/calibre/translations/pygettext.py @@ -164,8 +164,8 @@ DEFAULTKEYWORDS = ', '.join(default_keywords) EMPTYSTRING = '' -from libprs500 import __appname__ -from libprs500 import __version__ as version +from calibre import __appname__ +from calibre import __version__ as version # The normal pot-file header. msgmerge and Emacs's po-mode work better if it's # there. diff --git a/src/calibre/translations/sl.po b/src/calibre/translations/sl.po new file mode 100644 index 0000000000..839a8930a1 --- /dev/null +++ b/src/calibre/translations/sl.po @@ -0,0 +1,2419 @@ +# Translation template file.. +# Copyright (C) 2007 Kovid Goyal +# Kovid Goyal <kovid@kovidgoyal.net>, 2007. +# +msgid "" +msgstr "" +"Project-Id-Version: calibre 0.4.17\n" +"POT-Creation-Date: 2008-04-07 16:11+IST\n" +"PO-Revision-Date: 2007-11-08 14:39+PST\n" +"Last-Translator: Automatically generated\n" +"Language-Team: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" + +#: /home/kovid/work/calibre/src/calibre/__init__.py:85 +msgid "%sUsage%s: %s\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/__init__.py:122 +msgid "Created by " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:88 +msgid "Set the title. Default: filename." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:90 +msgid "" +"Set the author(s). Multiple authors should be set as a comma separated list. " +"Default: %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:91 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:630 +msgid "Unknown" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:93 +msgid "Set the comment." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:95 +msgid "Set the category" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:97 +msgid "Sort key for the title" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:99 +msgid "Sort key for the author" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:101 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:16 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:341 +msgid "Publisher" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:103 +msgid "Path to file containing image to be used as cover" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:105 +msgid "" +"If there is a cover graphic detected in the source file, use that instead of " +"the specified cover." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:108 +msgid "Output file name. Default is derived from input filename" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:110 +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/calibre/src/calibre/ebooks/lrf/__init__.py:113 +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/calibre/src/calibre/ebooks/lrf/__init__.py:115 +msgid "Enable autorotation of images that are wider than the screen width." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:118 +msgid "Set the space between words in pts. Default is %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:120 +msgid "Separate paragraphs by blank lines." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:122 +msgid "Add a header to all the pages with title and author." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:124 +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/calibre/src/calibre/ebooks/lrf/__init__.py:126 +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/calibre/src/calibre/ebooks/lrf/__init__.py:128 +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/calibre/src/calibre/ebooks/lrf/__init__.py:130 +msgid "" +"Minimum paragraph indent (the indent of the first line of a paragraph) in " +"pts. Default: %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:132 +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/calibre/src/calibre/ebooks/lrf/__init__.py:137 +msgid "" +"Render all content as black on white instead of the colors specified by the " +"HTML or CSS." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:144 +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/calibre/src/calibre/ebooks/lrf/__init__.py:150 +msgid "Left margin of page. Default is %default px." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:152 +msgid "Right margin of page. Default is %default px." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:154 +msgid "Top margin of page. Default is %default px." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:156 +msgid "Bottom margin of page. Default is %default px." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:160 +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/calibre/src/calibre/ebooks/lrf/__init__.py:164 +msgid "" +"A regular expression. <a> tags whoose href matches will be ignored. Defaults " +"to %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:169 +msgid "" +"Prevent the automatic insertion of page breaks before detected chapters." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:173 +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/calibre/src/calibre/ebooks/lrf/__init__.py:176 +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/calibre/src/calibre/ebooks/lrf/__init__.py:186 +msgid "" +"Force a page break before tags whoose names match this regular expression." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:188 +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/calibre/src/calibre/ebooks/lrf/__init__.py:191 +msgid "Preprocess Baen HTML files to improve generated LRF." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:193 +msgid "" +"You must add this option if processing files generated by pdftohtml, " +"otherwise conversion will fail." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:195 +msgid "Use this option on html0 files from Book Designer." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:198 +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" +" " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:207 +msgid "The serif family of fonts to embed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:210 +msgid "The sans-serif family of fonts to embed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:213 +msgid "The monospace family of fonts to embed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:217 +msgid "Be verbose while processing" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:219 +msgid "Convert to LRS" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:221 +msgid "" +"Minimize memory usage at the cost of longer processing times. Use this " +"option if you are on a memory constrained machine." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/__init__.py:223 +msgid "" +"Specify the character encoding of the source file. If the output LRF file " +"contains strange characters, try changing this option. A common encoding for " +"files from windows computers is cp-1252. Another common choice is utf-8. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:143 +msgid "" +"any2lrf [options] myfile\n" +"\n" +"Convert any ebook format into LRF. Supported formats are:\n" +"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " +"RAR or\n" +"ZIP archive, looking for an ebook inside the archive.\n" +" " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/any/convert_from.py:158 +msgid "No file to convert specified." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/epub/convert_from.py:17 +msgid "" +"Usage: %prog [options] mybook.epub\n" +" \n" +" \n" +"%prog converts mybook.epub to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:18 +msgid "" +"%prog [options] mybook.fb2\n" +"\n" +"\n" +"%prog converts mybook.fb2 to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/fb2/convert_from.py:23 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:22 +msgid "Print generated HTML to stdout and quit." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:20 +msgid "Options to control the behavior of feeds2disk" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:22 +msgid "Options to control the behavior of html2lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/feeds/convert_from.py:44 +msgid "Fetching of recipe failed: " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:302 +msgid "\tBook Designer file detected." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:304 +msgid "\tParsing HTML..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:326 +msgid "\tBaen file detected. Re-parsing..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:341 +msgid "Written preprocessed HTML to " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:352 +msgid "Processing %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:366 +msgid "\tConverting to BBeB..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:504 +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:511 +msgid "Could not parse file: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:523 +msgid "Failed to parse link %s %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:566 +msgid "Cannot add link %s to TOC" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:908 +msgid "Unable to process image %s. Error: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:946 +msgid "Unable to process interlaced PNG %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:961 +msgid "" +"Could not process image: %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1651 +msgid "An error occurred while processing a table: %s. Ignoring table markup." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1653 +msgid "" +"Bad table:\n" +"%s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1675 +msgid "Table has cell that is too large" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1703 +msgid "" +"You have to save the website %s as an html file first and then run html2lrf " +"on it." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1743 +msgid "Could not read cover image: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1746 +msgid "Cannot read from: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1875 +msgid "Failed to process opf file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1881 +msgid "" +"Usage: %prog [options] mybook.html\n" +"\n" +"\n" +"%prog converts mybook.html to mybook.lrf. \n" +"%prog follows all links in mybook.html that point \n" +"to local files recursively. Thus, you can use it to \n" +"convert a whole tree of HTML files." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lit/convert_from.py:19 +msgid "" +"Usage: %prog [options] mybook.lit\n" +"\n" +"\n" +"%prog converts mybook.lit to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:254 +msgid "" +"%prog [options] file.lrs\n" +"Compile an LRS file into an LRF file." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:255 +msgid "Path to output file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:257 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:113 +msgid "Verbose processing" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/lrs/convert_from.py:259 +msgid "Convert LRS to LRS, useful for debugging." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:541 +msgid "" +"%prog [options] mybook.lrf\n" +"\n" +"\n" +"Show/edit the metadata in an LRF file.\n" +"\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:548 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:18 +msgid "Set the book title" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:550 +msgid "Set sort key for the title" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:552 +msgid "Set the author" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:554 +msgid "Set sort key for the author" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:556 +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:22 +msgid "The category this book belongs to. E.g.: History" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:559 +msgid "Path to a graphic that will be set as this files' thumbnail" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:562 +msgid "Path to a txt file containing the comment to be stored in the lrf file." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:566 +msgid "Extract thumbnail from LRF file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:568 +msgid "Set book ID" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/meta.py:570 +msgid "Don't know what this is for" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/mobi/convert_from.py:43 +msgid "" +"Usage: %prog [options] mybook.mobi|prc\n" +"\n" +"\n" +"%prog converts mybook.mobi to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:132 +msgid "" +"%prog book.lrf\n" +"Convert an LRF file into an LRS (XML UTF-8 encoded) file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:133 +msgid "Output LRS file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:151 +msgid "Parsing LRF..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:154 +msgid "Creating XML..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/parser.py:156 +msgid "LRS written to " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/convert_from.py:47 +msgid "" +"%prog [options] mybook.pdf\n" +"\n" +"\n" +"%prog converts mybook.pdf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:402 +msgid "" +"Path to output directory in which to create the HTML file. Defaults to " +"current directory." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:404 +msgid "Be more verbose." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/pdf/reflow.py:416 +msgid "You must specify a single PDF file." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/rtf/convert_from.py:20 +msgid "" +"%prog [options] mybook.rtf\n" +"\n" +"\n" +"%prog converts mybook.rtf to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/txt/convert_from.py:17 +msgid "" +"%prog [options] mybook.txt\n" +"\n" +"\n" +"%prog converts mybook.txt to mybook.lrf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:20 +msgid "Set the authors" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:24 +msgid "Set the comment" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 +msgid "Usage:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/epub.py:100 +msgid "mybook.epub" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:95 +msgid "" +"\n" +"%prog [options] key\n" +"\n" +"Fetch metadata for books from isndb.com. You can specify either the \n" +"books ISBN ID or its title and author. If you specify the title and author,\n" +"then more than one book may be returned.\n" +"\n" +"key is the account key you generate after signing up for a free account from " +"isbndb.com.\n" +"\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:106 +msgid "The ISBN ID of the book you want metadata for." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:108 +msgid "The author whoose book to search for." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:110 +msgid "The title of the book to search for." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/isbndb.py:112 +msgid "The publisher of the book to search for." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:46 +msgid "" +"Could not fetch cover as server is experiencing high load. Please try again " +"later." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:47 +msgid " not found." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:50 +msgid "Server error. Try again later." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/library_thing.py:59 +msgid "" +"\n" +"%prog [options] ISBN\n" +"\n" +"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:746 +msgid "Usage: %s file.lit" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/lit.py:753 +msgid "Cover saved to" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:39 +msgid "Usage: pdf-meta file.pdf" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:40 +msgid "No filename specified." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:297 +msgid "%prog [options] myebook.mobi" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:299 +msgid "Output directory. Defaults to current directory." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:318 +msgid "Raw MOBI HTML saved in" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:320 +msgid "OEB ebook created in" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:42 +msgid "Choose Format" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_ui.py:43 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:62 +msgid "TextLabel" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +msgid "<br>Must be a directory." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +msgid "Invalid database location " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:89 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 +msgid "Invalid database location" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:92 +msgid "Invalid database location.<br>Cannot write to " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 +msgid "Compacting database. This may take a while." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config.py:104 +msgid "Compacting..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:216 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:279 +msgid "Configuration" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:220 +msgid "Basic" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:224 +msgid "Advanced" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:226 +msgid "&Location of books database (library1.db)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:227 +msgid "Browse for the new database location" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:238 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:610 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:320 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:329 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:331 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:335 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:146 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:149 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:153 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:235 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:185 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:186 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:187 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:188 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:189 +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:190 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:272 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:278 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:280 +msgid "..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:229 +msgid "Use &Roman numerals for series number" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:230 +msgid "Default network &timeout:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:231 +msgid "" +"Set the default timeout for network fetches (i.e. anytime we go out to the " +"internet to get information)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:232 +msgid " seconds" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:233 +msgid "&Priority for conversion jobs:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:234 +msgid "Frequently used directories" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:235 +msgid "Add a directory to the frequently used directories list" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:237 +msgid "Remove a directory from the frequently used directories list" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:239 +msgid "Select visible &columns in library view" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:240 +msgid "Free unused diskspace from the database" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:241 +msgid "&Compact database" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:242 +msgid "&Metadata from file name" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/conversion_error_ui.py:37 +msgid "ERROR" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:101 +msgid "Cannot connect" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:102 +msgid "You must specify a valid access key for isbndb.com" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:89 +msgid "Fetch metadata" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:90 +msgid "Fetching metadata for <b>%1</b>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/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." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:92 +msgid "&Access Key;" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:93 +msgid "Fetch" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:94 +msgid "Matches" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata_ui.py:95 +msgid "Select the book that most closely matches your copy from the list below" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/job_view_ui.py:30 +msgid "Details of job" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:39 +msgid "Active Jobs" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/jobs_ui.py:40 +msgid "&Stop selected job" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:81 +msgid "No available formats" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:82 +msgid "Cannot convert %s as this book has no supported formats" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:86 +msgid "Choose the format to convert into LRF" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:94 +msgid "Convert %s to LRF" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:97 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:149 +msgid "Set conversion defaults" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:163 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:43 +msgid "Cannot read" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:164 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:44 +msgid "You do not have permission to read the file: " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:172 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:52 +msgid "Error reading file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:173 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:53 +msgid "<p>There was an error reading from file: <br /><b>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:179 +msgid " is not a valid picture" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:245 +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/calibre/src/calibre/gui2/dialogs/lrf_single.py:246 +msgid "<ol><li><b>baen</b> - Books from BAEN Publishers</li>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:247 +msgid "" +"<li><b>pdftohtml</b> - HTML files that are the output of the program " +"pdftohtml</li>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:248 +msgid "<li><b>book-designer</b> - HTML0 files from Book Designer</li>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 +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/calibre/src/calibre/gui2/dialogs/lrf_single.py:281 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:592 +msgid "Metadata" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 +msgid "" +"Adjust the look of the generated LRF file by specifying things like font " +"sizes and the spacing between words." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:282 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:596 +msgid "Look & Feel" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 +msgid "" +"Specify the page settings like margins and the screen size of the target " +"device." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:600 +msgid "Page Setup" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 +msgid "Fine tune the detection of chapter and section headings." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:284 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:604 +msgid "Chapter Detection" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:292 +msgid "<font color=\"gray\">No help available</font>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single.py:396 +msgid "Bulk convert ebooks to LRF" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:587 +msgid "Convert to LRF" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:588 +msgid "Category" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:606 +msgid "Options" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:607 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:332 +msgid "Book Cover" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:608 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:333 +msgid "Change &cover image:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:609 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:334 +msgid "Browse for an image to use as the cover of this book." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:611 +msgid "Use cover from &source file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:612 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:300 +msgid "&Title: " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:613 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:301 +msgid "Change the title of this book" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:614 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:129 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:302 +msgid "&Author(s): " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:615 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:617 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:303 +msgid "" +"Change the author(s) of this book. Multiple authors should be separated by a " +"comma" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:616 +msgid "Author So&rt:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:618 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:137 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:310 +msgid "&Publisher: " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:619 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:138 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:311 +msgid "Change the publisher of this book" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:620 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:312 +msgid "Ta&gs: " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:621 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:140 +#: /home/kovid/work/calibre/src/calibre/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." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:622 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:143 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:316 +msgid "&Series:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:623 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:624 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:144 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:145 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:317 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:318 +msgid "List of known series. You can add new series." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:625 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:626 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:321 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:322 +msgid "Series index." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:627 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:323 +msgid "Book " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:628 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:325 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:223 +msgid "Comments" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:629 +msgid "Base &font size:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:630 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:637 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:639 +msgid " pts" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:631 +msgid "Embedded Fonts" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:632 +msgid "&Serif:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:633 +msgid "S&ans-serif:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:634 +msgid "&Monospace:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:635 +msgid "Source en&coding:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:636 +msgid "Minimum &indent:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:638 +msgid "&Word spacing:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:640 +msgid "Enable auto &rotation of images" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:641 +msgid "Insert &blank lines between paragraphs" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:642 +msgid "Ignore &tables" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:643 +msgid "Ignore &colors" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:644 +msgid "&Preprocess:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:645 +msgid "Header" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:646 +msgid "&Show header" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:647 +msgid "&Header format:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:648 +msgid "Override<br>CSS" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:649 +msgid "&Profile:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:650 +msgid "&Left Margin:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:651 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:653 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:655 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:657 +msgid " px" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:652 +msgid "&Right Margin:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:654 +msgid "&Top Margin:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:656 +msgid "&Bottom Margin:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:658 +msgid "Title based detection" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:659 +msgid "&Disable chapter detection" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:660 +msgid "&Regular expression:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:661 +msgid "Tag based detection" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:662 +msgid "&Page break before tag:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:663 +msgid "&Force page break before tag:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:664 +msgid "Force page break before &attribute:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:665 +msgid "Help on item" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/lrf_single_ui.py:666 +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=\"-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/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:127 +msgid "Edit Meta information" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:128 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:299 +msgid "Meta information" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:131 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:304 +msgid "Author S&ort: " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:132 +#: /home/kovid/work/calibre/src/calibre/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." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:133 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:306 +msgid "&Rating:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:134 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:135 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:307 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:308 +msgid "Rating of this book. 0-5 stars" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:136 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:309 +msgid " stars" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:139 +msgid "Add Ta&gs: " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:141 +msgid "&Remove tags:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:142 +msgid "Comma separated list of tags to remove from the books. " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:224 +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/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 +msgid "<b>Could not fetch cover.</b><br/>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:254 +msgid "Could not fetch cover" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 +msgid "Cannot fetch cover" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:260 +msgid "You must specify the ISBN identifier for this book." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:298 +msgid "Edit Meta Information" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:314 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:315 +msgid "Open Tag Editor" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:319 +msgid "Remove unused series (Series that have no books)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:324 +msgid "IS&BN:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:326 +msgid "Fetch metadata from server" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:327 +msgid "Available Formats" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:328 +msgid "Add a new format for this book to the database" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:330 +msgid "Remove the selected formats for this book from the database." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:336 +msgid "Fetch cover image from server" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:337 +msgid "" +"Change the username and/or password for your account at LibraryThing.com" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single_ui.py:338 +msgid "Change password" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:61 +msgid "Password needed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:63 +msgid "&Username:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:64 +msgid "&Password:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/password_ui.py:65 +msgid "&Show password" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:14 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:336 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:700 +msgid "Title" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:15 +msgid "Author" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:17 +msgid "Tag" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:18 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:343 +msgid "Series" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:19 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:634 +msgid "Format" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search.py:20 +msgid "Any" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:40 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:110 +msgid "Form" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:41 +msgid "contains" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:42 +msgid "The text to search for. It is interpreted as a regular expression." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/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." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:44 +msgid "Negate" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:80 +msgid "Advanced Search" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:81 +msgid "Match a&ll of the following criteria" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:82 +msgid "Match a&ny of the following criteria" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:83 +msgid "Search criteria" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:84 +msgid "More" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:85 +msgid "Fewer" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:141 +msgid "Tag Editor" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:142 +msgid "A&vailable tags" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/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." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:145 +msgid "Apply tag to current book" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:147 +msgid "A&pplied tags" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:148 +msgid "Unapply (remove) tag from current book" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:150 +msgid "&Add tag:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/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." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor_ui.py:152 +msgid "Add tag to available tags and apply it to current book" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:48 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:58 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:222 +msgid "Switch to Advanced mode" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:53 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:61 +msgid "Switch to Basic mode" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:71 +msgid "Feed must have a title" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:72 +msgid "The feed must have a title" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:76 +msgid "Feed must have a URL" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:77 +msgid "The feed %s must have a URL" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:82 +msgid "Already exists" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:83 +msgid "This feed has already been added to the recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:133 +msgid "Invalid input" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:125 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:134 +msgid "<p>Could not create recipe. Error:<br>%s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:140 +msgid "Replace recipe?" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles.py:141 +msgid "A custom recipe named %s already exists. Do you want to replace it?" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:218 +msgid "Add custom news source" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:219 +msgid "Available user recipes" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:220 +msgid "Add/Update &recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:221 +msgid "&Remove recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:223 +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 mode\" to further customize the fetch process.</p></" +"body></html>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:227 +msgid "Recipe &title:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:228 +msgid "&Oldest article:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:229 +msgid "The oldest article to download" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:230 +msgid " days" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:231 +msgid "&Max. number of articles per feed:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:232 +msgid "Maximum number of articles to download per feed." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:233 +msgid "Feeds in recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:234 +msgid "Remove feed from recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:236 +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:239 +msgid "Add feed to recipe" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:237 +msgid "&Feed title:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:238 +msgid "Feed &URL:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:240 +msgid "&Add feed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:241 +msgid "" +"For help with writing advanced news recipes, please visit <a href=\"http://" +"calibre.kovidgoyal.net/user_manual/news.html\">User Recipes</a>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/user_profiles_ui.py:242 +msgid "Recipe source code (python)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:111 +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/calibre/src/calibre/gui2/filename_pattern_ui.py:112 +msgid "Regular &expression" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:113 +msgid "&Test" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:114 +msgid "File &name:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:115 +msgid "Test" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:116 +msgid "Title:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:117 +msgid "Regular expression group name (?P<title>)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:118 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:121 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:124 +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:127 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:41 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:45 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:50 +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:55 +msgid "No match" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:119 +msgid "Authors:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:120 +msgid "Regular expression group name (?P<authors>)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:122 +msgid "Series:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:123 +msgid "Regular expression group name (?P<series>)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:125 +msgid "Series index:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:126 +msgid "Regular expression group name (?P<series_index>)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:279 +msgid "Job" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:280 +msgid "Status" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:281 +msgid "Progress" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:282 +msgid "Running time" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 +msgid "Error" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:310 +msgid "Finished" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 +msgid "Waiting" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:312 +msgid "Working" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:315 +msgid "Unavailable" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:343 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:347 +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:351 +msgid "Cannot kill job" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:344 +msgid "" +"Cannot kill jobs that are communicating with the device as this may cause " +"data corruption." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:348 +msgid "Cannot kill already completed jobs." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:352 +msgid "Cannot kill waiting jobs." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:212 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:218 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:222 +msgid "None" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:213 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:342 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:640 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:704 +msgid "Tags" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:219 +msgid "Formats" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:228 +msgid "Book <font face=\"serif\">%s</font> of %s." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:328 +msgid "Double click to <b>edit</b> me<br><br>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:337 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:701 +msgid "Author(s)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:338 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:702 +msgid "Size (MB)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:339 +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:703 +msgid "Date" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:340 +msgid "Rating" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:635 +msgid "Path" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:639 +msgid "Timestamp" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/library.py:739 +msgid "Search (For Advanced Search click the button to the left)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:51 +msgid "Configure Viewer" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:52 +msgid "Use white background" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:53 +msgid "Hyphenate" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/config_ui.py:54 +msgid "<b>Changes will only take affect after a restart." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 +msgid "<b>No matches</b> for the search phrase <i>%s</i> were found." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main.py:152 +msgid "No matches found" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:184 +msgid "LRF Viewer" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:191 +msgid "Parsing LRF file" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:192 +msgid "Next Page" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:193 +msgid "Previous Page" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:194 +msgid "Back" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:195 +msgid "Forward" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:196 +msgid "Next match" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:197 +msgid "Open ebook" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/lrf_renderer/main_ui.py:198 +msgid "Configure" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:72 +msgid "Error communicating with device" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:102 +msgid "Send to main memory" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:103 +msgid "Send to storage card" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106 +msgid "Edit metadata individually" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:107 +msgid "Edit metadata in bulk" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:110 +msgid "Add books from a single directory" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:111 +msgid "" +"Add books recursively (One book per directory, assumes every ebook file is " +"the same book in a different format)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:112 +msgid "" +"Add books recursively (Multiple books per directory, assumes every ebook " +"file is a different book)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:126 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:289 +msgid "Save to disk" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:127 +msgid "Save to disk in a single directory" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:130 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:292 +msgid "View" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:131 +msgid "View specific format" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:146 +msgid "Convert individually" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:147 +msgid "Bulk convert" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:260 +msgid "Device database corrupted" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:261 +msgid "" +"\n" +" <p>The database of books on the reader is corrupted. Try the " +"following:\n" +" <ol>\n" +" <li>Unplug the reader. Wait for it to finish regenerating " +"the database (i.e. wait till it is ready to be used). Plug it back in. Now " +"it should work with %(app)s. If not try the next step.</li>\n" +" <li>Quit %(app)s. Find the file media.xml in the reader's " +"main memory. Delete it. Unplug the reader. Wait for it to regenerate the " +"file. Re-connect it and start %(app)s.</li>\n" +" </ol>\n" +" " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:313 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:379 +msgid "" +"<p>Books with the same title as the following already exist in the database. " +"Add them anyway?<ul>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:316 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:382 +msgid "Duplicates found!" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:412 +msgid "No space on device" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:413 +msgid "<p>Cannot upload books to device there is no more free space available " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 +msgid "Cannot edit metadata" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:482 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:501 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 +msgid "No books selected" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:587 +msgid "Cannot save to disk" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:626 +msgid "Fetch news from " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:628 +msgid "Fetching news from " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:638 +msgid "News fetched. Uploading to device." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:648 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:707 +msgid "Cannot convert" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 +msgid "No book selected" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:784 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:798 +msgid "Cannot view" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:773 +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:803 +msgid "Choose the format to view" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:799 +msgid "%s has no available formats." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 +msgid "Cannot configure" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:828 +msgid "Cannot configure while there are running jobs." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:863 +msgid "Invalid database" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:864 +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/calibre/src/calibre/gui2/main.py:872 +msgid "Could not move database" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922 +msgid "Error talking to device" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923 +msgid "" +"There was a temporary error talking to the device. Please unplug and " +"reconnect the device and or reboot." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1003 +msgid "" +"<span style=\"color:red; font-weight:bold\">Latest version: <a href=\"%s\">%" +"s</a></span>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:266 +msgid "calibre" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:267 +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:'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://calibre.kovidgoyal.net/user_manual\"><span style=\" text-" +"decoration: underline; color:#0000ff;\">calibre.kovidgoyal.net</span></" +"a><br /><br /><span style=\" font-weight:600;\">calibre</span>: %1 by <span " +"style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</p></body></html>" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:271 +msgid "Advanced search" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:273 +msgid "Alt+S" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:274 +msgid "&Search:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:275 +msgid "" +"Search the list of books by title or author<br><br>Words separated by spaces " +"are ANDed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/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" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:277 +msgid "Reset Quick Search" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:281 +msgid "Add books" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:282 +msgid "A" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:283 +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:284 +msgid "Remove books" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:285 +msgid "Del" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:286 +msgid "Edit meta information" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:287 +msgid "E" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:288 +msgid "Send to device" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:290 +msgid "Fetch news" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:291 +msgid "Convert E-books" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:32 +msgid "Add a custom news source" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/news.py:53 +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/calibre/src/calibre/gui2/news.py:79 +msgid "Custom news sources" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:87 +msgid "Jobs:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/status.py:96 +msgid "Click to see list of active jobs." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:34 +msgid "Invalid regular expression" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:35 +msgid "Invalid regular expression: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:86 +msgid "Library" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:87 +msgid "" +"Reader\n" +"%s available" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/gui2/widgets.py:88 +msgid "" +"Card\n" +"%s available" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/parallel.py:114 +msgid "Job killed by user" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:56 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:77 +msgid "Unknown feed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:95 +#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:115 +msgid "Untitled article" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:15 +msgid "" +"%%prog [options] ARG\n" +"\n" +"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" +"fetches the article contents organized in a nice hierarchy.\n" +"\n" +"ARG can be one of:\n" +"\n" +"file name - %%prog will try to load a recipe from the file\n" +"\n" +"builtin recipe title - %%prog will load the builtin recipe and use it to " +"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" +"\n" +"recipe as a string - %%prog will load the recipe directly from the string " +"arg.\n" +"\n" +"Available builtin recipes are:\n" +"%s\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:37 +msgid "Options to control web2disk (used to fetch websites linked from feeds)" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:40 +msgid "" +"Specify a list of feeds to download. For example: \n" +"\"['http://feeds.newsweek.com/newsweek/TopNews', 'http://feeds.newsweek.com/" +"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/calibre/src/calibre/web/feeds/main.py:44 +msgid "Be more verbose while processing." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:46 +msgid "" +"The title for this recipe. Used as the title for any ebooks created from the " +"downloaded feeds." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:47 +msgid "Username for sites that require a login to access content." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:48 +msgid "Password for sites that require a login to access content." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:51 +msgid "" +"Number of levels of links to follow on webpages that are linked to from " +"feeds. Defaul %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:53 +msgid "" +"The directory in which to store the downloaded feeds. Defaults to the " +"current directory." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:55 +msgid "Dont show the progress bar" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:57 +msgid "Very verbose output, useful for debugging." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:59 +msgid "" +"Useful for recipe development. Forces max_articles_per_feed to 2 and " +"downloads at most 2 feeds." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:84 +#: /home/kovid/work/calibre/src/calibre/web/feeds/main.py:88 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:567 +msgid "Fetching feeds..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:33 +msgid "Unknown News Source" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:468 +msgid "Download finished" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:470 +msgid "Failed to download the following articles:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:472 +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:478 +msgid " from " +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:476 +msgid "Failed to download parts of the following articles:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:480 +msgid "\tFailed links:" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:549 +msgid "Could not fetch article. Run with --debug to see the reason" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:571 +msgid "Got feeds from index page" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:575 +msgid "Trying to download cover..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:625 +msgid "Starting download [%d thread(s)]..." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:639 +msgid "Feeds downloaded to %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:648 +msgid "Could not download cover: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:653 +msgid "Downloading cover from %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:688 +msgid "Untitled Article" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:729 +msgid "" +"\n" +"Downloaded article %s from %s\n" +"%s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:735 +msgid "Article downloaded: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:741 +msgid "Failed to download article: %s from %s\n" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:746 +msgid "Article download failed: %s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:761 +msgid "Fetching feed" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:373 +msgid "" +"%prog URL\n" +"\n" +"Where URL is for example http://google.com" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:376 +msgid "Base directory into which URL is saved. Default is %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:379 +msgid "" +"Timeout in seconds to wait for a response from the server. Default: %default " +"s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:382 +msgid "" +"Maximum number of levels to recurse i.e. depth of links to follow. Default %" +"default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:385 +msgid "" +"The maximum number of files to download. This only applies to files from <a " +"href> tags. Default is %default" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:387 +msgid "" +"Minimum interval in seconds between consecutive fetches. Default is %default " +"s" +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:389 +msgid "" +"The character encoding for the websites you are trying to download. The " +"default is to try and guess the encoding." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:391 +msgid "" +"Only links that match this regular expression will be followed. This option " +"can be specified multiple times, in which case as long as a link matches any " +"one regexp, it will be followed. By default all links are followed." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:393 +msgid "" +"Any link that matches this regular expression will be ignored. This option " +"can be specified multiple times, in which case as long as any regexp matches " +"a link, it will be ignored.By default, no links are ignored. If both --" +"filter-regexp and --match-regexp are specified, then --filter-regexp is " +"applied first." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:395 +msgid "Do not download CSS stylesheets." +msgstr "" + +#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:396 +msgid "Show detailed output information. Useful for debugging" +msgstr "" diff --git a/src/libprs500/web/__init__.py b/src/calibre/web/__init__.py similarity index 100% rename from src/libprs500/web/__init__.py rename to src/calibre/web/__init__.py diff --git a/src/libprs500/web/feeds/__init__.py b/src/calibre/web/feeds/__init__.py similarity index 99% rename from src/libprs500/web/feeds/__init__.py rename to src/calibre/web/feeds/__init__.py index 389aa9da3b..fb5767a81c 100644 --- a/src/libprs500/web/feeds/__init__.py +++ b/src/calibre/web/feeds/__init__.py @@ -8,7 +8,7 @@ Contains the logic for parsing feeds. import time, logging, traceback from datetime import datetime -from libprs500.web.feeds.feedparser import parse +from calibre.web.feeds.feedparser import parse class Article(object): diff --git a/src/libprs500/web/feeds/feedparser.py b/src/calibre/web/feeds/feedparser.py similarity index 99% rename from src/libprs500/web/feeds/feedparser.py rename to src/calibre/web/feeds/feedparser.py index 710a5e53c1..f2b0ee74e9 100755 --- a/src/libprs500/web/feeds/feedparser.py +++ b/src/calibre/web/feeds/feedparser.py @@ -121,7 +121,7 @@ except: # chardet library auto-detects character encodings # Download from http://chardet.feedparser.org/ try: - import libprs500.ebooks.chardet as chardet # Changed by Kovid + import calibre.ebooks.chardet as chardet # Changed by Kovid except: chardet = None diff --git a/src/libprs500/web/feeds/main.py b/src/calibre/web/feeds/main.py similarity index 93% rename from src/libprs500/web/feeds/main.py rename to src/calibre/web/feeds/main.py index 5a31b0b06a..33554eb0b1 100644 --- a/src/libprs500/web/feeds/main.py +++ b/src/calibre/web/feeds/main.py @@ -6,10 +6,10 @@ CLI for downloading feeds. ''' import sys, os, logging -from libprs500.web.feeds.recipes import get_builtin_recipe, compile_recipe, titles -from libprs500.web.fetch.simple import option_parser as _option_parser -from libprs500.web.feeds.news import Profile2Recipe, BasicNewsRecipe -from libprs500.ebooks.lrf.web.profiles import DefaultProfile, FullContentProfile +from calibre.web.feeds.recipes import get_builtin_recipe, compile_recipe, titles +from calibre.web.fetch.simple import option_parser as _option_parser +from calibre.web.feeds.news import Profile2Recipe, BasicNewsRecipe +from calibre.ebooks.lrf.web.profiles import DefaultProfile, FullContentProfile def option_parser(usage=_('''\ @@ -77,7 +77,7 @@ class RecipeError(Exception): def run_recipe(opts, recipe_arg, parser, notification=None, handler=None): if notification is None: - from libprs500.terminfo import TerminalController, ProgressBar + from calibre.terminfo import TerminalController, ProgressBar term = TerminalController(sys.stdout) if opts.progress_bar: try: @@ -118,7 +118,7 @@ def run_recipe(opts, recipe_arg, parser, notification=None, handler=None): if handler is None: - from libprs500 import ColoredFormatter + from calibre import ColoredFormatter handler = logging.StreamHandler(sys.stdout) handler.setLevel(logging.DEBUG if opts.debug else logging.INFO if opts.verbose else logging.WARN) handler.setFormatter(ColoredFormatter('%(levelname)s: %(message)s\n')) # The trailing newline is need because of the progress bar diff --git a/src/libprs500/web/feeds/news.py b/src/calibre/web/feeds/news.py similarity index 97% rename from src/libprs500/web/feeds/news.py rename to src/calibre/web/feeds/news.py index c5fbaf921f..438b1a4b8f 100644 --- a/src/libprs500/web/feeds/news.py +++ b/src/calibre/web/feeds/news.py @@ -10,18 +10,18 @@ __docformat__ = "restructuredtext en" import logging, os, cStringIO, time, traceback, re, urlparse from collections import defaultdict -from libprs500 import browser, __appname__, iswindows -from libprs500.ebooks.BeautifulSoup import BeautifulSoup, NavigableString, CData, Tag -from libprs500.ebooks.metadata.opf import OPFCreator -from libprs500.ebooks.lrf import entity_to_unicode -from libprs500.ebooks.metadata.toc import TOC -from libprs500.ebooks.metadata import MetaInformation -from libprs500.web.feeds import feed_from_xml, templates, feeds_from_index -from libprs500.web.fetch.simple import option_parser as web2disk_option_parser -from libprs500.web.fetch.simple import RecursiveFetcher -from libprs500.threadpool import WorkRequest, ThreadPool, NoResultsPending -from libprs500.ebooks.lrf.web.profiles import FullContentProfile -from libprs500.ptempfile import PersistentTemporaryFile +from calibre import browser, __appname__, iswindows +from calibre.ebooks.BeautifulSoup import BeautifulSoup, NavigableString, CData, Tag +from calibre.ebooks.metadata.opf import OPFCreator +from calibre.ebooks.lrf import entity_to_unicode +from calibre.ebooks.metadata.toc import TOC +from calibre.ebooks.metadata import MetaInformation +from calibre.web.feeds import feed_from_xml, templates, feeds_from_index +from calibre.web.fetch.simple import option_parser as web2disk_option_parser +from calibre.web.fetch.simple import RecursiveFetcher +from calibre.threadpool import WorkRequest, ThreadPool, NoResultsPending +from calibre.ebooks.lrf.web.profiles import FullContentProfile +from calibre.ptempfile import PersistentTemporaryFile class BasicNewsRecipe(object): diff --git a/src/libprs500/web/feeds/recipes/__init__.py b/src/calibre/web/feeds/recipes/__init__.py similarity index 87% rename from src/libprs500/web/feeds/recipes/__init__.py rename to src/calibre/web/feeds/recipes/__init__.py index fb2126d71c..04e8d36aa5 100644 --- a/src/libprs500/web/feeds/recipes/__init__.py +++ b/src/calibre/web/feeds/recipes/__init__.py @@ -11,20 +11,20 @@ recipes = [ ] import re, imp, inspect, time -from libprs500.web.feeds.news import BasicNewsRecipe, CustomIndexRecipe, AutomaticNewsRecipe -from libprs500.ebooks.lrf.web.profiles import DefaultProfile, FullContentProfile -from libprs500.ebooks.lrf.web import builtin_profiles -from libprs500.ebooks.BeautifulSoup import BeautifulSoup -from libprs500.path import path -from libprs500.ptempfile import PersistentTemporaryDirectory -from libprs500 import __appname__, english_sort +from calibre.web.feeds.news import BasicNewsRecipe, CustomIndexRecipe, AutomaticNewsRecipe +from calibre.ebooks.lrf.web.profiles import DefaultProfile, FullContentProfile +from calibre.ebooks.lrf.web import builtin_profiles +from calibre.ebooks.BeautifulSoup import BeautifulSoup +from calibre.path import path +from calibre.ptempfile import PersistentTemporaryDirectory +from calibre import __appname__, english_sort basic_recipes = (BasicNewsRecipe, AutomaticNewsRecipe, CustomIndexRecipe, DefaultProfile, FullContentProfile) basic_recipe_names = (i.__name__ for i in basic_recipes) #: Compiled builtin recipe/profile classes -def load_recipe(module, package='libprs500.web.feeds.recipes'): +def load_recipe(module, package='calibre.web.feeds.recipes'): module = __import__(package+'.'+module, fromlist=['']) for attr in dir(module): obj = getattr(module, attr) diff --git a/src/libprs500/web/feeds/recipes/atlantic.py b/src/calibre/web/feeds/recipes/atlantic.py similarity index 97% rename from src/libprs500/web/feeds/recipes/atlantic.py rename to src/calibre/web/feeds/recipes/atlantic.py index 063b39f991..61c3bf0089 100644 --- a/src/libprs500/web/feeds/recipes/atlantic.py +++ b/src/calibre/web/feeds/recipes/atlantic.py @@ -6,7 +6,7 @@ __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' theatlantic.com ''' -from libprs500.web.feeds.news import BasicNewsRecipe +from calibre.web.feeds.news import BasicNewsRecipe class TheAtlantic(BasicNewsRecipe): diff --git a/src/libprs500/web/feeds/recipes/bbc.py b/src/calibre/web/feeds/recipes/bbc.py similarity index 97% rename from src/libprs500/web/feeds/recipes/bbc.py rename to src/calibre/web/feeds/recipes/bbc.py index c551f054be..01aa039cf9 100644 --- a/src/libprs500/web/feeds/recipes/bbc.py +++ b/src/calibre/web/feeds/recipes/bbc.py @@ -6,7 +6,7 @@ __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' bbc.co.uk ''' -from libprs500.web.feeds.news import BasicNewsRecipe +from calibre.web.feeds.news import BasicNewsRecipe class BBC(BasicNewsRecipe): title = u'The BBC' diff --git a/src/libprs500/web/feeds/recipes/dilbert.py b/src/calibre/web/feeds/recipes/dilbert.py similarity index 89% rename from src/libprs500/web/feeds/recipes/dilbert.py rename to src/calibre/web/feeds/recipes/dilbert.py index 2c7737e830..c5091ddf93 100644 --- a/src/libprs500/web/feeds/recipes/dilbert.py +++ b/src/calibre/web/feeds/recipes/dilbert.py @@ -6,8 +6,8 @@ __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' Daily Dilbert ''' import os -from libprs500.web.feeds.news import CustomIndexRecipe -from libprs500.ptempfile import PersistentTemporaryDirectory +from calibre.web.feeds.news import CustomIndexRecipe +from calibre.ptempfile import PersistentTemporaryDirectory class Dilbert(CustomIndexRecipe): diff --git a/src/libprs500/web/feeds/recipes/economist.py b/src/calibre/web/feeds/recipes/economist.py similarity index 95% rename from src/libprs500/web/feeds/recipes/economist.py rename to src/calibre/web/feeds/recipes/economist.py index 79407c5c64..8794886d21 100644 --- a/src/libprs500/web/feeds/recipes/economist.py +++ b/src/calibre/web/feeds/recipes/economist.py @@ -5,8 +5,8 @@ __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' ''' economist.com ''' -from libprs500.web.feeds.news import BasicNewsRecipe -from libprs500.ebooks.BeautifulSoup import BeautifulSoup +from calibre.web.feeds.news import BasicNewsRecipe +from calibre.ebooks.BeautifulSoup import BeautifulSoup import mechanize, string from urllib2 import quote diff --git a/src/libprs500/web/feeds/recipes/greader.py b/src/calibre/web/feeds/recipes/greader.py similarity index 92% rename from src/libprs500/web/feeds/recipes/greader.py rename to src/calibre/web/feeds/recipes/greader.py index e8dde44a43..011718feae 100644 --- a/src/libprs500/web/feeds/recipes/greader.py +++ b/src/calibre/web/feeds/recipes/greader.py @@ -1,6 +1,6 @@ import urllib, re, mechanize -from libprs500.web.feeds.recipes import BasicNewsRecipe -from libprs500 import __appname__ +from calibre.web.feeds.recipes import BasicNewsRecipe +from calibre import __appname__ class GoogleReader(BasicNewsRecipe): title = 'Google Reader' diff --git a/src/libprs500/web/feeds/recipes/newsweek.py b/src/calibre/web/feeds/recipes/newsweek.py similarity index 97% rename from src/libprs500/web/feeds/recipes/newsweek.py rename to src/calibre/web/feeds/recipes/newsweek.py index c5203a66da..cab07d974f 100644 --- a/src/libprs500/web/feeds/recipes/newsweek.py +++ b/src/calibre/web/feeds/recipes/newsweek.py @@ -3,8 +3,8 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' import re, string, time -from libprs500.web.feeds.news import BasicNewsRecipe -from libprs500.ebooks.BeautifulSoup import BeautifulSoup +from calibre.web.feeds.news import BasicNewsRecipe +from calibre.ebooks.BeautifulSoup import BeautifulSoup class Newsweek(BasicNewsRecipe): diff --git a/src/libprs500/web/feeds/recipes/nytimes.py b/src/calibre/web/feeds/recipes/nytimes.py similarity index 98% rename from src/libprs500/web/feeds/recipes/nytimes.py rename to src/calibre/web/feeds/recipes/nytimes.py index 2fe736af44..3e1fca6279 100644 --- a/src/libprs500/web/feeds/recipes/nytimes.py +++ b/src/calibre/web/feeds/recipes/nytimes.py @@ -6,7 +6,7 @@ __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' nytimes.com ''' import time, string -from libprs500.web.feeds.recipes import BasicNewsRecipe +from calibre.web.feeds.recipes import BasicNewsRecipe class NYTimes(BasicNewsRecipe): diff --git a/src/libprs500/web/feeds/recipes/outlook_india.py b/src/calibre/web/feeds/recipes/outlook_india.py similarity index 98% rename from src/libprs500/web/feeds/recipes/outlook_india.py rename to src/calibre/web/feeds/recipes/outlook_india.py index 021a7e9890..c5782d1536 100644 --- a/src/libprs500/web/feeds/recipes/outlook_india.py +++ b/src/calibre/web/feeds/recipes/outlook_india.py @@ -6,7 +6,7 @@ __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' outlookindia.com ''' -from libprs500.web.feeds.news import BasicNewsRecipe +from calibre.web.feeds.news import BasicNewsRecipe import re class OutlookIndia(BasicNewsRecipe): diff --git a/src/libprs500/web/feeds/recipes/portfolio.py b/src/calibre/web/feeds/recipes/portfolio.py similarity index 96% rename from src/libprs500/web/feeds/recipes/portfolio.py rename to src/calibre/web/feeds/recipes/portfolio.py index dbc89e580f..a8cad99d17 100644 --- a/src/libprs500/web/feeds/recipes/portfolio.py +++ b/src/calibre/web/feeds/recipes/portfolio.py @@ -6,7 +6,7 @@ __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' portfolio.com ''' -from libprs500.web.feeds.news import BasicNewsRecipe +from calibre.web.feeds.news import BasicNewsRecipe class Portfolio(BasicNewsRecipe): diff --git a/src/libprs500/web/feeds/recipes/usatoday.py b/src/calibre/web/feeds/recipes/usatoday.py similarity index 97% rename from src/libprs500/web/feeds/recipes/usatoday.py rename to src/calibre/web/feeds/recipes/usatoday.py index 530d110b1d..6712ad2028 100644 --- a/src/libprs500/web/feeds/recipes/usatoday.py +++ b/src/calibre/web/feeds/recipes/usatoday.py @@ -6,7 +6,7 @@ __copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' usatoday.com ''' -from libprs500.web.feeds.news import BasicNewsRecipe +from calibre.web.feeds.news import BasicNewsRecipe import re class USAToday(BasicNewsRecipe): diff --git a/src/libprs500/web/feeds/recipes/wired.py b/src/calibre/web/feeds/recipes/wired.py similarity index 97% rename from src/libprs500/web/feeds/recipes/wired.py rename to src/calibre/web/feeds/recipes/wired.py index de15ac6e6f..d5951483d5 100644 --- a/src/libprs500/web/feeds/recipes/wired.py +++ b/src/calibre/web/feeds/recipes/wired.py @@ -4,7 +4,7 @@ __docformat__ = 'restructuredtext en' import re -from libprs500.web.feeds.news import BasicNewsRecipe +from calibre.web.feeds.news import BasicNewsRecipe class Wired(BasicNewsRecipe): diff --git a/src/libprs500/web/feeds/recipes/wsj.py b/src/calibre/web/feeds/recipes/wsj.py similarity index 99% rename from src/libprs500/web/feeds/recipes/wsj.py rename to src/calibre/web/feeds/recipes/wsj.py index c91050fb85..b6ab4f6f1a 100644 --- a/src/libprs500/web/feeds/recipes/wsj.py +++ b/src/calibre/web/feeds/recipes/wsj.py @@ -3,7 +3,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' -from libprs500.web.feeds.news import BasicNewsRecipe +from calibre.web.feeds.news import BasicNewsRecipe import re, urlparse class WallStreetJournal(BasicNewsRecipe): diff --git a/src/libprs500/web/feeds/templates.py b/src/calibre/web/feeds/templates.py similarity index 100% rename from src/libprs500/web/feeds/templates.py rename to src/calibre/web/feeds/templates.py diff --git a/src/libprs500/web/fetch/__init__.py b/src/calibre/web/fetch/__init__.py similarity index 100% rename from src/libprs500/web/fetch/__init__.py rename to src/calibre/web/fetch/__init__.py diff --git a/src/libprs500/web/fetch/simple.py b/src/calibre/web/fetch/simple.py similarity index 98% rename from src/libprs500/web/fetch/simple.py rename to src/calibre/web/fetch/simple.py index ac851a87f4..5896d75185 100644 --- a/src/libprs500/web/fetch/simple.py +++ b/src/calibre/web/fetch/simple.py @@ -11,9 +11,9 @@ import sys, socket, os, urlparse, codecs, logging, re, time, copy, urllib2, thre from urllib import url2pathname from httplib import responses -from libprs500 import setup_cli_handlers, browser, sanitize_file_name, OptionParser, relpath -from libprs500.ebooks.BeautifulSoup import BeautifulSoup, Tag -from libprs500.ebooks.chardet import xml_to_unicode +from calibre import setup_cli_handlers, browser, sanitize_file_name, OptionParser, relpath +from calibre.ebooks.BeautifulSoup import BeautifulSoup, Tag +from calibre.ebooks.chardet import xml_to_unicode class FetchError(Exception): pass diff --git a/src/libprs500/ebooks/lrf/web/__init__.py b/src/libprs500/ebooks/lrf/web/__init__.py deleted file mode 100644 index 7ae640c34c..0000000000 --- a/src/libprs500/ebooks/lrf/web/__init__.py +++ /dev/null @@ -1,38 +0,0 @@ -__license__ = 'GPL v3' -__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' - -from libprs500.ebooks.lrf.web.profiles.nytimes import NYTimes -from libprs500.ebooks.lrf.web.profiles.bbc import BBC -from libprs500.ebooks.lrf.web.profiles.newsweek import Newsweek -from libprs500.ebooks.lrf.web.profiles.economist import Economist -from libprs500.ebooks.lrf.web.profiles.newyorkreview import NewYorkReviewOfBooks -from libprs500.ebooks.lrf.web.profiles.spiegelde import SpiegelOnline -from libprs500.ebooks.lrf.web.profiles.zeitde import ZeitNachrichten -from libprs500.ebooks.lrf.web.profiles.faznet import FazNet -from libprs500.ebooks.lrf.web.profiles.wsj import WallStreetJournal -from libprs500.ebooks.lrf.web.profiles.barrons import Barrons -from libprs500.ebooks.lrf.web.profiles.portfolio import Portfolio -from libprs500.ebooks.lrf.web.profiles.dilbert import Dilbert -from libprs500.ebooks.lrf.web.profiles.cnn import CNN -from libprs500.ebooks.lrf.web.profiles.chr_mon import ChristianScienceMonitor -from libprs500.ebooks.lrf.web.profiles.jpost import JerusalemPost -from libprs500.ebooks.lrf.web.profiles.reuters import Reuters -from libprs500.ebooks.lrf.web.profiles.atlantic import Atlantic -from libprs500.ebooks.lrf.web.profiles.ap import AssociatedPress -from libprs500.ebooks.lrf.web.profiles.newyorker import NewYorker -from libprs500.ebooks.lrf.web.profiles.jutarnji import Jutarnji -from libprs500.ebooks.lrf.web.profiles.usatoday import USAToday -from libprs500.ebooks.lrf.web.profiles.upi import UnitedPressInternational -from libprs500.ebooks.lrf.web.profiles.wash_post import WashingtonPost -from libprs500.ebooks.lrf.web.profiles.nasa import NASA - - -builtin_profiles = [Atlantic, AssociatedPress, Barrons, BBC, - ChristianScienceMonitor, CNN, Dilbert, Economist, FazNet, - JerusalemPost, Jutarnji, NASA, Newsweek, NewYorker, - NewYorkReviewOfBooks, NYTimes, UnitedPressInternational, USAToday, - Portfolio, Reuters, SpiegelOnline, WallStreetJournal, - WashingtonPost, ZeitNachrichten, - ] - -available_profiles = [i.__module__.rpartition('.')[2] for i in builtin_profiles] \ No newline at end of file diff --git a/src/libprs500/ebooks/markdown/__init__.py b/src/libprs500/ebooks/markdown/__init__.py deleted file mode 100644 index 98ad30583d..0000000000 --- a/src/libprs500/ebooks/markdown/__init__.py +++ /dev/null @@ -1,5 +0,0 @@ -''' Package defines lightweight markup language for processing of txt files''' -# Initialize extensions -from libprs500.ebooks.markdown import mdx_footnotes -from libprs500.ebooks.markdown import mdx_tables -from libprs500.ebooks.markdown import mdx_toc \ No newline at end of file diff --git a/src/libprs500/manual/global.rst b/src/libprs500/manual/global.rst deleted file mode 100644 index 8d4dcd896f..0000000000 --- a/src/libprs500/manual/global.rst +++ /dev/null @@ -1 +0,0 @@ -.. |app| replace:: libprs500 diff --git a/src/libprs500/trac/__init__.py b/src/libprs500/trac/__init__.py deleted file mode 100644 index 9aa6b89c83..0000000000 --- a/src/libprs500/trac/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -__license__ = 'GPL v3' -__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>' -''' -To test -sudo tracd --port 8000 --auth libprs500,/var/www/localhost/htdocs/libprs500/passwd,libprs500 /var/www/localhost/htdocs/libprs500 -''' diff --git a/src/libprs500/translations/ca.po b/src/libprs500/translations/ca.po deleted file mode 100644 index 837fe2cf9d..0000000000 --- a/src/libprs500/translations/ca.po +++ /dev/null @@ -1,2572 +0,0 @@ -# translation of ca.po to Catalan -# Translation template file.. -# Copyright (C) 2007 Kovid Goyal -# Kovid Goyal <kovid@kovidgoyal.net>, 2007. -# S. Dorscht <stdoonline@googlemail.com>, 2007. -# Raül Utrera <>, 2007. -# -# -msgid "" -msgstr "" -"Project-Id-Version: ca\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2008-04-04 09:07+PDT\n" -"PO-Revision-Date: 2007-11-16 09:07+0100\n" -"Last-Translator: libprs500\n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: KBabel 1.11.4\n" - -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:85 -msgid "%sUsage%s: %s\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:122 -msgid "Created by " -msgstr "Creat per " - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:88 -msgid "Set the title. Default: filename." -msgstr "Indique el títol. Per defecte: nom_del_fitxer." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:90 -msgid "" -"Set the author(s). Multiple authors should be set as a comma separated list. " -"Default: %default" -msgstr "" -"Indiqueu l'autor(s). Si indique més d'un autor, separeu el llistat amb " -"comes. Per defecte: %default" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:91 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:630 -msgid "Unknown" -msgstr "Desconegut" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:93 -msgid "Set the comment." -msgstr "Indiqueu els comentaris." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:95 -msgid "Set the category" -msgstr "Indiqueu la categoria." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:97 -msgid "Sort key for the title" -msgstr "Clau d'ordre per al tí­tol." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:99 -msgid "Sort key for the author" -msgstr "Clau d'ordre per a l'autor" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:101 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:16 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:341 -msgid "Publisher" -msgstr "Editorial" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:103 -msgid "Path to file containing image to be used as cover" -msgstr "Camí­ al fitxer d'imatge per a utilitzar com a coberta" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:105 -msgid "" -"If there is a cover graphic detected in the source file, use that instead of " -"the specified cover." -msgstr "" -"Si es detecta un gràfic per a la coberta al fitxer d'entrada, utilitzar-la " -"en lloc de la coberta especificada." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:108 -msgid "Output file name. Default is derived from input filename" -msgstr "Nom del fitxer de destí­. Per defecte, deriva del fitxer d'entrada" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:110 -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 "" -"Renderitza les taules HTML com a blocs de text en lloc de les taules " -"actuals. És necessari si el fitxer HTML conté taules massa grans o complexes." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:113 -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 "" -"Especifiqueu la grandària de lletra base en punts. Totes les lletres seran " -"escalades segons aquest valor. L'opció --font-delta resta obsoleta. Per a " -"utilitzar --font-delta, fixe aquest valor a 0." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:115 -msgid "Enable autorotation of images that are wider than the screen width." -msgstr "" -"Activa la rotació automàtica de les imatges més grans que l'amplada de la " -"pantalla." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:118 -msgid "Set the space between words in pts. Default is %default" -msgstr "Fixa l'espai entre paraules en punts. Per defecte: %default" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:120 -msgid "Separate paragraphs by blank lines." -msgstr "Separa els paràgrafs amb lí­nies buides." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:122 -msgid "Add a header to all the pages with title and author." -msgstr "Afegeix la capçalera a totes les pàgines, ficant el tí­tol i l'autor." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:124 -msgid "" -"Set the format of the header. %a is replaced by the author and %t by the " -"title. Default is %default" -msgstr "" -"Estableix el format de la capçalera: %a es reemplaça per l'autor i %t pel tí­" -"tol. Per defecte: %default" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:126 -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 "" -"Substitueix la CSS. Pot indicar-se tant un camí­ a la fulla CSS alternativa, " -"com una cadena. En aquest últim cas, la cadena s'interpreta com a CSS." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:128 -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 "" -"Utilitza 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." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:130 -msgid "" -"Minimum paragraph indent (the indent of the first line of a paragraph) in " -"pts. Default: %default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 -msgid "" -"Increase the font size by 2 * FONT_DELTA pts and the line spacing by " -"FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the " -"font size is decreased." -msgstr "" -"Augmenta la grandària de la lletra en 2 * FONT_DELTA punts i l'espai de lí­" -"nia en FONT_DELTA punts. FONT_DELTA pot ser una fracció. Si és un valor " -"negatiu, la grandària de la lletra disminueix." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:137 -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:144 -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 "" -"Perfil del dispositiu per al que es genera el fitxer LRF. Aquest perfil " -"determina la resolució i la grandària de la pantalla del dispositiu, entre " -"d'altres. Per defecte:%s Perfils suportats:" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:150 -msgid "Left margin of page. Default is %default px." -msgstr "Marge esquerre de la pàgina. Per defecte: %default px." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:152 -msgid "Right margin of page. Default is %default px." -msgstr "Marge dret de la pàgina. Per defecte: %default px." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:154 -msgid "Top margin of page. Default is %default px." -msgstr "Marge superior de la pàgina. Per defecte: %default px." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:156 -msgid "Bottom margin of page. Default is %default px." -msgstr "Marge inferior de la pàgina. Per defecte: %default px." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:160 -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 "" -"Nombre màxim de nivells per a processar enllaços recursivament. El valor 0 " -"(cero) vol dir que no són seguits. Amb un valor negatiu, ignora les marques " -"<a>." - -# ??? -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:164 -msgid "" -"A regular expression. <a> tags whoose href matches will be ignored. Defaults " -"to %default" -msgstr "" -"Expressió regular. Les marques <a> amb href coincidents, són ignorades. Per " -"defecte: %default" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:169 -msgid "" -"Prevent the automatic insertion of page breaks before detected chapters." -msgstr "" -"Evita la inserció automàtica de salts de pàgina abans dels capí­tols " -"detectats." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:173 -msgid "" -"The regular expression used to detect chapter titles. It is searched for in " -"heading tags (h1-h6). Defaults to %default" -msgstr "" -"Expressió regular utilitzada per a detectar els tí­tols dels capí­tols. " -"Cerca a les marques de encapçalament (h1-h6). Per defecte: %default" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:176 -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 "" -"Si l'html2lrf no troba cap salt de pàgina en el fitxer html i no pot " -"detectar els encapçalaments dels capí­tols, insereix automàticament un salt " -"de pàgina abans de les marques que tinguen un nom coincident amb l'expressió " -"regular. Per defecte: %default. Aquesta opció s'inhabilita establint la " -"regexp com a \"$\".El propòsit de tot plegat és evitar pàgines massa " -"llargues, que alentirien al canvi de fulla del fitxer LRF. Aquesta opció " -"s'ignora si la pàgina actual en té pocs elements." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:186 -msgid "" -"Force a page break before tags whoose names match this regular expression." -msgstr "" -"Força un salt de pàgina abans de les marques amb noms coincidents amb " -"l'expressió regular." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:188 -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 "" -"Força un salt de pàgina davant d'un element amb un atribut concret. El " -"format d'aquesta opció és regexp_marca,nom_atribut,tegexp_valor_atribut. Per " -"exemple, amb \"h\\d,class,chapter\", serien coincidents totes les marques de " -"encapçalament amb l'atribut class=\"chapter\". Per defecte: %default" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:191 -msgid "Preprocess Baen HTML files to improve generated LRF." -msgstr "" -"Pre-processa els fitxers Baen HTML per a millorar el fitxer LRF generat." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:193 -msgid "" -"You must add this option if processing files generated by pdftohtml, " -"otherwise conversion will fail." -msgstr "" -"Cal que afegiu aquesta opció per a fitxers generats amb pdftohtml, si no " -"voleu que la conversió falli." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:195 -msgid "Use this option on html0 files from Book Designer." -msgstr "Utilitzeu aquesta opció per a fitxers html0 de Book Designer." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:198 -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" -" " -msgstr "" -"Especifiqueu lletres truetype per a les famí­lies serif, sans-serif i " -"monoespaiades. Aquestes lletres són inserides al fitxer LRF. Tingueu en " -"compte que afegir lletres personalitzades alenteix el canvi de pàgina. Per " -"especificar cadascuna de les famí­lies s'empra: \"camí­ a la carpeta de " -"lletres, famí­lia\" ( --serif-family \"%s, Times New Roman\")\n" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:207 -msgid "The serif family of fonts to embed" -msgstr "Famí­lia de lletres serif per a incrustar." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:210 -msgid "The sans-serif family of fonts to embed" -msgstr "Famí­lia de lletres sans-serif per a incrustar." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:213 -msgid "The monospace family of fonts to embed" -msgstr "Famí­lia de lletres monoespaiades per a incrustar." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 -msgid "Be verbose while processing" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 -msgid "Convert to LRS" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 -msgid "" -"Minimize memory usage at the cost of longer processing times. Use this " -"option if you are on a memory constrained machine." -msgstr "" -"Minimitza l'ús de memòria, utilitzant més temps de processador. Empreu " -"aquesta opció si el vostre equip no disposa de molta RAM." - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 -msgid "" -"Specify the character encoding of the source file. If the output LRF file " -"contains strange characters, try changing this option. A common encoding for " -"files from windows computers is cp-1252. Another common choice is utf-8. The " -"default is to try and guess the encoding." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 -msgid "" -"any2lrf [options] myfile\n" -"\n" -"Convert any ebook format into LRF. Supported formats are:\n" -"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " -"RAR or\n" -"ZIP archive, looking for an ebook inside the archive.\n" -" " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 -msgid "No file to convert specified." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 -msgid "" -"Usage: %prog [options] mybook.epub\n" -" \n" -" \n" -"%prog converts mybook.epub to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 -msgid "Options to control the behavior of feeds2disk" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:22 -msgid "Options to control the behavior of html2lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:44 -msgid "Fetching of recipe failed: " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 -msgid "\tBook Designer file detected." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 -msgid "\tParsing HTML..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 -msgid "\tBaen file detected. Re-parsing..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 -msgid "Written preprocessed HTML to " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 -msgid "Processing %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 -msgid "\tConverting to BBeB..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 -msgid "Could not parse file: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 -msgid "Failed to parse link %s %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 -msgid "Cannot add link %s to TOC" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 -msgid "Unable to process image %s. Error: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 -msgid "Unable to process interlaced PNG %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 -msgid "" -"Could not process image: %s\n" -"%s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 -msgid "An error occurred while processing a table: %s. Ignoring table markup." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 -msgid "" -"Bad table:\n" -"%s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 -msgid "Table has cell that is too large" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 -msgid "" -"You have to save the website %s as an html file first and then run html2lrf " -"on it." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1741 -msgid "Could not read cover image: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1744 -msgid "Cannot read from: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1873 -msgid "Failed to process opf file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1879 -msgid "" -"Usage: %prog [options] mybook.html\n" -"\n" -"\n" -"%prog converts mybook.html to mybook.lrf. \n" -"%prog follows all links in mybook.html that point \n" -"to local files recursively. Thus, you can use it to \n" -"convert a whole tree of HTML files." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 -msgid "" -"Usage: %prog [options] mybook.lit\n" -"\n" -"\n" -"%prog converts mybook.lit to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 -msgid "" -"%prog [options] file.lrs\n" -"Compile an LRS file into an LRF file." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 -msgid "Path to output file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 -msgid "Verbose processing" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 -msgid "Convert LRS to LRS, useful for debugging." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 -msgid "" -"%prog [options] mybook.lrf\n" -"\n" -"\n" -"Show/edit the metadata in an LRF file.\n" -"\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 -msgid "Set the book title" -msgstr "Indiqueu el nom del llibre" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 -msgid "Set sort key for the title" -msgstr "Indiqueu la clau d'ordenació per tí­tol" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 -msgid "Set the author" -msgstr "Indiqueu l'autor" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 -msgid "Set sort key for the author" -msgstr "Indiqueu la clau d'ordenació per autor" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 -msgid "The category this book belongs to. E.g.: History" -msgstr "Categoria a la que pertany el llibre. Per exemple, Història" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 -msgid "Path to a graphic that will be set as this files' thumbnail" -msgstr "Camí­ al fitxer d'imatge que s'utilitzarà com a miniatura" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 -msgid "Path to a txt file containing the comment to be stored in the lrf file." -msgstr "Camí­ al fitxer txt que conté el comentari a desar en el fitxer LRF" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 -msgid "Extract thumbnail from LRF file" -msgstr "Extrau la miniatura del fitxer LRF" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 -msgid "Set book ID" -msgstr "Indiqueu l'ID (identificador) del llibre" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 -msgid "Don't know what this is for" -msgstr "No sé per a qué és aixó" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 -msgid "" -"Usage: %prog [options] mybook.mobi|prc\n" -"\n" -"\n" -"%prog converts mybook.mobi to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 -msgid "" -"%prog book.lrf\n" -"Convert an LRF file into an LRS (XML UTF-8 encoded) file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 -msgid "Output LRS file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 -msgid "Parsing LRF..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 -msgid "Creating XML..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 -msgid "LRS written to " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 -msgid "" -"%prog [options] mybook.pdf\n" -"\n" -"\n" -"%prog converts mybook.pdf to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 -msgid "" -"Path to output directory in which to create the HTML file. Defaults to " -"current directory." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:404 -msgid "Be more verbose." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:416 -msgid "You must specify a single PDF file." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 -msgid "" -"%prog [options] mybook.rtf\n" -"\n" -"\n" -"%prog converts mybook.rtf to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 -msgid "" -"%prog [options] mybook.txt\n" -"\n" -"\n" -"%prog converts mybook.txt to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 -msgid "Print generated HTML to stdout and quit." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 -msgid "Set the authors" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 -msgid "Set the comment" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 -msgid "Usage:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 -msgid "mybook.epub" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 -msgid "" -"\n" -"%prog [options] key\n" -"\n" -"Fetch metadata for books from isndb.com. You can specify either the \n" -"books ISBN ID or its title and author. If you specify the title and author,\n" -"then more than one book may be returned.\n" -"\n" -"key is the account key you generate after signing up for a free account from " -"isbndb.com.\n" -"\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 -msgid "The ISBN ID of the book you want metadata for." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 -msgid "The author whoose book to search for." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 -msgid "The title of the book to search for." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 -msgid "The publisher of the book to search for." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 -msgid "" -"Could not fetch cover as server is experiencing high load. Please try again " -"later." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:47 -msgid " not found." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:50 -msgid "Server error. Try again later." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 -msgid "" -"\n" -"%prog [options] ISBN\n" -"\n" -"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 -msgid "Usage: %s file.lit" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 -msgid "Cover saved to" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 -msgid "Usage: pdf-meta file.pdf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 -msgid "No filename specified." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 -msgid "%prog [options] myebook.mobi" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 -msgid "Output directory. Defaults to current directory." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 -msgid "Raw MOBI HTML saved in" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 -msgid "OEB ebook created in" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 -msgid "Choose Format" -msgstr "Trieu format" - -#: /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" -msgstr "TextLabel" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -msgid "<br>Must be a directory." -msgstr "<br>Cal que siga un directori." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -msgid "Invalid database location " -msgstr "Ubicació de la base de dades no vàlida " - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 -msgid "Invalid database location" -msgstr "Ubicació de la base de dades no vàlida " - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 -msgid "Invalid database location.<br>Cannot write to " -msgstr "Ubicació de la base de dades no vàlida.<br>No es pot escriure " - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 -msgid "Compacting database. This may take a while." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 -msgid "Compacting..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:216 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:279 -msgid "Configuration" -msgstr "Configuració" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:220 -msgid "Basic" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:224 -msgid "Advanced" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:226 -msgid "&Location of books database (library1.db)" -msgstr "&Ubicació de la base de dades (library1.db)" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:227 -msgid "Browse for the new database location" -msgstr "Cerca la nova ubicació de la base de dades" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:238 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:610 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:320 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:329 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:331 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:335 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:144 -#: /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:235 -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:188 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:189 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:190 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:272 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:278 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:280 -msgid "..." -msgstr "..." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:229 -msgid "Use &Roman numerals for series number" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:230 -msgid "Default network &timeout:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:231 -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:232 -msgid " seconds" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:233 -msgid "&Priority for conversion jobs:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:234 -msgid "Frequently used directories" -msgstr "Directoris emprats amb freqüència" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:235 -msgid "Add a directory to the frequently used directories list" -msgstr "Afegir el directori al llistat de directoris freqüents" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:237 -msgid "Remove a directory from the frequently used directories list" -msgstr "Elimiar el directori al llistat de directoris freqüents" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:239 -msgid "Select visible &columns in library view" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:240 -msgid "Free unused diskspace from the database" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:241 -msgid "&Compact database" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:242 -msgid "&Metadata from file name" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/conversion_error_ui.py:37 -msgid "ERROR" -msgstr "ERROR" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:101 -msgid "Cannot connect" -msgstr "No puc connectar" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:102 -msgid "You must specify a valid access key for isbndb.com" -msgstr "Cal especificar una clau d'accès vàlida per a isbndb.com" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:89 -msgid "Fetch metadata" -msgstr "Recull metadades" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:90 -msgid "Fetching metadata for <b>%1</b>" -msgstr "Recollint metadades per a <b>%1</b>" - -#: /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." -msgstr "" -"Registreu-vos gratuïtament a <a href=\"http://www.isbndb.com\">ISBNdb.com</" -"a> per a obtenir una clau d'accés." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:92 -msgid "&Access Key;" -msgstr "Clau d'&accés;" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:93 -msgid "Fetch" -msgstr "Recull" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata_ui.py:94 -msgid "Matches" -msgstr "Coincidències" - -#: /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 "Seleccioneu el llibre que més s'acoste del llistat que hi ha a sota" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/job_view_ui.py:30 -msgid "Details of job" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:39 -msgid "Active Jobs" -msgstr "Treballs actius" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:40 -msgid "&Stop selected job" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:81 -msgid "No available formats" -msgstr "Formats no disponibles" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:82 -msgid "Cannot convert %s as this book has no supported formats" -msgstr "No puc convetir \"%s\" perquè el format no hi és suportat" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:86 -msgid "Choose the format to convert into LRF" -msgstr "Trieu el format per convertir a LRF" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:94 -msgid "Convert %s to LRF" -msgstr "Converteix %s a LRF" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:97 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:149 -msgid "Set conversion defaults" -msgstr "Fixa els valors de conversió er defecte" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:163 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:43 -msgid "Cannot read" -msgstr "No pot llegir-se" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:164 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:44 -msgid "You do not have permission to read the file: " -msgstr "No tens permissos per a llegir l'arxiu: " - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:172 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:52 -msgid "Error reading file" -msgstr "Error llegint l'arxiu" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:173 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:53 -msgid "<p>There was an error reading from file: <br /><b>" -msgstr "<p>Error llegint de l'arxiu: <br /><b>" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:179 -msgid " is not a valid picture" -msgstr " no és una imatge vàlida" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:245 -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 "" -"Preprocessa l'arxiu abans de convertir a LRF. Aixó ès útil si coneixes " -"l'origen de l'arxiu. Fonts conegudes:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:246 -msgid "<ol><li><b>baen</b> - Books from BAEN Publishers</li>" -msgstr "<ol><li><b>baen</b> - Llibre de BAEN Publishers</li>" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:247 -msgid "" -"<li><b>pdftohtml</b> - HTML files that are the output of the program " -"pdftohtml</li>" -msgstr "" -"<li><b>pdftohtml</b> - Arxius HTML obtinguts amb l'aplicació pdftohtml</li>" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:248 -msgid "<li><b>book-designer</b> - HTML0 files from Book Designer</li>" -msgstr "<li><b>book-designer</b> - Arxius HTML0 del Book Designer</li>" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 -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 "" -"Especifiqueu informació com ara tí­tol i autor per al llibre.<p>Aquesta " -"informació s'actualitza tant a la base de dades com al fitxer LRF." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:592 -msgid "Metadata" -msgstr "Metadades" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 -msgid "" -"Adjust the look of the generated LRF file by specifying things like font " -"sizes and the spacing between words." -msgstr "" -"Milloreu l'aparença del fitxer LRF generat, especificant la grandària de " -"lletra i l'espaiat entre paraules." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:596 -msgid "Look & Feel" -msgstr "Aparença" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 -msgid "" -"Specify the page settings like margins and the screen size of the target " -"device." -msgstr "" -"Configuració de la pàgina del dispositiu, especificant ,marges i grandària " -"de la pantalla, entre d'altres." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:600 -msgid "Page Setup" -msgstr "Configuració de la pàgina" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 -msgid "Fine tune the detection of chapter and section headings." -msgstr "Milloreu la detecció de capí­tols i seccions." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:604 -msgid "Chapter Detection" -msgstr "Detecció de capí­tols" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:292 -msgid "<font color=\"gray\">No help available</font>" -msgstr "<font color=\"gray\">Ajuda no disponible</font>" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:396 -msgid "Bulk convert ebooks to LRF" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:587 -msgid "Convert to LRF" -msgstr "Convertir a LRF" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:588 -msgid "Category" -msgstr "Categoria" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:606 -msgid "Options" -msgstr "Opcions" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:607 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:332 -msgid "Book Cover" -msgstr "Coberta" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:608 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:333 -msgid "Change &cover image:" -msgstr "Canvia la imatge de la &coberta:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:609 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:334 -msgid "Browse for an image to use as the cover of this book." -msgstr "Cerca una imatge per a utilitzar com a coberta d'aquest llibre." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:611 -msgid "Use cover from &source file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:612 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:300 -msgid "&Title: " -msgstr "&Tí­tol:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:613 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:301 -msgid "Change the title of this book" -msgstr "Canvia el tí­tol del llibre" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:614 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:129 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:302 -msgid "&Author(s): " -msgstr "&Autor(s):" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:615 -#: /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" -msgstr "Canvia l'autor(s). Per a especificar més d'un, separeu-los amb comes." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:616 -msgid "Author So&rt:" -msgstr "Ord&re per autor:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:618 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:137 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:310 -msgid "&Publisher: " -msgstr "&Editorial:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:619 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:138 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:311 -msgid "Change the publisher of this book" -msgstr "Canvia l'editorial del llibre" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:620 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:312 -msgid "Ta&gs: " -msgstr "Etique&tes:" - -#: /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." -msgstr "" -"Etiquetes per a categoritzar el llibre (especialment útil per a recerques). " -"<br><br>Pot emprar-se qualsevol paraula o frase, separada per comes." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:622 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:143 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:316 -msgid "&Series:" -msgstr "&Sèries:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:623 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:624 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:144 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:145 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:317 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:318 -msgid "List of known series. You can add new series." -msgstr "Llistat de sèries conegudes. Podeu afegir-hi de noves." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:625 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:626 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:321 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:322 -msgid "Series index." -msgstr "Índex de sèrie." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:627 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:323 -msgid "Book " -msgstr "Llibre " - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:628 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:325 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:223 -msgid "Comments" -msgstr "Comentaris" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:629 -msgid "Base &font size:" -msgstr "Grandària de lletra base:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:630 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:637 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:639 -msgid " pts" -msgstr " punts" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:631 -msgid "Embedded Fonts" -msgstr "Lletres inserides" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:632 -msgid "&Serif:" -msgstr "&Serif:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:633 -msgid "S&ans-serif:" -msgstr "S&ans-serif:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:634 -msgid "&Monospace:" -msgstr "&Monoespaiada:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:635 -msgid "Source en&coding:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:636 -msgid "Minimum &indent:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:638 -msgid "&Word spacing:" -msgstr "&Espaiat de les paraules:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:640 -msgid "Enable auto &rotation of images" -msgstr "Activa la &rotació automàtica d'imatges" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:641 -msgid "Insert &blank lines between paragraphs" -msgstr "Inserta lí­nies &buides entre paràgrafs" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:642 -msgid "Ignore &tables" -msgstr "Ignora les &taules" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:643 -msgid "Ignore &colors" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:644 -msgid "&Preprocess:" -msgstr "&Preprocessament:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:645 -msgid "Header" -msgstr "Capçalera" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:646 -msgid "&Show header" -msgstr "&Mostrar capçalera" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:647 -msgid "&Header format:" -msgstr "&Format de la capçalera:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:648 -msgid "Override<br>CSS" -msgstr "Substitueix<br>CSS" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:649 -msgid "&Profile:" -msgstr "&Perfil:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:650 -msgid "&Left Margin:" -msgstr "Marge &Esquerre:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:651 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:653 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:655 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:657 -msgid " px" -msgstr " Pí­xels" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:652 -msgid "&Right Margin:" -msgstr "Marge &Dret:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:654 -msgid "&Top Margin:" -msgstr "Marge &Superior:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:656 -msgid "&Bottom Margin:" -msgstr "Marge &Inferior:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:658 -msgid "Title based detection" -msgstr "Detecció basada en el tí­tol" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:659 -msgid "&Disable chapter detection" -msgstr "&Desactivar detecció de capí­tols" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:660 -msgid "&Regular expression:" -msgstr "Expressió &Regular:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:661 -msgid "Tag based detection" -msgstr "Detecció basada en marques" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:662 -msgid "&Page break before tag:" -msgstr "Inserta un salt de &pàgina abans de la marca:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:663 -msgid "&Force page break before tag:" -msgstr "&Força un salt de pàgina abans de la marca:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:664 -msgid "Force page break before &attribute:" -msgstr "Força un salt de pàgina abans de l'&atribut:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:665 -msgid "Help on item" -msgstr "Ajuda amb l'í­tem" - -#: /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" -"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>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:127 -msgid "Edit Meta information" -msgstr "Editar Meta-informació" - -#: /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 "Meta-informació" - -#: /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 "&Ordena autors:" - -#: /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." -msgstr "" -"Especifiqueu com s'ha d'ordenar l'autor(s) d'aquest llibre. Per exemple," -"ordena Vicent A. Estellés com a Estellés, Vicent A." - -#: /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 "&Valoració:" - -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:308 -msgid "Rating of this book. 0-5 stars" -msgstr "Valora aquest llibre: 0-5 estreles" - -#: /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 " estreles" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:139 -msgid "Add Ta&gs: " -msgstr "Afe&geix les etiquetes: " - -#: /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:224 -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:254 -msgid "<b>Could not fetch cover.</b><br/>" -msgstr "<b>No puc aconseguir la coberta.</b><br/>" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:254 -msgid "Could not fetch cover" -msgstr "No puc aconseguir la coberta" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 -msgid "Cannot fetch cover" -msgstr "No puc aconseguir la coberta" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 -msgid "You must specify the ISBN identifier for this book." -msgstr "Cal especificar un ISBN correcte per al llibre." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:298 -msgid "Edit Meta Information" -msgstr "Edita la meta-informació" - -#: /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 "IS&BN:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:326 -msgid "Fetch metadata from server" -msgstr "Recull metadades des del servidor" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:327 -msgid "Available Formats" -msgstr "Formats disponibles" - -#: /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 "Afegir un nou format per a aquest llibre a la base de dades" - -#: /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 "" -"Elimina els formats seleccionats per a aquest llibre de la base de dades." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:336 -msgid "Fetch cover image from server" -msgstr "Recolliu la coberta des del servidor" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:337 -msgid "" -"Change the username and/or password for your account at LibraryThing.com" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:338 -msgid "Change password" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:61 -msgid "Password needed" -msgstr "Es necessita una contrasenya." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:63 -msgid "&Username:" -msgstr "Nom d'&usuari:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:64 -msgid "&Password:" -msgstr "&Contrasenya:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:65 -msgid "&Show password" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:14 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:336 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:700 -msgid "Title" -msgstr "Tí­tol" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:15 -msgid "Author" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:17 -msgid "Tag" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:18 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:343 -msgid "Series" -msgstr "Sèries" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:19 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:634 -msgid "Format" -msgstr "Format" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:20 -msgid "Any" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:40 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:110 -msgid "Form" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:41 -msgid "contains" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:42 -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." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:44 -msgid "Negate" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:80 -msgid "Advanced Search" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:81 -msgid "Match a&ll of the following criteria" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:82 -msgid "Match a&ny of the following criteria" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:83 -msgid "Search criteria" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:84 -msgid "More" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:85 -msgid "Fewer" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:141 -msgid "Tag Editor" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:142 -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." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:145 -msgid "Apply tag to current book" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:147 -msgid "A&pplied tags" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:148 -msgid "Unapply (remove) tag from current book" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:150 -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." -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.py:48 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:58 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 -msgid "Switch to Advanced mode" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:53 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:61 -msgid "Switch to Basic mode" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:71 -msgid "Feed must have a title" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:72 -msgid "The feed must have a title" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:76 -msgid "Feed must have a URL" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:77 -msgid "The feed %s must have a URL" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:82 -msgid "Already exists" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 -msgid "This feed has already been added to the recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:133 -msgid "Invalid input" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:125 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:134 -msgid "<p>Could not create recipe. Error:<br>%s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:140 -msgid "Replace recipe?" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:141 -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:218 -msgid "Add custom news source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 -msgid "Available user recipes" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 -msgid "Add/Update &recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 -msgid "&Remove recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 -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 mode\" to further customize the fetch process.</p></" -"body></html>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:227 -msgid "Recipe &title:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 -msgid "&Oldest article:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 -msgid "The oldest article to download" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 -msgid " days" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 -msgid "&Max. number of articles per feed:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 -msgid "Maximum number of articles to download per feed." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 -msgid "Feeds in recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 -msgid "Remove feed from recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 -msgid "Add feed to recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 -msgid "&Feed title:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 -msgid "Feed &URL:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 -msgid "&Add feed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 -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:242 -msgid "Recipe source code (python)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:111 -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:112 -msgid "Regular &expression" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:113 -msgid "&Test" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:114 -msgid "File &name:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:115 -msgid "Test" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:116 -msgid "Title:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:117 -msgid "Regular expression group name (?P<title>)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:118 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:121 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:127 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:41 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:45 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:50 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:55 -msgid "No match" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:119 -msgid "Authors:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:120 -msgid "Regular expression group name (?P<authors>)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:122 -msgid "Series:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:123 -msgid "Regular expression group name (?P<series>)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:125 -msgid "Series index:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:126 -msgid "Regular expression group name (?P<series_index>)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:279 -msgid "Job" -msgstr "Treball" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:280 -msgid "Status" -msgstr "Estat" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:281 -msgid "Progress" -msgstr "Progressió" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:282 -msgid "Running time" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 -msgid "Error" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 -msgid "Finished" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 -msgid "Waiting" -msgstr "En espera..." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 -msgid "Working" -msgstr "Està treballant..." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:315 -msgid "Unavailable" -msgstr "No disponible" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:343 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:347 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:351 -msgid "Cannot kill job" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:344 -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:348 -msgid "Cannot kill already completed jobs." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:352 -msgid "Cannot kill waiting jobs." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:212 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:218 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:222 -msgid "None" -msgstr "Cap" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:213 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:342 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:640 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:704 -msgid "Tags" -msgstr "Etiquetes" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:219 -msgid "Formats" -msgstr "Formats" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 -msgid "Book <font face=\"serif\">%s</font> of %s." -msgstr "Llibre <font face=\"serif\">%s</font> de %s." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 -msgid "Double click to <b>edit</b> me<br><br>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 -msgid "Author(s)" -msgstr "Autor(s)" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:338 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:702 -msgid "Size (MB)" -msgstr "Grandària (MB)" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:339 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:703 -msgid "Date" -msgstr "Data" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:340 -msgid "Rating" -msgstr "Valoració" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:635 -msgid "Path" -msgstr "Camí" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:639 -msgid "Timestamp" -msgstr "Marca de temps" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:739 -msgid "Search (For Advanced Search click the button to the left)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:51 -msgid "Configure Viewer" -msgstr "Configura el visor" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:52 -msgid "Use white background" -msgstr "Utilitza fons blanc" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:53 -msgid "Hyphenate" -msgstr "Partició de mots" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:54 -msgid "<b>Changes will only take affect after a restart." -msgstr "<b>Els canvis s'ignoren fins que el re-inicieu." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 -msgid "<b>No matches</b> for the search phrase <i>%s</i> were found." -msgstr "<b>No</b> s'han trobat coincidències per al text \"<i>%s</i>\"." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 -msgid "No matches found" -msgstr "No s'han trobat coincidències" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:184 -msgid "LRF Viewer" -msgstr "Visor LRF" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:191 -msgid "Parsing LRF file" -msgstr "Estic analitzant el fitxer LRF" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:192 -msgid "Next Page" -msgstr "Pàgina següent" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:193 -msgid "Previous Page" -msgstr "Pàgina anterior" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:194 -msgid "Back" -msgstr "Precedent" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:195 -msgid "Forward" -msgstr "Següent" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:196 -msgid "Next match" -msgstr "Següent coincidència" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:197 -msgid "Open ebook" -msgstr "Obre l'eBook" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:198 -msgid "Configure" -msgstr "Configura" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:72 -msgid "Error communicating with device" -msgstr "Error en la comunicació amb el dispositiu" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:102 -msgid "Send to main memory" -msgstr "Envia a la memòria interna" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:103 -msgid "Send to storage card" -msgstr "Envia a la targeta de memòria" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:106 -msgid "Edit metadata individually" -msgstr "Edita metadades individualment" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:107 -msgid "Edit metadata in bulk" -msgstr "Edita metadades en massa" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:110 -msgid "Add books from a single directory" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:111 -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:112 -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:126 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:289 -msgid "Save to disk" -msgstr "Desa al disc" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:127 -msgid "Save to disk in a single directory" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:130 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:292 -msgid "View" -msgstr "Mostra" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:131 -msgid "View specific format" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:146 -msgid "Convert individually" -msgstr "Converteix individualment" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:147 -msgid "Bulk convert" -msgstr "Converteix tots" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:260 -msgid "Device database corrupted" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:261 -msgid "" -"\n" -" <p>The database of books on the reader is corrupted. Try the " -"following:\n" -" <ol>\n" -" <li>Unplug the reader. Wait for it to finish regenerating " -"the database (i.e. wait till it is ready to be used). Plug it back in. Now " -"it should work with %(app)s. If not try the next step.</li>\n" -" <li>Quit %(app)s. Find the file media.xml in the reader's " -"main memory. Delete it. Unplug the reader. Wait for it to regenerate the " -"file. Re-connect it and start %(app)s.</li>\n" -" </ol>\n" -" " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:313 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:379 -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:316 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:382 -msgid "Duplicates found!" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:412 -msgid "No space on device" -msgstr "Sense espai al dispositiu" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:413 -msgid "<p>Cannot upload books to device there is no more free space available " -msgstr "<p>No puc desar llibres al dispositiu perquè no hi ha espai restant" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 -msgid "Cannot edit metadata" -msgstr "No puc editar les meta-dades" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 -msgid "No books selected" -msgstr "Cap llibre seleccionat" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 -msgid "Cannot save to disk" -msgstr "No puc desar al disc" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:626 -msgid "Fetch news from " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:628 -msgid "Fetching news from " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:638 -msgid "News fetched. Uploading to device." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 -msgid "Cannot convert" -msgstr "No puc convertir-lo" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 -msgid "No book selected" -msgstr "Cap llibre seleccionat" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:798 -msgid "Cannot view" -msgstr "No puc mostrar-lo" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:773 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:803 -msgid "Choose the format to view" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:799 -msgid "%s has no available formats." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 -msgid "Cannot configure" -msgstr "No puc configurar-lo" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 -msgid "Cannot configure while there are running jobs." -msgstr "No puc configurar-lo amb treballs processant-se" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:863 -msgid "Invalid database" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:864 -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:872 -msgid "Could not move database" -msgstr "No puc moure la base de dades" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:922 -msgid "Error talking to device" -msgstr "Error comunicant amb el dispositiu" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:923 -msgid "" -"There was a temporary error talking to the device. Please unplug and " -"reconnect the device and or reboot." -msgstr "" -"Hi ha hagut un error de comunicació amb el dispositiu. Lleve, torne a " -"connectar el dispositiu i torne a iniciar el programa" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:1003 -msgid "" -"<span style=\"color:red; font-weight:bold\">Latest version: <a href=\"%s\">%" -"s</a></span>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:266 -msgid "libprs500" -msgstr "libprs500" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:267 -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:'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 -msgid "Advanced search" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:273 -msgid "Alt+S" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:274 -msgid "&Search:" -msgstr "Re&cerca:" - -#: /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" -msgstr "" -"Recerca llibres pel tí­tol o l'autor. <br><br>Els espais entre paraules es " -"substitueixen per AND." - -#: /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" -msgstr "" -"Recerca llibres pel tí­tol, l'autor, l'editorial, les etiquetes i els " -"comentaris<br><br>Els espais entre paraules es substitueixen per AND." - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:277 -msgid "Reset Quick Search" -msgstr "Reinicialitza la recerca ràpida" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:281 -msgid "Add books" -msgstr "Afegeix llibres" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:282 -msgid "A" -msgstr "A" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:284 -msgid "Remove books" -msgstr "Suprimeix llibres" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:285 -msgid "Del" -msgstr "Esborra" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:286 -msgid "Edit meta information" -msgstr "Edita la meta-informació" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:287 -msgid "E" -msgstr "E" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:288 -msgid "Send to device" -msgstr "Envia al dispositiu" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:290 -msgid "Fetch news" -msgstr "Recull notí­cies (RSS)" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:291 -msgid "Convert E-books" -msgstr "Converteix Ebooks" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:32 -msgid "Add a custom news source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:53 -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:79 -msgid "Custom news sources" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:87 -msgid "Jobs:" -msgstr "Treballs:" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:96 -msgid "Click to see list of active jobs." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:34 -msgid "Invalid regular expression" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:35 -msgid "Invalid regular expression: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:86 -msgid "Library" -msgstr "Biblioteca" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:87 -msgid "" -"Reader\n" -"%s available" -msgstr "" -"El Sony Reader\n" -"%s està disponible" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:88 -msgid "" -"Card\n" -"%s available" -msgstr "" -"La targeta\n" -"%s està disponible" - -#: /home/kovid/work/libprs500/src/libprs500/parallel.py:114 -msgid "Job killed by user" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:56 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:77 -msgid "Unknown feed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:115 -msgid "Untitled article" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 -msgid "" -"%%prog [options] ARG\n" -"\n" -"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" -"fetches the article contents organized in a nice hierarchy.\n" -"\n" -"ARG can be one of:\n" -"\n" -"file name - %%prog will try to load a recipe from the file\n" -"\n" -"builtin recipe title - %%prog will load the builtin recipe and use it to " -"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" -"\n" -"recipe as a string - %%prog will load the recipe directly from the string " -"arg.\n" -"\n" -"Available builtin recipes are:\n" -"%s\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 -msgid "Options to control web2disk (used to fetch websites linked from feeds)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 -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." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 -msgid "Be more verbose while processing." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 -msgid "" -"The title for this recipe. Used as the title for any ebooks created from the " -"downloaded feeds." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 -msgid "Username for sites that require a login to access content." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 -msgid "Password for sites that require a login to access content." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 -msgid "" -"Number of levels of links to follow on webpages that are linked to from " -"feeds. Defaul %default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 -msgid "" -"The directory in which to store the downloaded feeds. Defaults to the " -"current directory." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 -msgid "Dont show the progress bar" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 -msgid "Very verbose output, useful for debugging." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 -msgid "" -"Useful for recipe development. Forces max_articles_per_feed to 2 and " -"downloads at most 2 feeds." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 -msgid "Fetching feeds..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:33 -msgid "Unknown News Source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:468 -msgid "Download finished" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:470 -msgid "Failed to download the following articles:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:472 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:478 -msgid " from " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:476 -msgid "Failed to download parts of the following articles:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:480 -msgid "\tFailed links:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:549 -msgid "Could not fetch article. Run with --debug to see the reason" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:571 -msgid "Got feeds from index page" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:575 -msgid "Trying to download cover..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:625 -msgid "Starting download [%d thread(s)]..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:639 -msgid "Feeds downloaded to %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:648 -msgid "Could not download cover: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:653 -msgid "Downloading cover from %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:688 -msgid "Untitled Article" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:729 -msgid "" -"\n" -"Downloaded article %s from %s\n" -"%s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:735 -msgid "Article downloaded: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:741 -msgid "Failed to download article: %s from %s\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:746 -msgid "Article download failed: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:761 -msgid "Fetching feed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 -msgid "" -"%prog URL\n" -"\n" -"Where URL is for example http://google.com" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 -msgid "Base directory into which URL is saved. Default is %default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 -msgid "" -"Timeout in seconds to wait for a response from the server. Default: %default " -"s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 -msgid "" -"Maximum number of levels to recurse i.e. depth of links to follow. Default %" -"default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 -msgid "" -"The maximum number of files to download. This only applies to files from <a " -"href> tags. Default is %default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 -msgid "" -"Minimum interval in seconds between consecutive fetches. Default is %default " -"s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 -msgid "" -"The character encoding for the websites you are trying to download. The " -"default is to try and guess the encoding." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 -msgid "" -"Only links that match this regular expression will be followed. This option " -"can be specified multiple times, in which case as long as a link matches any " -"one regexp, it will be followed. By default all links are followed." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 -msgid "" -"Any link that matches this regular expression will be ignored. This option " -"can be specified multiple times, in which case as long as any regexp matches " -"a link, it will be ignored.By default, no links are ignored. If both --" -"filter-regexp and --match-regexp are specified, then --filter-regexp is " -"applied first." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 -msgid "Do not download CSS stylesheets." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 -msgid "Show detailed output information. Useful for debugging" -msgstr "" - -#~ msgid "%s is not available in LRF format. Please convert it first." -#~ msgstr "%s no està disponible en LRF. Ha de ser convertir primer." - -#~ 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:'Sans Serif'; font-size:9pt; " -#~ "font-weight:400; font-style:normal;\">\n" -#~ "<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-" -#~ "right:0px; -qt-block-indent:0; text-indent:0px;\">For help visit <a href=" -#~ "\"https://libprs500.kovidgoyal.net/wiki/WikiStart#Usage\"><span style=\" " -#~ "text-decoration: underline; color:#0000ff;\">libprs500.kovidgoyal.net</" -#~ "span></a><br /><br /><span style=\" font-weight:600;\">libprs500</span>: %" -#~ "1 by <span style=\" font-weight:600;\">Kovid Goyal</span> %2<br />%3</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:'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;\">Per a més ajuda, vegeu " -#~ "(en anglès) <a href=\"https://libprs500.kovidgoyal.net/wiki/" -#~ "WikiStart#Usage\"><span style=\" text-decoration: underline; color:" -#~ "#0000ff;\">libprs500.kovidgoyal.net</span></a><br /><br /><span style=\" " -#~ "font-weight:600;\">libprs500</span>: %1 de <span style=\" font-weight:600;" -#~ "\">Kovid Goyal</span> %2<br />%3</p></body></html>" - -#~ msgid "Not yet implemented." -#~ msgstr "Sense implementar." - -#~ msgid "RTF conversion not supported" -#~ msgstr "Conversió de RTF no disponible" - -#~ msgid "" -#~ "Conversion of RTF files is not supported on OS X Leopard and higher. This " -#~ "is because unrtf, the underlying program does not work. If you are " -#~ "willing to port unrtf to Leopard, contact me." -#~ msgstr "" -#~ "La conversió d'arxius RTF no està soportada a OS X Leopard i superiors, " -#~ "perquè unrtf no funciona. Si voleu col·laborar en el \"port\", fiqueu-vos " -#~ "en contacte amb Kovid." - -#~ msgid "Search by title, author, publisher, tags, series and comments" -#~ msgstr "Cerca per tí­tol, autor, editorial, etiquetes, series i comentaris" - -#~ msgid "Done" -#~ msgstr "Finalitzat" - -#~ msgid "Use &metadata cover" -#~ msgstr "Utilitza la coberta de les &metadades" - -#~ 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:'Sans Serif'; font-size:9pt; " -#~ "font-weight:400; font-style:normal;\">\n" -#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; " -#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" -#~ "\"></p></body></html>" -#~ msgstr "" -#~ "<html><head><meta name=\"qrichtext\" content=\"1\" /><style type=\"text/" -#~ "css\">\n" -#~ "p, li { white-space: pre-wrap; }\n" -#~ "</style></head><body style=\" font-family:'Sans Serif'; font-size:9pt; " -#~ "font-weight:400; font-style:normal;\">\n" -#~ "<p style=\"-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; " -#~ "margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;" -#~ "\"></p></body></html>" diff --git a/src/libprs500/translations/data.py b/src/libprs500/translations/data.py deleted file mode 100644 index 5520871ffe..0000000000 --- a/src/libprs500/translations/data.py +++ /dev/null @@ -1 +0,0 @@ -translations = {'fr': '\xde\x12\x04\x95\x00\x00\x00\x00\xee\x01\x00\x00\x1c\x00\x00\x00\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x1e\x00\x00"\x00\x00\x00\xfd\x1e\x00\x00\x1d\x00\x00\x00 \x1f\x00\x00\x16\x00\x00\x00>\x1f\x00\x00\x0e\x00\x00\x00U\x1f\x00\x00\x10\x00\x00\x00d\x1f\x00\x00a\x00\x00\x00u\x1f\x00\x00+\x01\x00\x00\xd7\x1f\x00\x00!\x00\x00\x00\x03!\x00\x00\x05\x00\x00\x00%!\x00\x00\x06\x00\x00\x00+!\x00\x00\x17\x00\x00\x002!\x00\x00\x0b\x00\x00\x00J!\x00\x00\x04\x00\x00\x00V!\x00\x00\x03\x00\x00\x00[!\x00\x00\x08\x00\x00\x00_!\x00\x00\x06\x00\x00\x00h!\x00\x00\xfd\x01\x00\x00o!\x00\x005\x00\x00\x00m#\x00\x00>\x00\x00\x00\xa3#\x00\x00E\x00\x00\x00\xe2#\x00\x00D\x00\x00\x00($\x00\x00D\x00\x00\x00m$\x00\x00D\x00\x00\x00\xb2$\x00\x00\x1c\x00\x00\x00\xf7$\x00\x00G\x00\x00\x00\x14%\x00\x00\x1c\x00\x00\x00\\%\x00\x00\x0e\x00\x00\x00y%\x00\x00\x0c\x00\x00\x00\x88%\x00\x00\t\x00\x00\x00\x95%\x00\x00\t\x00\x00\x00\x9f%\x00\x00\x0c\x00\x00\x00\xa9%\x00\x00\x0f\x00\x00\x00\xb6%\x00\x00\x11\x00\x00\x00\xc6%\x00\x00\x1a\x00\x00\x00\xd8%\x00\x00\x0c\x00\x00\x00\xf3%\x00\x00\x1d\x00\x00\x00\x00&\x00\x00\x0f\x00\x00\x00\x1e&\x00\x00\r\x00\x00\x00.&\x00\x00)\x00\x00\x00<&\x00\x00"\x00\x00\x00f&\x00\x00\x18\x00\x00\x00\x89&\x00\x00\x0b\x00\x00\x00\xa2&\x00\x00\x10\x00\x00\x00\xae&\x00\x00\x17\x00\x00\x00\xbf&\x00\x00\n\x00\x00\x00\xd7&\x00\x00\x0c\x00\x00\x00\xe2&\x00\x00\x1e\x00\x00\x00\xef&\x00\x00\t\x00\x00\x00\x0e\'\x00\x00\x0c\x00\x00\x00\x18\'\x00\x00\x08\x00\x00\x00%\'\x00\x00\x14\x00\x00\x00.\'\x00\x00\x0e\x00\x00\x00C\'\x00\x00\r\x00\x00\x00R\'\x00\x00\x0e\x00\x00\x00`\'\x00\x00\x08\x00\x00\x00o\'\x00\x00\x08\x00\x00\x00x\'\x00\x00\x07\x00\x00\x00\x81\'\x00\x00\x0c\x00\x00\x00\x89\'\x00\x00\x0e\x00\x00\x00\x96\'\x00\x00\x12\x00\x00\x00\xa5\'\x00\x00\x05\x00\x00\x00\xb8\'\x00\x00\x08\x00\x00\x00\xbe\'\x00\x00\x0c\x00\x00\x00\xc7\'\x00\x00\n\x00\x00\x00\xd4\'\x00\x00\x0e\x00\x00\x00\xdf\'\x00\x00\x03\x00\x00\x00\xee\'\x00\x001\x00\x00\x00\xf2\'\x00\x00"\x00\x00\x00$(\x00\x00=\x00\x00\x00G(\x00\x00\x18\x00\x00\x00\x85(\x00\x00+\x00\x00\x00\x9e(\x00\x00\x00\x02\x00\x00\xca(\x00\x00\xa3\x01\x00\x00\xcb*\x00\x00\x82\x02\x00\x00o,\x00\x00>\x00\x00\x00\xf2.\x00\x00S\x00\x00\x001/\x00\x005\x00\x00\x00\x85/\x00\x00p\x00\x00\x00\xbb/\x00\x00a\x00\x00\x00,0\x00\x00G\x00\x00\x00\x8e0\x00\x00(\x00\x00\x00\xd60\x00\x00\xa7\x00\x00\x00\xff0\x00\x00W\x00\x00\x00\xa71\x00\x00\x96\x00\x00\x00\xff1\x00\x00=\x01\x00\x00\x962\x00\x002\x00\x00\x00\xd43\x00\x00T\x00\x00\x00\x074\x00\x00\x01\x00\x00\x00\\4\x00\x00C\x00\x00\x00^4\x00\x00X\x00\x00\x00\xa24\x00\x00\r\x00\x00\x00\xfb4\x00\x00\x0f\x00\x00\x00\t5\x00\x00\x0b\x00\x00\x00\x195\x00\x00\x0b\x00\x00\x00%5\x00\x00\x18\x00\x00\x0015\x00\x007\x00\x00\x00J5\x00\x004\x00\x00\x00\x825\x00\x00.\x00\x00\x00\xb75\x00\x00\t\x00\x00\x00\xe65\x00\x00!\x00\x00\x00\xf05\x00\x00b\x00\x00\x00\x126\x00\x00o\x00\x00\x00u6\x00\x00\x16\x00\x00\x00\xe56\x00\x00\x12\x00\x00\x00\xfc6\x00\x006\x00\x00\x00\x0f7\x00\x00\x12\x00\x00\x00F7\x00\x00m\x00\x00\x00Y7\x00\x00\x08\x00\x00\x00\xc77\x00\x00\x0f\x00\x00\x00\xd07\x00\x00\x0f\x00\x00\x00\xe07\x00\x00\x0e\x00\x00\x00\xf07\x00\x00\x05\x00\x00\x00\xff7\x00\x00F\x00\x00\x00\x058\x00\x00\x03\x00\x00\x00L8\x00\x005\x01\x00\x00P8\x00\x00\x19\x00\x00\x00\x869\x00\x00\x1b\x00\x00\x00\xa09\x00\x00\x16\x00\x00\x00\xbc9\x00\x00\x06\x00\x00\x00\xd39\x00\x00\x0e\x00\x00\x00\xda9\x00\x00\r\x00\x00\x00\xe99\x00\x00\t\x00\x00\x00\xf79\x00\x00\x08\x00\x00\x00\x01:\x00\x00\x11\x00\x00\x00\n:\x00\x00\x16\x00\x00\x00\x1c:\x00\x00\x04\x00\x00\x003:\x00\x00\r\x00\x00\x008:\x00\x00\x10\x00\x00\x00F:\x00\x00;\x00\x00\x00W:\x00\x00\x05\x00\x00\x00\x93:\x00\x00!\x00\x00\x00\x99:\x00\x00\x10\x00\x00\x00\xbb:\x00\x00\x1b\x00\x00\x00\xcc:\x00\x00\x05\x00\x00\x00\xe8:\x00\x00(\x00\x00\x00\xee:\x00\x00\n\x00\x00\x00\x17;\x00\x00.\x00\x00\x00";\x00\x005\x00\x00\x00Q;\x00\x00$\x00\x00\x00\x87;\x00\x00\x0c\x00\x00\x00\xac;\x00\x00\x1a\x00\x00\x00\xb9;\x00\x00\x19\x00\x00\x00\xd4;\x00\x00\x10\x00\x00\x00\xee;\x00\x00.\x00\x00\x00\xff;\x00\x00\x0e\x00\x00\x00.<\x00\x00\x0e\x00\x00\x00=<\x00\x007\x00\x00\x00L<\x00\x00\x14\x00\x00\x00\x84<\x00\x00\x12\x00\x00\x00\x99<\x00\x00#\x00\x00\x00\xac<\x00\x00\x0f\x00\x00\x00\xd0<\x00\x00Z\x00\x00\x00\xe0<\x00\x00\x19\x00\x00\x00;=\x00\x00\x0b\x00\x00\x00U=\x00\x00\x14\x00\x00\x00a=\x00\x00\x13\x00\x00\x00v=\x00\x00\x0b\x00\x00\x00\x8a=\x00\x00\x11\x00\x00\x00\x96=\x00\x00\x08\x00\x00\x00\xa8=\x00\x00\x14\x00\x00\x00\xb1=\x00\x00\x0f\x00\x00\x00\xc6=\x00\x00R\x00\x00\x00\xd6=\x00\x00!\x00\x00\x00)>\x00\x00\x1d\x00\x00\x00K>\x00\x00H\x00\x00\x00i>\x00\x00\x11\x00\x00\x00\xb2>\x00\x00\r\x00\x00\x00\xc4>\x00\x00%\x00\x00\x00\xd2>\x00\x00\x19\x00\x00\x00\xf8>\x00\x00!\x00\x00\x00\x12?\x00\x007\x00\x00\x004?\x00\x00\x08\x00\x00\x00l?\x00\x00+\x00\x00\x00u?\x00\x00\r\x00\x00\x00\xa1?\x00\x00\r\x00\x00\x00\xaf?\x00\x00\t\x00\x00\x00\xbd?\x00\x00\x10\x00\x00\x00\xc7?\x00\x00\x11\x00\x00\x00\xd8?\x00\x00\x0f\x00\x00\x00\xea?\x00\x00)\x00\x00\x00\xfa?\x00\x00\x14\x00\x00\x00$@\x00\x00\x0e\x00\x00\x009@\x00\x00\x0e\x00\x00\x00H@\x00\x00\x1c\x00\x00\x00W@\x00\x00;\x00\x00\x00t@\x00\x00\x15\x00\x00\x00\xb0@\x00\x00R\x00\x00\x00\xc6@\x00\x00\x17\x00\x00\x00\x19A\x00\x00\x18\x00\x00\x001A\x00\x00\x1e\x00\x00\x00JA\x00\x00\x1e\x00\x00\x00iA\x00\x00\x0e\x00\x00\x00\x88A\x00\x00\x0b\x00\x00\x00\x97A\x00\x00\x0f\x00\x00\x00\xa3A\x00\x00\x13\x00\x00\x00\xb3A\x00\x00\x04\x00\x00\x00\xc7A\x00\x00\x19\x00\x00\x00\xccA\x00\x00\x03\x00\x00\x00\xe6A\x00\x00h\x00\x00\x00\xeaA\x00\x00\x0e\x00\x00\x00SB\x00\x00\x19\x00\x00\x00bB\x00\x00 \x00\x00\x00|B\x00\x00\x1b\x00\x00\x00\x9dB\x00\x00\x1a\x00\x00\x00\xb9B\x00\x00&\x00\x00\x00\xd4B\x00\x00\x11\x00\x00\x00\xfbB\x00\x00\x19\x00\x00\x00\rC\x00\x00\x11\x00\x00\x00\'C\x00\x00\x01\x00\x00\x009C\x00\x00\x05\x00\x00\x00;C\x00\x00\x15\x00\x00\x00AC\x00\x00\x15\x00\x00\x00WC\x00\x00\x15\x00\x00\x00mC\x00\x00\x15\x00\x00\x00\x83C\x00\x00\x1a\x00\x00\x00\x99C\x00\x00\x0e\x00\x00\x00\xb4C\x00\x00\x1f\x00\x00\x00\xc3C\x00\x00C\x00\x00\x00\xe3C\x00\x00\x05\x00\x00\x00\'D\x00\x00\x1f\x00\x00\x00-D\x00\x00\x12\x00\x00\x00MD\x00\x00\x17\x00\x00\x00`D\x00\x00\x1f\x00\x00\x00xD\x00\x00\'\x00\x00\x00\x98D\x00\x003\x00\x00\x00\xc0D\x00\x00*\x00\x00\x00\xf4D\x00\x00\x1a\x00\x00\x00\x1fE\x00\x00\x1a\x00\x00\x00:E\x00\x00\n\x00\x00\x00UE\x00\x00\x14\x00\x00\x00`E\x00\x00\x16\x00\x00\x00uE\x00\x00\x16\x00\x00\x00\x8cE\x00\x00\x0f\x00\x00\x00\xa3E\x00\x00\x05\x00\x00\x00\xb3E\x00\x00\x1d\x00\x00\x00\xb9E\x00\x00\x0e\x00\x00\x00\xd7E\x00\x00\x1a\x00\x00\x00\xe6E\x00\x00\n\x00\x00\x00\x01F\x00\x00\x10\x00\x00\x00\x0cF\x00\x00\r\x00\x00\x00\x1dF\x00\x00\x11\x00\x00\x00+F\x00\x00\x1f\x00\x00\x00=F\x00\x00\x13\x00\x00\x00]F\x00\x00\x1b\x00\x00\x00qF\x00\x00\x05\x00\x00\x00\x8dF\x00\x00\x0b\x00\x00\x00\x93F\x00\x008\x00\x00\x00\x9fF\x00\x00\x08\x00\x00\x00\xd8F\x00\x00\x8a\x00\x00\x00\xe1F\x00\x00\x1d\x01\x00\x00lG\x00\x00J\x00\x00\x00\x8aH\x00\x00#\x00\x00\x00\xd5H\x00\x00\x04\x00\x00\x00\xf9H\x00\x00\x06\x00\x00\x00\xfeH\x00\x00\x07\x00\x00\x00\x05I\x00\x00\x07\x00\x00\x00\rI\x00\x00\'\x00\x00\x00\x15I\x00\x00\x1b\x00\x00\x00=I\x00\x00\x19\x00\x00\x00YI\x00\x00\x06\x00\x00\x00sI\x00\x00\x0c\x00\x00\x00zI\x00\x00\t\x00\x00\x00\x87I\x00\x00\x06\x00\x00\x00\x91I\x00\x00\xdc\x01\x00\x00\x98I\x00\x00n\x00\x00\x00uK\x00\x00a\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00FL\x00\x00\x0e\x00\x00\x00UL\x00\x00\xa8\x00\x00\x00dL\x00\x00&\x00\x00\x00\rM\x00\x00\x10\x00\x00\x004M\x00\x00\x19\x00\x00\x00EM\x00\x00\x1a\x00\x00\x00_M\x00\x00.\x00\x00\x00zM\x00\x00\r\x00\x00\x00\xa9M\x00\x00\x1a\x00\x00\x00\xb7M\x00\x00\x1e\x00\x00\x00\xd2M\x00\x00\x03\x00\x00\x00\xf1M\x00\x00\x12\x00\x00\x00\xf5M\x00\x00\x05\x00\x00\x00\x08N\x00\x00\n\x00\x00\x00\x0eN\x00\x00\x0f\x00\x00\x00\x19N\x00\x00,\x00\x00\x00)N\x00\x00\x07\x00\x00\x00VN\x00\x00-\x00\x00\x00^N\x00\x00\x0b\x00\x00\x00\x8cN\x00\x00$\x00\x00\x00\x98N\x00\x00$\x00\x00\x00\xbdN\x00\x00\x07\x00\x00\x00\xe2N\x00\x000\x00\x00\x00\xeaN\x00\x00S\x00\x00\x00\x1bO\x00\x00\x10\x00\x00\x00oO\x00\x00\x08\x00\x00\x00\x80O\x00\x00y\x00\x00\x00\x89O\x00\x00\x10\x00\x00\x00\x03P\x00\x00N\x00\x00\x00\x14P\x00\x00`\x00\x00\x00cP\x00\x00\x04\x00\x00\x00\xc4P\x00\x00\x06\x00\x00\x00\xc9P\x00\x00"\x00\x00\x00\xd0P\x00\x00\t\x00\x00\x00\xf3P\x00\x00\n\x00\x00\x00\xfdP\x00\x00\x14\x00\x00\x00\x08Q\x00\x00\x10\x00\x00\x00\x1dQ\x00\x00\x11\x00\x00\x00.Q\x00\x00\x1d\x00\x00\x00@Q\x00\x00\x16\x00\x00\x00^Q\x00\x00\x08\x00\x00\x00uQ\x00\x00\x10\x00\x00\x00~Q\x00\x00\x12\x00\x00\x00\x8fQ\x00\x00\x04\x00\x00\x00\xa2Q\x00\x00^\x00\x00\x00\xa7Q\x00\x00\x14\x00\x00\x00\x06R\x00\x00\xdc\x00\x00\x00\x1bR\x00\x00\x0f\x00\x00\x00\xf8R\x00\x00\n\x00\x00\x00\x08S\x00\x00\x07\x00\x00\x00\x13S\x00\x00-\x00\x00\x00\x1bS\x00\x00+\x00\x00\x00IS\x00\x00F\x00\x00\x00uS\x00\x00\x0f\x00\x00\x00\xbcS\x00\x000\x00\x00\x00\xccS\x00\x008\x00\x00\x00\xfdS\x00\x00s\x00\x00\x006T\x00\x00\x0f\x00\x00\x00\xaaT\x00\x00\n\x00\x00\x00\xbaT\x00\x00\x10\x00\x00\x00\xc5T\x00\x00\x0e\x00\x00\x00\xd6T\x00\x00:\x00\x00\x00\xe5T\x00\x00\x0f\x00\x00\x00 U\x00\x00\x04\x00\x00\x000U\x00\x00;\x00\x00\x005U\x00\x00G\x00\x00\x00qU\x00\x001\x00\x00\x00\xb9U\x00\x00Y\x00\x00\x00\xebU\x00\x00\x13\x00\x00\x00EV\x00\x004\x00\x00\x00YV\x00\x00\x80\x00\x00\x00\x8eV\x00\x00H\x00\x00\x00\x0fW\x00\x00\r\x00\x00\x00XW\x00\x00(\x00\x00\x00fW\x00\x00\r\x00\x00\x00\x8fW\x00\x00\xbc\x00\x00\x00\x9dW\x00\x00\x08\x00\x00\x00ZX\x00\x00\t\x00\x00\x00cX\x00\x00\x06\x00\x00\x00mX\x00\x00\x1e\x00\x00\x00tX\x00\x00\x16\x00\x00\x00\x93X\x00\x00\x13\x00\x00\x00\xaaX\x00\x00\x0e\x00\x00\x00\xbeX\x00\x00\x1b\x00\x00\x00\xcdX\x00\x00\x13\x00\x00\x00\xe9X\x00\x00+\x00\x00\x00\xfdX\x00\x00*\x00\x00\x00)Y\x00\x000\x00\x00\x00TY\x00\x00)\x00\x00\x00\x85Y\x00\x00<\x00\x00\x00\xafY\x00\x00\x0c\x00\x00\x00\xecY\x00\x00\x17\x00\x00\x00\xf9Y\x00\x00<\x00\x00\x00\x11Z\x00\x000\x00\x00\x00NZ\x00\x00\x84\x00\x00\x00\x7fZ\x00\x00X\x00\x00\x00\x04[\x00\x00\x0f\x00\x00\x00][\x00\x00\x12\x00\x00\x00m[\x00\x00-\x00\x00\x00\x80[\x00\x00\x0c\x00\x00\x00\xae[\x00\x00\x0c\x00\x00\x00\xbb[\x00\x00\x0c\x00\x00\x00\xc8[\x00\x00"\x00\x00\x00\xd5[\x00\x009\x00\x00\x00\xf8[\x00\x00\x0f\x00\x00\x002\\\x00\x00V\x00\x00\x00B\\\x00\x00r\x00\x00\x00\x99\\\x00\x00G\x00\x00\x00\x0c]\x00\x00\'\x00\x00\x00T]\x00\x00\x0e\x00\x00\x00|]\x00\x00\x13\x00\x00\x00\x8b]\x00\x00\x14\x00\x00\x00\x9f]\x00\x00#\x00\x00\x00\xb4]\x00\x00\x06\x00\x00\x00\xd8]\x00\x00\r\x00\x00\x00\xdf]\x00\x00\r\x00\x00\x00\xed]\x00\x00\x07\x00\x00\x00\xfb]\x00\x00\x1e\x00\x00\x00\x03^\x00\x00\x0b\x00\x00\x00"^\x00\x00\x17\x00\x00\x00.^\x00\x00\x1b\x00\x00\x00F^\x00\x00\x1a\x00\x00\x00b^\x00\x00\x0e\x00\x00\x00}^\x00\x00^\x00\x00\x00\x8c^\x00\x00\x0f\x00\x00\x00\xeb^\x00\x00\x12\x00\x00\x00\xfb^\x00\x00\x10\x00\x00\x00\x0e_\x00\x00\x0f\x00\x00\x00\x1f_\x00\x00\x10\x00\x00\x00/_\x00\x00g\x00\x00\x00@_\x00\x00c\x00\x00\x00\xa8_\x00\x007\x00\x00\x00\x0c`\x00\x00!\x00\x00\x00D`\x00\x006\x00\x00\x00f`\x00\x00d\x00\x00\x00\x9d`\x00\x00\t\x00\x00\x00\x02a\x00\x00\x17\x00\x00\x00\x0ca\x00\x00\x16\x00\x00\x00$a\x00\x00\x11\x00\x00\x00;a\x00\x00\x04\x01\x00\x00Ma\x00\x00z\x00\x00\x00Rb\x00\x00\x85\x00\x00\x00\xcdb\x00\x00\xb6\x00\x00\x00Sc\x00\x00\r\x01\x00\x00\nd\x00\x00P\x00\x00\x00\x18e\x00\x00+\x01\x00\x00ie\x00\x00#\x00\x00\x00\x95f\x00\x00\x06\x00\x00\x00\xb9f\x00\x00\x17\x00\x00\x00\xc0f\x00\x00\x14\x00\x00\x00\xd8f\x00\x00\x07\x00\x00\x00\xedf\x00\x00 \x00\x00\x00\xf5f\x00\x00\x03\x00\x00\x00\x16g\x00\x00\n\x00\x00\x00\x1ag\x00\x00\x13\x00\x00\x00%g\x00\x00\x04\x00\x00\x009g\x00\x00\x85\x00\x00\x00>g\x00\x00\x04\x00\x00\x00\xc4g\x00\x00\t\x00\x00\x00\xc9g\x00\x00.\x00\x00\x00\xd3g\x00\x00%\x00\x00\x00\x02h\x00\x000\x00\x00\x00(h\x00\x00q\x00\x00\x00Yh\x00\x00X\x00\x00\x00\xcbh\x00\x00\x1b\x00\x00\x00$i\x00\x00\x1a\x00\x00\x00@i\x00\x00k\x00\x00\x00[i\x00\x00\x9d\x00\x00\x00\xc7i\x00\x00&\x00\x00\x00ej\x00\x00\x1e\x00\x00\x00\x8cj\x00\x00(\x00\x00\x00\xabj\x00\x00v\x00\x00\x00\xd4j\x00\x00\'\x00\x00\x00Kk\x00\x00"\x00\x00\x00sk\x00\x00B\x00\x00\x00\x96k\x00\x00^\x00\x00\x00\xd9k\x00\x00$\x00\x00\x008l\x00\x00h\x00\x00\x00]l\x00\x00.\x00\x00\x00\xc6l\x00\x00N\x00\x00\x00\xf5l\x00\x00\t\x00\x00\x00Dm\x00\x00\x05\x00\x00\x00Nm\x00\x00\x15\x00\x00\x00Tm\x00\x00\x06\x00\x00\x00jm\x00\x00+\x00\x00\x00qm\x00\x00\x1b\x00\x00\x00\x9dm\x00\x00%\x00\x00\x00\xb9m\x00\x00#\x00\x00\x00\xdfm\x00\x00&\x00\x00\x00\x03n\x00\x00\x0b\x00\x00\x00*n\x00\x00\x07\x00\x00\x006n\x00\x00\x13\x00\x00\x00>n\x00\x00\x0c\x00\x00\x00Rn\x00\x00\x10\x00\x00\x00_n\x00\x00\x10\x00\x00\x00pn\x00\x00\x06\x00\x00\x00\x81n\x00\x00]\x00\x00\x00\x88n\x00\x00\xdb\x00\x00\x00\xe6n\x00\x00K\x00\x00\x00\xc2o\x00\x00Q\x00\x00\x00\x0ep\x00\x00\x12\x00\x00\x00`p\x00\x00\x18\x00\x00\x00sp\x00\x00%\x00\x00\x00\x8cp\x00\x00\x1b\x00\x00\x00\xb2p\x00\x00\xb4\x00\x00\x00\xcep\x00\x002\x00\x00\x00\x83q\x00\x00\x14\x00\x00\x00\xb6q\x00\x00_\x00\x00\x00\xcbq\x00\x00:\x00\x00\x00+r\x00\x00\x12\x00\x00\x00fr\x00\x00*\x00\x00\x00yr\x00\x00\x04\x00\x00\x00\xa4r\x00\x00\x14\x00\x00\x00\xa9r\x00\x00\x07\x00\x00\x00\xber\x00\x00\x07\x00\x00\x00\xc6r\x00\x00\x1d\x00\x00\x00\xcer\x00\x00-\x00\x00\x00\xecr\x00\x00R\x00\x00\x00\x1as\x00\x00d\x00\x00\x00ms\x00\x00#\x00\x00\x00\xd2s\x00\x002\x00\x00\x00\xf6s\x00\x003\x00\x00\x00)t\x00\x00\xdf\x00\x00\x00]t\x00\x00\x08\x00\x00\x00=u\x00\x00\t\x00\x00\x00Fu\x00\x00\x0b\x00\x00\x00Pu\x00\x00+\x01\x00\x00\\u\x00\x00)\x00\x00\x00\x88v\x00\x00\x1d\x00\x00\x00\xb2v\x00\x00\x17\x00\x00\x00\xd0v\x00\x00 \x00\x00\x00\xe8v\x00\x00\x13\x00\x00\x00\tw\x00\x00e\x00\x00\x00\x1dw\x00\x00\\\x01\x00\x00\x83w\x00\x00\x1d\x00\x00\x00\xe0x\x00\x00\x05\x00\x00\x00\xfex\x00\x00\x04\x00\x00\x00\x04y\x00\x00\x1b\x00\x00\x00\ty\x00\x00\r\x00\x00\x00%y\x00\x00\x04\x00\x00\x003y\x00\x00\x03\x00\x00\x008y\x00\x00\t\x00\x00\x00<y\x00\x00\t\x00\x00\x00Fy\x00\x00+\x02\x00\x00Py\x00\x00)\x00\x00\x00|{\x00\x00F\x00\x00\x00\xa6{\x00\x00T\x00\x00\x00\xed{\x00\x00P\x00\x00\x00B|\x00\x00P\x00\x00\x00\x93|\x00\x00P\x00\x00\x00\xe4|\x00\x00\x1e\x00\x00\x005}\x00\x00U\x00\x00\x00T}\x00\x00"\x00\x00\x00\xaa}\x00\x00\x12\x00\x00\x00\xcd}\x00\x00\x0c\x00\x00\x00\xe0}\x00\x00\x0e\x00\x00\x00\xed}\x00\x00\x0f\x00\x00\x00\xfc}\x00\x00\n\x00\x00\x00\x0c~\x00\x00\x0e\x00\x00\x00\x17~\x00\x00\x15\x00\x00\x00&~\x00\x00&\x00\x00\x00<~\x00\x00\x0c\x00\x00\x00c~\x00\x00$\x00\x00\x00p~\x00\x00\x15\x00\x00\x00\x95~\x00\x00\x0f\x00\x00\x00\xab~\x00\x001\x00\x00\x00\xbb~\x00\x00&\x00\x00\x00\xed~\x00\x00\x1e\x00\x00\x00\x14\x7f\x00\x00\x0c\x00\x00\x003\x7f\x00\x00\x13\x00\x00\x00@\x7f\x00\x00\x1b\x00\x00\x00T\x7f\x00\x00\x0f\x00\x00\x00p\x7f\x00\x00\r\x00\x00\x00\x80\x7f\x00\x00+\x00\x00\x00\x8e\x7f\x00\x00\t\x00\x00\x00\xba\x7f\x00\x00\n\x00\x00\x00\xc4\x7f\x00\x00\x07\x00\x00\x00\xcf\x7f\x00\x00\x19\x00\x00\x00\xd7\x7f\x00\x00\x11\x00\x00\x00\xf1\x7f\x00\x00\x1a\x00\x00\x00\x03\x80\x00\x00\x0f\x00\x00\x00\x1e\x80\x00\x00\x0c\x00\x00\x00.\x80\x00\x00\n\x00\x00\x00;\x80\x00\x00\x08\x00\x00\x00F\x80\x00\x00\x13\x00\x00\x00O\x80\x00\x00\x18\x00\x00\x00c\x80\x00\x00\x1e\x00\x00\x00|\x80\x00\x00\x05\x00\x00\x00\x9b\x80\x00\x00\x08\x00\x00\x00\xa1\x80\x00\x00\x0e\x00\x00\x00\xaa\x80\x00\x00\x17\x00\x00\x00\xb9\x80\x00\x00\x18\x00\x00\x00\xd1\x80\x00\x00\x03\x00\x00\x00\xea\x80\x00\x00V\x00\x00\x00\xee\x80\x00\x00A\x00\x00\x00E\x81\x00\x003\x00\x00\x00\x87\x81\x00\x00\x1e\x00\x00\x00\xbb\x81\x00\x006\x00\x00\x00\xda\x81\x00\x00M\x02\x00\x00\x11\x82\x00\x00\xa3\x01\x00\x00_\x84\x00\x00\x8c\x02\x00\x00\x03\x86\x00\x00L\x00\x00\x00\x90\x88\x00\x00O\x00\x00\x00\xdd\x88\x00\x004\x00\x00\x00-\x89\x00\x00\x8f\x00\x00\x00b\x89\x00\x00j\x00\x00\x00\xf2\x89\x00\x00d\x00\x00\x00]\x8a\x00\x00/\x00\x00\x00\xc2\x8a\x00\x00\xd5\x00\x00\x00\xf2\x8a\x00\x00\x7f\x00\x00\x00\xc8\x8b\x00\x00\xcd\x00\x00\x00H\x8c\x00\x00\xa4\x01\x00\x00\x16\x8d\x00\x00<\x00\x00\x00\xbb\x8e\x00\x00T\x00\x00\x00\xf8\x8e\x00\x00\x01\x00\x00\x00M\x8f\x00\x00M\x00\x00\x00O\x8f\x00\x00p\x00\x00\x00\x9d\x8f\x00\x00\n\x00\x00\x00\x0e\x90\x00\x00\x16\x00\x00\x00\x19\x90\x00\x00\x14\x00\x00\x000\x90\x00\x00\x10\x00\x00\x00E\x90\x00\x00/\x00\x00\x00V\x90\x00\x00I\x00\x00\x00\x86\x90\x00\x00D\x00\x00\x00\xd0\x90\x00\x00@\x00\x00\x00\x15\x91\x00\x00\x10\x00\x00\x00V\x91\x00\x003\x00\x00\x00g\x91\x00\x00}\x00\x00\x00\x9b\x91\x00\x00\x98\x00\x00\x00\x19\x92\x00\x00$\x00\x00\x00\xb2\x92\x00\x00\x1b\x00\x00\x00\xd7\x92\x00\x00M\x00\x00\x00\xf3\x92\x00\x00"\x00\x00\x00A\x93\x00\x00\x8f\x00\x00\x00d\x93\x00\x00\t\x00\x00\x00\xf4\x93\x00\x00\x10\x00\x00\x00\xfe\x93\x00\x00\x10\x00\x00\x00\x0f\x94\x00\x00\x10\x00\x00\x00 \x94\x00\x00\x05\x00\x00\x001\x94\x00\x00^\x00\x00\x007\x94\x00\x00\t\x00\x00\x00\x96\x94\x00\x00_\x01\x00\x00\xa0\x94\x00\x00\'\x00\x00\x00\x00\x96\x00\x00!\x00\x00\x00(\x96\x00\x00\x13\x00\x00\x00J\x96\x00\x00\x05\x00\x00\x00^\x96\x00\x00\x1a\x00\x00\x00d\x96\x00\x00\x12\x00\x00\x00\x7f\x96\x00\x00\t\x00\x00\x00\x92\x96\x00\x00\x08\x00\x00\x00\x9c\x96\x00\x00\x13\x00\x00\x00\xa5\x96\x00\x00\x1c\x00\x00\x00\xb9\x96\x00\x00\x06\x00\x00\x00\xd6\x96\x00\x00\x15\x00\x00\x00\xdd\x96\x00\x00\x1f\x00\x00\x00\xf3\x96\x00\x00O\x00\x00\x00\x13\x97\x00\x00\x07\x00\x00\x00c\x97\x00\x003\x00\x00\x00k\x97\x00\x00\x16\x00\x00\x00\x9f\x97\x00\x003\x00\x00\x00\xb6\x97\x00\x00\x05\x00\x00\x00\xea\x97\x00\x00)\x00\x00\x00\xf0\x97\x00\x00\x13\x00\x00\x00\x1a\x98\x00\x007\x00\x00\x00.\x98\x00\x00A\x00\x00\x00f\x98\x00\x006\x00\x00\x00\xa8\x98\x00\x00\x12\x00\x00\x00\xdf\x98\x00\x00%\x00\x00\x00\xf2\x98\x00\x00\'\x00\x00\x00\x18\x99\x00\x00\x18\x00\x00\x00@\x99\x00\x00?\x00\x00\x00Y\x99\x00\x00\x1a\x00\x00\x00\x99\x99\x00\x00\x15\x00\x00\x00\xb4\x99\x00\x00P\x00\x00\x00\xca\x99\x00\x00 \x00\x00\x00\x1b\x9a\x00\x004\x00\x00\x00<\x9a\x00\x005\x00\x00\x00q\x9a\x00\x00\x1d\x00\x00\x00\xa7\x9a\x00\x00g\x00\x00\x00\xc5\x9a\x00\x00-\x00\x00\x00-\x9b\x00\x00\x12\x00\x00\x00[\x9b\x00\x00\x1c\x00\x00\x00n\x9b\x00\x00%\x00\x00\x00\x8b\x9b\x00\x00\x18\x00\x00\x00\xb1\x9b\x00\x00\x13\x00\x00\x00\xca\x9b\x00\x00\n\x00\x00\x00\xde\x9b\x00\x00\x18\x00\x00\x00\xe9\x9b\x00\x00\x17\x00\x00\x00\x02\x9c\x00\x00T\x00\x00\x00\x1a\x9c\x00\x00\x1b\x00\x00\x00o\x9c\x00\x00\x19\x00\x00\x00\x8b\x9c\x00\x00V\x00\x00\x00\xa5\x9c\x00\x00\x18\x00\x00\x00\xfc\x9c\x00\x00\x11\x00\x00\x00\x15\x9d\x00\x00&\x00\x00\x00\'\x9d\x00\x00\x1b\x00\x00\x00N\x9d\x00\x00&\x00\x00\x00j\x9d\x00\x00E\x00\x00\x00\x91\x9d\x00\x00\x0c\x00\x00\x00\xd7\x9d\x00\x00\'\x00\x00\x00\xe4\x9d\x00\x00\x16\x00\x00\x00\x0c\x9e\x00\x00\r\x00\x00\x00#\x9e\x00\x00\r\x00\x00\x001\x9e\x00\x00\x1e\x00\x00\x00?\x9e\x00\x00\x17\x00\x00\x00^\x9e\x00\x00\x14\x00\x00\x00v\x9e\x00\x00<\x00\x00\x00\x8b\x9e\x00\x00\x17\x00\x00\x00\xc8\x9e\x00\x00\x10\x00\x00\x00\xe0\x9e\x00\x00\x13\x00\x00\x00\xf1\x9e\x00\x00#\x00\x00\x00\x05\x9f\x00\x00W\x00\x00\x00)\x9f\x00\x004\x00\x00\x00\x81\x9f\x00\x00}\x00\x00\x00\xb6\x9f\x00\x00.\x00\x00\x004\xa0\x00\x00"\x00\x00\x00c\xa0\x00\x00$\x00\x00\x00\x86\xa0\x00\x00#\x00\x00\x00\xab\xa0\x00\x00\x1e\x00\x00\x00\xcf\xa0\x00\x00\n\x00\x00\x00\xee\xa0\x00\x00\x0f\x00\x00\x00\xf9\xa0\x00\x00\x1f\x00\x00\x00\t\xa1\x00\x00\x04\x00\x00\x00)\xa1\x00\x002\x00\x00\x00.\xa1\x00\x00\x0b\x00\x00\x00a\xa1\x00\x00\x8f\x00\x00\x00m\xa1\x00\x00\x14\x00\x00\x00\xfd\xa1\x00\x00 \x00\x00\x00\x12\xa2\x00\x00$\x00\x00\x003\xa2\x00\x00 \x00\x00\x00X\xa2\x00\x00!\x00\x00\x00y\xa2\x00\x002\x00\x00\x00\x9b\xa2\x00\x00\x10\x00\x00\x00\xce\xa2\x00\x00\x18\x00\x00\x00\xdf\xa2\x00\x00#\x00\x00\x00\xf8\xa2\x00\x00\x01\x00\x00\x00\x1c\xa3\x00\x00\x06\x00\x00\x00\x1e\xa3\x00\x00\x14\x00\x00\x00%\xa3\x00\x00 \x00\x00\x00:\xa3\x00\x00\x14\x00\x00\x00[\xa3\x00\x00\x1c\x00\x00\x00p\xa3\x00\x00%\x00\x00\x00\x8d\xa3\x00\x00\x0f\x00\x00\x00\xb3\xa3\x00\x00"\x00\x00\x00\xc3\xa3\x00\x00Q\x00\x00\x00\xe6\xa3\x00\x00\x06\x00\x00\x008\xa4\x00\x00=\x00\x00\x00?\xa4\x00\x00\x1f\x00\x00\x00}\xa4\x00\x00=\x00\x00\x00\x9d\xa4\x00\x00"\x00\x00\x00\xdb\xa4\x00\x00,\x00\x00\x00\xfe\xa4\x00\x00:\x00\x00\x00+\xa5\x00\x00/\x00\x00\x00f\xa5\x00\x00)\x00\x00\x00\x96\xa5\x00\x00&\x00\x00\x00\xc0\xa5\x00\x00\n\x00\x00\x00\xe7\xa5\x00\x00\x17\x00\x00\x00\xf2\xa5\x00\x00\x1a\x00\x00\x00\n\xa6\x00\x00$\x00\x00\x00%\xa6\x00\x00\x11\x00\x00\x00J\xa6\x00\x00\n\x00\x00\x00\\\xa6\x00\x009\x00\x00\x00g\xa6\x00\x00\x1b\x00\x00\x00\xa1\xa6\x00\x00-\x00\x00\x00\xbd\xa6\x00\x00\x14\x00\x00\x00\xeb\xa6\x00\x00\x17\x00\x00\x00\x00\xa7\x00\x00\x0c\x00\x00\x00\x18\xa7\x00\x00\x10\x00\x00\x00%\xa7\x00\x00*\x00\x00\x006\xa7\x00\x00\x17\x00\x00\x00a\xa7\x00\x00\x1d\x00\x00\x00y\xa7\x00\x00\x07\x00\x00\x00\x97\xa7\x00\x00\x0b\x00\x00\x00\x9f\xa7\x00\x00B\x00\x00\x00\xab\xa7\x00\x00\x06\x00\x00\x00\xee\xa7\x00\x00\xc3\x00\x00\x00\xf5\xa7\x00\x005\x01\x00\x00\xb9\xa8\x00\x00[\x00\x00\x00\xef\xa9\x00\x00)\x00\x00\x00K\xaa\x00\x00\x03\x00\x00\x00u\xaa\x00\x00\x06\x00\x00\x00y\xaa\x00\x00\x07\x00\x00\x00\x80\xaa\x00\x00\x06\x00\x00\x00\x88\xaa\x00\x004\x00\x00\x00\x8f\xaa\x00\x00#\x00\x00\x00\xc4\xaa\x00\x00\x1e\x00\x00\x00\xe8\xaa\x00\x00\t\x00\x00\x00\x07\xab\x00\x00\x04\x00\x00\x00\x11\xab\x00\x00\x0b\x00\x00\x00\x16\xab\x00\x00\x07\x00\x00\x00"\xab\x00\x00\x1b\x02\x00\x00*\xab\x00\x00\x8f\x00\x00\x00F\xad\x00\x00n\x00\x00\x00\xd6\xad\x00\x00\x16\x00\x00\x00E\xae\x00\x00\x12\x00\x00\x00\\\xae\x00\x00\xcc\x00\x00\x00o\xae\x00\x002\x00\x00\x00<\xaf\x00\x00\x19\x00\x00\x00o\xaf\x00\x00\x1e\x00\x00\x00\x89\xaf\x00\x00\x1e\x00\x00\x00\xa8\xaf\x00\x006\x00\x00\x00\xc7\xaf\x00\x00\x12\x00\x00\x00\xfe\xaf\x00\x00\x1f\x00\x00\x00\x11\xb0\x00\x00#\x00\x00\x001\xb0\x00\x00\x07\x00\x00\x00U\xb0\x00\x00"\x00\x00\x00]\xb0\x00\x00\t\x00\x00\x00\x80\xb0\x00\x00\x11\x00\x00\x00\x8a\xb0\x00\x00\x12\x00\x00\x00\x9c\xb0\x00\x002\x00\x00\x00\xaf\xb0\x00\x00\t\x00\x00\x00\xe2\xb0\x00\x00C\x00\x00\x00\xec\xb0\x00\x00\r\x00\x00\x000\xb1\x00\x003\x00\x00\x00>\xb1\x00\x009\x00\x00\x00r\xb1\x00\x00\x19\x00\x00\x00\xac\xb1\x00\x001\x00\x00\x00\xc6\xb1\x00\x00i\x00\x00\x00\xf8\xb1\x00\x00\x17\x00\x00\x00b\xb2\x00\x00\x08\x00\x00\x00z\xb2\x00\x00\xa1\x00\x00\x00\x83\xb2\x00\x00\x17\x00\x00\x00%\xb3\x00\x00e\x00\x00\x00=\xb3\x00\x00y\x00\x00\x00\xa3\xb3\x00\x00\x04\x00\x00\x00\x1d\xb4\x00\x00\n\x00\x00\x00"\xb4\x00\x006\x00\x00\x00-\xb4\x00\x00\r\x00\x00\x00d\xb4\x00\x00\x11\x00\x00\x00r\xb4\x00\x00\x17\x00\x00\x00\x84\xb4\x00\x00\x19\x00\x00\x00\x9c\xb4\x00\x00\x19\x00\x00\x00\xb6\xb4\x00\x00(\x00\x00\x00\xd0\xb4\x00\x00\x19\x00\x00\x00\xf9\xb4\x00\x00\x0c\x00\x00\x00\x13\xb5\x00\x00\x0f\x00\x00\x00 \xb5\x00\x00>\x00\x00\x000\xb5\x00\x00\x05\x00\x00\x00o\xb5\x00\x00_\x00\x00\x00u\xb5\x00\x00\x15\x00\x00\x00\xd5\xb5\x00\x00\xf6\x00\x00\x00\xeb\xb5\x00\x00\x1e\x00\x00\x00\xe2\xb6\x00\x00\x0f\x00\x00\x00\x01\xb7\x00\x00\x07\x00\x00\x00\x11\xb7\x00\x00\x1d\x00\x00\x00\x19\xb7\x00\x00\x1b\x00\x00\x007\xb7\x00\x00H\x00\x00\x00S\xb7\x00\x00\x11\x00\x00\x00\x9c\xb7\x00\x00=\x00\x00\x00\xae\xb7\x00\x00D\x00\x00\x00\xec\xb7\x00\x00\x95\x00\x00\x001\xb8\x00\x00\x12\x00\x00\x00\xc7\xb8\x00\x00\x0c\x00\x00\x00\xda\xb8\x00\x00\x14\x00\x00\x00\xe7\xb8\x00\x00\x12\x00\x00\x00\xfc\xb8\x00\x00J\x00\x00\x00\x0f\xb9\x00\x00\x18\x00\x00\x00Z\xb9\x00\x00\x06\x00\x00\x00s\xb9\x00\x00F\x00\x00\x00z\xb9\x00\x00[\x00\x00\x00\xc1\xb9\x00\x00@\x00\x00\x00\x1d\xba\x00\x00r\x00\x00\x00^\xba\x00\x00\x12\x00\x00\x00\xd1\xba\x00\x00M\x00\x00\x00\xe4\xba\x00\x00\x8c\x00\x00\x002\xbb\x00\x00S\x00\x00\x00\xbf\xbb\x00\x00\x11\x00\x00\x00\x13\xbc\x00\x00;\x00\x00\x00%\xbc\x00\x00\r\x00\x00\x00a\xbc\x00\x00\xbc\x00\x00\x00o\xbc\x00\x00\x0b\x00\x00\x00,\xbd\x00\x00\x07\x00\x00\x008\xbd\x00\x00\x04\x00\x00\x00@\xbd\x00\x00$\x00\x00\x00E\xbd\x00\x00!\x00\x00\x00j\xbd\x00\x00\x16\x00\x00\x00\x8c\xbd\x00\x00\x13\x00\x00\x00\xa3\xbd\x00\x00 \x00\x00\x00\xb7\xbd\x00\x00\x14\x00\x00\x00\xd8\xbd\x00\x00-\x00\x00\x00\xed\xbd\x00\x00-\x00\x00\x00\x1b\xbe\x00\x002\x00\x00\x00I\xbe\x00\x00+\x00\x00\x00|\xbe\x00\x00J\x00\x00\x00\xa8\xbe\x00\x00\x14\x00\x00\x00\xf3\xbe\x00\x00\x1d\x00\x00\x00\x08\xbf\x00\x00E\x00\x00\x00&\xbf\x00\x001\x00\x00\x00l\xbf\x00\x00\xae\x00\x00\x00\x9e\xbf\x00\x00N\x00\x00\x00M\xc0\x00\x00\x10\x00\x00\x00\x9c\xc0\x00\x00(\x00\x00\x00\xad\xc0\x00\x002\x00\x00\x00\xd6\xc0\x00\x00\x08\x00\x00\x00\t\xc1\x00\x00\r\x00\x00\x00\x12\xc1\x00\x00\x19\x00\x00\x00 \xc1\x00\x004\x00\x00\x00:\xc1\x00\x00=\x00\x00\x00o\xc1\x00\x00\r\x00\x00\x00\xad\xc1\x00\x00i\x00\x00\x00\xbb\xc1\x00\x00\x87\x00\x00\x00%\xc2\x00\x00Q\x00\x00\x00\xad\xc2\x00\x000\x00\x00\x00\xff\xc2\x00\x00\x12\x00\x00\x000\xc3\x00\x00!\x00\x00\x00C\xc3\x00\x00\x1c\x00\x00\x00e\xc3\x00\x000\x00\x00\x00\x82\xc3\x00\x00\x07\x00\x00\x00\xb3\xc3\x00\x00\x10\x00\x00\x00\xbb\xc3\x00\x00\r\x00\x00\x00\xcc\xc3\x00\x00\x07\x00\x00\x00\xda\xc3\x00\x001\x00\x00\x00\xe2\xc3\x00\x00\x16\x00\x00\x00\x14\xc4\x00\x002\x00\x00\x00+\xc4\x00\x00%\x00\x00\x00^\xc4\x00\x00%\x00\x00\x00\x84\xc4\x00\x00\x11\x00\x00\x00\xaa\xc4\x00\x00b\x00\x00\x00\xbc\xc4\x00\x00\x10\x00\x00\x00\x1f\xc5\x00\x00\x1a\x00\x00\x000\xc5\x00\x00\x16\x00\x00\x00K\xc5\x00\x00\x12\x00\x00\x00b\xc5\x00\x00\x17\x00\x00\x00u\xc5\x00\x00\x95\x00\x00\x00\x8d\xc5\x00\x00r\x00\x00\x00#\xc6\x00\x00B\x00\x00\x00\x96\xc6\x00\x000\x00\x00\x00\xd9\xc6\x00\x00@\x00\x00\x00\n\xc7\x00\x00}\x00\x00\x00K\xc7\x00\x00\x0b\x00\x00\x00\xc9\xc7\x00\x00\x19\x00\x00\x00\xd5\xc7\x00\x00\x19\x00\x00\x00\xef\xc7\x00\x00\x1c\x00\x00\x00\t\xc8\x00\x00\x1c\x01\x00\x00&\xc8\x00\x00\x81\x00\x00\x00C\xc9\x00\x00\x96\x00\x00\x00\xc5\xc9\x00\x00\xbd\x00\x00\x00\\\xca\x00\x00]\x01\x00\x00\x1a\xcb\x00\x00c\x00\x00\x00x\xcc\x00\x00b\x01\x00\x00\xdc\xcc\x00\x00%\x00\x00\x00?\xce\x00\x00\x06\x00\x00\x00e\xce\x00\x00\x1f\x00\x00\x00l\xce\x00\x00\x18\x00\x00\x00\x8c\xce\x00\x00\x07\x00\x00\x00\xa5\xce\x00\x00(\x00\x00\x00\xad\xce\x00\x00\x07\x00\x00\x00\xd6\xce\x00\x00\x15\x00\x00\x00\xde\xce\x00\x00\x1e\x00\x00\x00\xf4\xce\x00\x00\x04\x00\x00\x00\x13\xcf\x00\x00\x94\x00\x00\x00\x18\xcf\x00\x00\x04\x00\x00\x00\xad\xcf\x00\x00\t\x00\x00\x00\xb2\xcf\x00\x00=\x00\x00\x00\xbc\xcf\x00\x00\x1f\x00\x00\x00\xfa\xcf\x00\x00A\x00\x00\x00\x1a\xd0\x00\x00~\x00\x00\x00\\\xd0\x00\x00l\x00\x00\x00\xdb\xd0\x00\x00\x1a\x00\x00\x00H\xd1\x00\x00\x1a\x00\x00\x00c\xd1\x00\x00z\x00\x00\x00~\xd1\x00\x00\xb2\x00\x00\x00\xf9\xd1\x00\x00)\x00\x00\x00\xac\xd2\x00\x00#\x00\x00\x00\xd6\xd2\x00\x00%\x00\x00\x00\xfa\xd2\x00\x00\xa6\x00\x00\x00 \xd3\x00\x00*\x00\x00\x00\xc7\xd3\x00\x00%\x00\x00\x00\xf2\xd3\x00\x00^\x00\x00\x00\x18\xd4\x00\x00s\x00\x00\x00w\xd4\x00\x00\x1f\x00\x00\x00\xeb\xd4\x00\x00\xae\x00\x00\x00\x0b\xd5\x00\x005\x00\x00\x00\xba\xd5\x00\x00W\x00\x00\x00\xf0\xd5\x00\x00\n\x00\x00\x00H\xd6\x00\x00\x05\x00\x00\x00S\xd6\x00\x00 \x00\x00\x00Y\xd6\x00\x00\x06\x00\x00\x00z\xd6\x00\x008\x00\x00\x00\x81\xd6\x00\x00!\x00\x00\x00\xba\xd6\x00\x00,\x00\x00\x00\xdc\xd6\x00\x00/\x00\x00\x00\t\xd7\x00\x00%\x00\x00\x009\xd7\x00\x00\x0c\x00\x00\x00_\xd7\x00\x00\x07\x00\x00\x00l\xd7\x00\x00\x1b\x00\x00\x00t\xd7\x00\x00\x0e\x00\x00\x00\x90\xd7\x00\x00\x12\x00\x00\x00\x9f\xd7\x00\x00\x12\x00\x00\x00\xb2\xd7\x00\x00\n\x00\x00\x00\xc5\xd7\x00\x00m\x00\x00\x00\xd0\xd7\x00\x00\x1d\x01\x00\x00>\xd8\x00\x00[\x00\x00\x00\\\xd9\x00\x00a\x00\x00\x00\xb8\xd9\x00\x00\x1b\x00\x00\x00\x1a\xda\x00\x00!\x00\x00\x006\xda\x00\x00;\x00\x00\x00X\xda\x00\x000\x00\x00\x00\x94\xda\x00\x00\xca\x00\x00\x00\xc5\xda\x00\x00F\x00\x00\x00\x90\xdb\x00\x00\x1e\x00\x00\x00\xd7\xdb\x00\x00i\x00\x00\x00\xf6\xdb\x00\x00N\x00\x00\x00`\xdc\x00\x00\x1c\x00\x00\x00\xaf\xdc\x00\x007\x00\x00\x00\xcc\xdc\x00\x00\n\x00\x00\x00\x04\xdd\x00\x00\x19\x00\x00\x00\x0f\xdd\x00\x00\n\x00\x00\x00)\xdd\x00\x00\x08\x00\x00\x004\xdd\x00\x00\'\x00\x00\x00=\xdd\x00\x00B\x00\x00\x00e\xdd\x00\x00q\x00\x00\x00\xa8\xdd\x00\x00s\x00\x00\x00\x1a\xde\x00\x001\x00\x00\x00\x8e\xde\x00\x00<\x00\x00\x00\xc0\xde\x00\x002\x00\x00\x00\xfd\xde\x00\x00\xf3\x00\x00\x000\xdf\x00\x00\n\x00\x00\x00$\xe0\x00\x00\t\x00\x00\x00/\xe0\x00\x00\x0e\x00\x00\x009\xe0\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">libprs500</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00contains\x00libprs500\x00mybook.epub\x00Project-Id-Version: libprs500 0.4.22\nPOT-Creation-Date: 2008-04-04 09:07+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\tBaen Datei erkannt. Analysiere erneut...\x00\tBook Designer Datei erkannt.\x00\tKonvertiere in BBeB...\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\tAnalysiere HTML...\x00\n%prog [options] ISBN\n\nUmschlagbild des Buches mit der angegebenen ISBN von LibraryThing.com abrufen\n\x00\n%prog [options] key\n\nRufe Metadaten der B\xc3\xbccher von isndb.com ab. Sie k\xc3\xb6nnen entweder die\nISBN oder den Titel und den Autor des Buches angeben. Wenn Sie Titel und Autor angeben,\nkann es sein, dass mehrere B\xc3\xbccher gefunden werden.\n\nkey steht f\xc3\xbcr den Konto-Schl\xc3\xbcssel, der nach der kostenfreien Registrierung bei isbndb.com erstellt werden kann.\n\n\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%%prog [options] ARG\n\n%%prog analysiert eine Online-Quelle von Artikeln, z.B. einen RSS oder ATOM Feed und \nruft die Artikelinhalte hierarchisch organisiert ab.\n\nARG kann eines der folgenden sein:\n\ndateiname - %%prog versucht ein Rezept aus der Datei zu laden\n\ninstalliertes Rezept - %%prog l\xc3\xa4dt ein installiertes Rezept und benutzt es, um den Feed abzurufen. Z.B. f\xc3\xbcr Newsweek or "The BBC" or "The New York Times"\n\nRezept als eine Reihung - %%prog l\xc3\xa4dt das Rezept direkt nach der angegebenen Reihung.\n\nVerf\xc3\xbcgbare installierte Rezepte:\n%s\n\x00%prog URL\n\nURL ist z.B. http://google.com\x00%prog [options] datei.lrs\nErstellt eine LRF Datei aus einer LRS Datei.\x00%prog [options] dateiname.lrf\n\n\nZeigt/ver\xc3\xa4ndert die Metadaten in einer LRF Datei.\n\n\x00%prog [options] dateiname.pdf\n\n\n%prog konvertiert dateiname.pdf in dateiname.lrf\x00%prog [options] dateiname.rtf\n\n\n%prog konvertiert dateiname.rtf in dateiname.lrf\x00%prog [options] dateiname.txt\n\n\n%prog konvertiert dateiname.txt in dateiname.lrf\x00%prog [options] dateiname.mobi\x00%prog dateiname.lrf\nKonvertiert eine LRF Datei in eine LRS (XML UTF-8 kodierte) Datei\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00&Access Key;\x00Feed &anf\xc3\xbcgen\x00Ajoute mot-clef\x00&Auteurs :\x00Marge &Basse :\x00Datenbank verdi&chten\x00&D\xc3\xa9sactive la d\xc3\xa9tection de chapitres\x00&Feed Titel:\x00&Force un saut de page avant le tag:\x00Format de l\'&en-t\xc3\xaate\x00Marge &Gauche :\x00&Emplacement de la base de donn\xc3\xa9es (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace :\x00\xc3\x84<ester Artikel:\x00Saut de &page avant le tag:\x00Mot de &passe :\x00&Preprocess :\x00&Priorit\xc3\xa9 pour les travaux de conversion :\x00&Profil :\x00&Editeur :\x00&Note :\x00Expression &R\xc3\xa9guli\xc3\xa8re :\x00Rezept entfe&rnen\x00&Supprime des mots-clefs :\x00Marge &Droite :\x00&Recherche :\x00&S\xc3\xa9ries :\x00&Serif :\x00&Affiche l\'en-t\xc3\xaate\x00&Affiche le mot de passe\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&Titre :\x00Marge &Haute :\x00Nom de l\'&utilisateur :\x00Espacement entre &mots :\x00...\x00<b>Les modifications ne seront prises en compte qu\'apr\xc3\xa8s avoir relanc\xc3\xa9 le programme.\x00<b>Erreur \xc3\xa0 la r\xc3\xa9cup\xc3\xa9ration de l\'image de couverture.</b><br/>\x00<b>Aucun r\xc3\xa9sultat</b> pour la recherche <i>%s</i>.\x00<br>Doit \xc3\xaatre un r\xc3\xa9pertoire.\x00<font color="gray">Aucune aide n\'est disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hilfe gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">libprs500</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Fichiers HTML0 g\xc3\xa9n\xc3\xa9r\xc3\xa9s avec Book Designer</li>\x00<li><b>pdftohtml</b> - fichiers HTML g\xc3\xa9n\xc3\xa9r\xc3\xa9s par le programme pdftohtml</li>\x00<ol><li><b>baen</b> -Livres des \xc3\xa9ditions BAEN </li>\x00<p>Une base de donn\xc3\xa9es invalide existe d\xc3\xa9j\xc3\xa0 ici : %s, spprimez la avant d\'essayer de d\xc3\xa9placer la base de donn\xc3\xa9es existante.<br>Erreur : %s\x00<p>Des livres ayant le m\xc3\xaame titre existent d\xc3\xa9j\xc3\xa0 dans la base de donn\xc3\xa9es. Les ajouter quand m\xc3\xaame ?<ul>\x00<p>Impossible d\'envoyer les livres sur le lecteur : il n\'y a plus assez d\'espace m\xc3\xa9moire disponible\x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Veuillez saisir votre nom d\'utilisateur et votre mot de passe de <b>LibraryThing.com</b>. <br/>Si vous n\'en avez pas, vous pouvez <a href=\'http://www.librarything.com\'>y cr\xc3\xa9er un compte </a> gratuitement !</p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Il y a eu une erreur \xc3\xa0 la lecture du fichier : <br /><b>\x00<span style="color:red; font-weight:bold">Letzte Version: <a href="%s">%s</a></span>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Une expression r\xc3\xa9guli\xc3\xa8re. Les tags <a> qui respectent cette expression seront ignor\xc3\xa9s. Par d\xc3\xa9faut : %default\x00Mots-clefs\x00Mots-clefs disponibles\x00Ex\xc3\xa9cutions en cours\x00Ajout de Ta&gs :\x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Ajouter un r\xc3\xa9petoire \xc3\xa0 la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Rajoute une en-t\xc3\xaate \xc3\xa0 toutes les pages, avec le titre et l\'auteur.\x00Ajout d\'un nouveau format dans la base de donn\xc3\xa9es pour ce livre\x00Ajout d\'un livre\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Ajuste la pr\xc3\xa9sentation du fichier LRF g\xc3\xa9n\xc3\xa9r\xc3\xa9 en d\xc3\xa9finissant des param\xc3\xa8tres tels que la taille des polices et l\'espacement entre les mots.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Ein Fehler trat w\xc3\xa4hrend der Bearbeitung einer Tabelle auf: %s. Tabellenformat wird ignoriert.\x00Irgendein\x00Jeder Link, der diesem Regul\xc3\xa4ren Ausdruck entspricht, wird ignoriert. Diese Option kann mehrmals angegeben werden, somit werden Links ignoriert, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden keine Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben sind, wird --filter-regexp zuerst angewendet.\x00Applique le mot-clef au livre en cours.\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00Cl\xc3\xa9 de tr&i de l\'auteur :\x00T&ri de l\'auteur :\x00Auteur(s)\x00Autoren:\x00Formats disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Recule\x00Schlechte Tabelle:\n%s\x00Taille de &police par d\xc3\xa9faut :\x00Grundverzeichnis, in das die URL gespeichert wird. Voreinstellung ist %default \x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\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\x00Konnte Link %s nicht zu TOC hinzuf\xc3\xbcgen\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\x00Lesen nicht m\xc3\xb6glich von: %s\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\x00Verdichte Datenbank. Das kann dauern...\x00Verdichte Datenbank...\x00Configuration\x00Configuration\x00Configuration du visualisateur\x00Conversion de %s en LRF\x00Convertir des ebooks\x00Konvertierung von LRS in LRS, hilfreich bei der Fehlersuche.\x00Convertion individuelle\x00Convertir en LRF\x00Zu LRS konvertieren\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\x00Konnte Bild nicht verarbeiten: %s\n%s\x00Konnte Umschlagbild nicht lesen: %s\x00Umschlagbild gespeichert unter\x00Cr\xc3\xa9\xc3\xa9 par\x00Erstelle XML...\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\x00Ger\xc3\xa4tedatenbank ist besch\xc3\xa4digt\x00Lade CSS Stylesheets nicht herunter.\x00Je ne sais pas \xc3\xa0 quoi cela sert\x00Fortschrittsbalken nicht anzeigen\x00Doppelklick erm\xc3\xb6glicht <b>Bearbeitung</b><br><br>\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:\x00Fehlschlag bei der Analysierung von %s %s\x00Verarbeitung der OPF Datei schlug fehl\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00R\xc3\xa9cup\xc3\xa8re\x00R\xc3\xa9cup\xc3\xa9ration de l\'image de couverture depuis le serveur\x00R\xc3\xa9cup\xc3\xa9ration des metadata\x00R\xc3\xa9cup\xc3\xa9ration des metadata depuis le serveur\x00R\xc3\xa9cup\xc3\xa9rer des News\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00R\xc3\xa9cup\xc3\xa9ration des metadata pour <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Peaufiner la d\xc3\xa9tection des chapitres et des en-t\xc3\xaates de section.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Impose un saut de page avant un \xc3\xa9l\xc3\xa9ment avec l\'attribut sp\xc3\xa9cifi\xc3\xa9. Le format de cette option est : tagname regexp,attribute name,attribute value regexp.Par exemple, pour utiliser tous les tags de titres qui ont l\'attribut de classe "chapter" il faudrait saisir : "h\\d,class,chapter". Par d\xc3\xa9faut : %default\x00Impose un saut de page avant chaque tags dont le nom respecte cette expression r\xc3\xa9guli\xc3\xa8re.\x00Force un saut de page avant l\'&attribut :\x00Art\x00Format\x00Formats\x00Avance\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00R\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Feeds der Index Seite erhalten\x00En-t\xc3\xaatre\x00Aide\x00Hyphenation\x00I&SBN :\x00Si html2lrf ne trouve aucun saut de page dans le fichier html et ne peut pas d\xc3\xa9tecter de chapitres, il ins\xc3\xa8rera automatiquement des sauts de pages avant les tags dont le nom respectent cette expression r\xc3\xa9guli\xc3\xa8re. Par d\xc3\xa9faut : %default. Vous pouvez d\xc3\xa9sactiver cette fonction en saisissant "$". Le but de cette option est d\'essayer de s\'assurer qu\'il n\'y a pas de vraiment trop longues pages, car cela d\xc3\xa9grades les performances lorsque l\'on change de page. De ce fait, cette option est ignor\xc3\xa9e si la page courante a peu d\'\xc3\xa9l\xc3\xa9ments.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si une couverture est d\xc3\xa9ctect\xc3\xa9e dans le fichier source, utilise cette image plut\xc3\xb4t que l\'image sp\xc3\xa9cifi\xc3\xa9e.\x00Farben nicht bea&chten\x00Ignore les &tables\x00Augmente la taille de la police de 2 * FONT_DELTA points et l\'espacement entre lignes de FONT_DELTA points. FONT_DELTA peut-\xc3\xaatre un r\xc3\xa9el. Si FONT_DELTA est n\xc3\xa9gatif, la taille de la police est r\xc3\xa9duite.\x00Ins\xc3\xa8re des lignes &blanches entre les paragraphes\x00Base de donn\xc3\xa9es invalide\x00Chemin de la database invalide\x00Chemin de la database invalide\x00Chemin de la database invalide.<br>Erreur en \xc3\xa9criture\x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Travaux\x00Auftrag durch Benutzer abgebrochen\x00Travaux :\x00Visualisateur LRF\x00LRS gespeichert in\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.\x00Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt werden. Voreinstellung %default\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:\x00Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. Voreinstellung ist %default s\x00Mindest-Zeileneinzug von Paragraphen (Zeileneinzug der ersten Zeile eines Paragraphen) in Punkt. Voreinstellung: %default\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\x00Keine Datei zur Konvertierung angegeben.\x00Kein Dateiname angegeben.\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\x00OEB eBook erstellt in\x00Nur Links, die diesem Regul\xc3\xa4ren Ausdruck entsprechen, werden verfolgt. Diese Option kann mehrmals angegeben werden, somit werden Links verfolgt, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden alle Links verfolgt.\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)\x00Ausgabe LRS Datei\x00Ausgabeverzeichnis. Voreinstellung ist akutelles Verzeichnis.\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\x00Analysieren 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.\x00Pfad zur Zieldatei\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\x00Gebe erstellte HTML auf stdout aus und beende das Programm.\x00Verarbeite %s\x00Le profil du lecteur pour lequel le LRF est g\xc3\xa9n\xc3\xa9r\xc3\xa9. Ce profil d\xc3\xa9termine des param\xc3\xa8tres comme la r\xc3\xa9solution et la taille de l\'\xc3\xa9cran du lecteur. Par d\xc3\xa9faut : %s Profils support\xc3\xa9s : \x00Progression\x00Editeur\x00Note\x00Note de ce livre. de 0 \xc3\xa0 5 \xc3\xa9toiles\x00Original MOBI HTML gespeichert in\x00Lecteur \n%s disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Supprime un r\xc3\xa9petoire de la liste des r\xc3\xa9pertoires utilis\xc3\xa9s fr\xc3\xa9quemment\x00Suppression du livre\x00Feed aus dem Rezept entfernen\x00Retire les formats s\xc3\xa9lectionn\xc3\xa9s de ce livre de la base de donn\xc3\xa9es.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Affiche les tables HTML comme de simples blocs de textes au lieu de v\xc3\xa9ritables tables. Cela peut \xc3\xaatre n\xc3\xa9cessaire si le HTML contient des tables trop grosses ou complexes .\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00R\xc3\xa9initialisation de la recherche rapide\x00La marge de droite. Par d\xc3\xa9faut : %default points.\x00Laufzeit\x00S&ans-serif :\x00Enregistrer sur le disque\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Recherche les livres par titre ou auteur <br><br>Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00Recherche les livres par titre, auteur, \xc3\xa9diteur, tags et commentaires <br><br>Recherche en ET pour les mots s\xc3\xa9par\xc3\xa9s par des espaces.\x00S\xc3\xa9lectionnez le livre qui correspond le mieux au votre dans la liste ci-dessous.\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Envoyer au lecteur\x00Envoi vers la m\xc3\xa9moire du lecteur\x00Envoi vers la carte m\xc3\xa9moire\x00S\xc3\xa9pare les paragraphe avec des lignes blanches.\x00S\xc3\xa9ries\x00Index de s\xc3\xa9ries\x00Serien Index:\x00Serien:\x00Erreur Serveur. Veuillez essayer ult\xc3\xa9rieurement.\x00D\xc3\xa9finit l\'ID du livre\x00D\xc3\xa9finir les param\xc3\xa8tres par d\xc3\xa9faut de conversion\x00D\xc3\xa9finit la clef de tri pour l\'auteur\x00D\xc3\xa9finit la cl\xc3\xa9 de tri pour le titre\x00D\xc3\xa9finit l\'auteur\x00D\xc3\xa9finir le(s) auteur(s). Si plusieurs auteurs, les s\xc3\xa9parer d\'une virgule. Par d\xc3\xa9faut : %default\x00Gebe Autoren ein\x00D\xc3\xa9finit le titre du livre\x00D\xc3\xa9finir la cat\xc3\xa9gorie\x00Gebe Kommentar ein\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.\x00Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche.\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.\x00Geben Sie die Zeichenkodierung der Ausgangsdatei an. Sollte die ausgegebene LRF Datei seltsame Zeichen enthalten, \xc3\xa4ndern Sie diese Einstellung. Eine gebr\xc3\xa4uchliche Kodierung von Dateien, die von Windows Computern stammen, ist cp-1252. Eine andere gebr\xc3\xa4uchliche Alternative ist utf-8. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00D\xc3\xa9finit les param\xc3\xa8tres de la pages tels que les marges et la taille de l\'\xc3\xa9cran du lecteur cible.\x00D\xc3\xa9finit des familles de polices truetype pour les polices serif, sans-serif et monospace. Ces polices seront inclues dans le fichier LRF. Attention : inclure des polices dans le fichier ralentit les changements de pages. Chaque d\xc3\xa9finition de famille est de la forme : "chemin du r\xc3\xa9pertoir, famille" Par exemple : --serif-family "%s, Times New Roman"\x00Starte Download von [%d Thread(s)]...\x00Statut\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Ta&gs :\x00Tabelle enth\xc3\xa4lt Zelle, die zu gro\xc3\x9f ist\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\x00Die ISBN des Buches, f\xc3\xbcr das Sie Metadaten abrufen m\xc3\xb6chten.\x00Der Autor des gesuchten Buches.\x00La cat\xc3\xa9gorie \xc3\xa0 laquelle le livre appartient. Exemple : Histoire\x00Zeichenkodierung f\xc3\xbcr Webseiten, die zu laden versucht werden. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00H\xc3\xb6chstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus <a href> Tags zu. Voreinstellung ist %default\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\x00Der Herausgeber des gesuchten Buches.\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.\x00Der Titel des gesuchten Buches.\x00Une erreur temporaire s\'est d\xc3\xa9clench\xc3\xa9e pendant la communication avec le lecteur \xc3\xa9lectronique. Veuillez d\xc3\xa9connecter et reconnecter le lecteur \xc3\xa9lectronique et red\xc3\xa9marrer.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: %default s\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...\x00Konnte Bild %s nicht verarbeiten. Fehler: %s\x00Konnte verschachteltes PNG %s nicht verarbeiten\x00Enl\xc3\xa8ve le mot-clef du livre en cours\x00Indisponible\x00Inconnu\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Benutzung:\x00Benutzung: %prog [options] dateiname.epub\n \n \n%prog konvertiert dateiname.epub in dateiname.lrf\x00Benutzung: %prog [options] dateiname.html\n\n\n%prog konvertiert dateiname.html in dateiname.lrf. \n%prog folgt allen Hyperlinks in dateiname.html, die rekursiv auf \nlokale Dateien verweisen. Somit k\xc3\xb6nnen Sie es verwenden,\num einen ganzen Verzeichnisbaum von HTML Dateien zu konvertieren.\x00Benutzung: %prog [options] dateiname.lit\n\n\n%prog konvertiert dateiname.lit in dateiname.lrf\x00Benutzung: %prog [options] dateiname.mobi|prc\n\n\n%prog konvertiert dateiname.mobi in dateiname.lrf\x00Benutzung: %s dateiname.lit\x00Benutzung: pdf-meta dateiname.pdf\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.\x00Mit mehr W\xc3\xb6rtern fortfahren\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Visualiser\x00Spezielles Format ansehen\x00En attente\x00En cours\x00Vorverarbeitetes HTML gespeichert unter\x00Vous n\'avez pas les permissions n\xc3\xa9cessaires pour lire ce fichier:\x00Sichern Sie die Website %s zuerst als HTML Datei und benutzen Sie dann html2lrf mit der gespeicherten HTML Datei.\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.\x00any2lrf [options] dateiname\n\nKonvertiert verschiedene eBook Formate in LRF Dateien. Unterst\xc3\xbctzte Formate:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC und PDF. any2lrf verarbeitet auch RAR oder\nZIP Archive, indem es nach einem eBook im Archiv sucht.\n\x00beinhaltet\x00libprs500\x00dateiname.epub\x00', 'ca': '\xde\x12\x04\x95\x00\x00\x00\x00\xee\x01\x00\x00\x1c\x00\x00\x00\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x1e\x00\x00"\x00\x00\x00\xfd\x1e\x00\x00\x1d\x00\x00\x00 \x1f\x00\x00\x16\x00\x00\x00>\x1f\x00\x00\x0e\x00\x00\x00U\x1f\x00\x00\x10\x00\x00\x00d\x1f\x00\x00a\x00\x00\x00u\x1f\x00\x00+\x01\x00\x00\xd7\x1f\x00\x00!\x00\x00\x00\x03!\x00\x00\x05\x00\x00\x00%!\x00\x00\x06\x00\x00\x00+!\x00\x00\x17\x00\x00\x002!\x00\x00\x0b\x00\x00\x00J!\x00\x00\x04\x00\x00\x00V!\x00\x00\x03\x00\x00\x00[!\x00\x00\x08\x00\x00\x00_!\x00\x00\x06\x00\x00\x00h!\x00\x00\xfd\x01\x00\x00o!\x00\x005\x00\x00\x00m#\x00\x00>\x00\x00\x00\xa3#\x00\x00E\x00\x00\x00\xe2#\x00\x00D\x00\x00\x00($\x00\x00D\x00\x00\x00m$\x00\x00D\x00\x00\x00\xb2$\x00\x00\x1c\x00\x00\x00\xf7$\x00\x00G\x00\x00\x00\x14%\x00\x00\x1c\x00\x00\x00\\%\x00\x00\x0e\x00\x00\x00y%\x00\x00\x0c\x00\x00\x00\x88%\x00\x00\t\x00\x00\x00\x95%\x00\x00\t\x00\x00\x00\x9f%\x00\x00\x0c\x00\x00\x00\xa9%\x00\x00\x0f\x00\x00\x00\xb6%\x00\x00\x11\x00\x00\x00\xc6%\x00\x00\x1a\x00\x00\x00\xd8%\x00\x00\x0c\x00\x00\x00\xf3%\x00\x00\x1d\x00\x00\x00\x00&\x00\x00\x0f\x00\x00\x00\x1e&\x00\x00\r\x00\x00\x00.&\x00\x00)\x00\x00\x00<&\x00\x00"\x00\x00\x00f&\x00\x00\x18\x00\x00\x00\x89&\x00\x00\x0b\x00\x00\x00\xa2&\x00\x00\x10\x00\x00\x00\xae&\x00\x00\x17\x00\x00\x00\xbf&\x00\x00\n\x00\x00\x00\xd7&\x00\x00\x0c\x00\x00\x00\xe2&\x00\x00\x1e\x00\x00\x00\xef&\x00\x00\t\x00\x00\x00\x0e\'\x00\x00\x0c\x00\x00\x00\x18\'\x00\x00\x08\x00\x00\x00%\'\x00\x00\x14\x00\x00\x00.\'\x00\x00\x0e\x00\x00\x00C\'\x00\x00\r\x00\x00\x00R\'\x00\x00\x0e\x00\x00\x00`\'\x00\x00\x08\x00\x00\x00o\'\x00\x00\x08\x00\x00\x00x\'\x00\x00\x07\x00\x00\x00\x81\'\x00\x00\x0c\x00\x00\x00\x89\'\x00\x00\x0e\x00\x00\x00\x96\'\x00\x00\x12\x00\x00\x00\xa5\'\x00\x00\x05\x00\x00\x00\xb8\'\x00\x00\x08\x00\x00\x00\xbe\'\x00\x00\x0c\x00\x00\x00\xc7\'\x00\x00\n\x00\x00\x00\xd4\'\x00\x00\x0e\x00\x00\x00\xdf\'\x00\x00\x03\x00\x00\x00\xee\'\x00\x001\x00\x00\x00\xf2\'\x00\x00"\x00\x00\x00$(\x00\x00=\x00\x00\x00G(\x00\x00\x18\x00\x00\x00\x85(\x00\x00+\x00\x00\x00\x9e(\x00\x00\x00\x02\x00\x00\xca(\x00\x00\xa3\x01\x00\x00\xcb*\x00\x00\x82\x02\x00\x00o,\x00\x00>\x00\x00\x00\xf2.\x00\x00S\x00\x00\x001/\x00\x005\x00\x00\x00\x85/\x00\x00p\x00\x00\x00\xbb/\x00\x00a\x00\x00\x00,0\x00\x00G\x00\x00\x00\x8e0\x00\x00(\x00\x00\x00\xd60\x00\x00\xa7\x00\x00\x00\xff0\x00\x00W\x00\x00\x00\xa71\x00\x00\x96\x00\x00\x00\xff1\x00\x00=\x01\x00\x00\x962\x00\x002\x00\x00\x00\xd43\x00\x00T\x00\x00\x00\x074\x00\x00\x01\x00\x00\x00\\4\x00\x00C\x00\x00\x00^4\x00\x00X\x00\x00\x00\xa24\x00\x00\r\x00\x00\x00\xfb4\x00\x00\x0f\x00\x00\x00\t5\x00\x00\x0b\x00\x00\x00\x195\x00\x00\x0b\x00\x00\x00%5\x00\x00\x18\x00\x00\x0015\x00\x007\x00\x00\x00J5\x00\x004\x00\x00\x00\x825\x00\x00.\x00\x00\x00\xb75\x00\x00\t\x00\x00\x00\xe65\x00\x00!\x00\x00\x00\xf05\x00\x00b\x00\x00\x00\x126\x00\x00o\x00\x00\x00u6\x00\x00\x16\x00\x00\x00\xe56\x00\x00\x12\x00\x00\x00\xfc6\x00\x006\x00\x00\x00\x0f7\x00\x00\x12\x00\x00\x00F7\x00\x00m\x00\x00\x00Y7\x00\x00\x08\x00\x00\x00\xc77\x00\x00\x0f\x00\x00\x00\xd07\x00\x00\x0f\x00\x00\x00\xe07\x00\x00\x0e\x00\x00\x00\xf07\x00\x00\x05\x00\x00\x00\xff7\x00\x00F\x00\x00\x00\x058\x00\x00\x03\x00\x00\x00L8\x00\x005\x01\x00\x00P8\x00\x00\x19\x00\x00\x00\x869\x00\x00\x1b\x00\x00\x00\xa09\x00\x00\x16\x00\x00\x00\xbc9\x00\x00\x06\x00\x00\x00\xd39\x00\x00\x0e\x00\x00\x00\xda9\x00\x00\r\x00\x00\x00\xe99\x00\x00\t\x00\x00\x00\xf79\x00\x00\x08\x00\x00\x00\x01:\x00\x00\x11\x00\x00\x00\n:\x00\x00\x16\x00\x00\x00\x1c:\x00\x00\x04\x00\x00\x003:\x00\x00\r\x00\x00\x008:\x00\x00\x10\x00\x00\x00F:\x00\x00;\x00\x00\x00W:\x00\x00\x05\x00\x00\x00\x93:\x00\x00!\x00\x00\x00\x99:\x00\x00\x10\x00\x00\x00\xbb:\x00\x00\x1b\x00\x00\x00\xcc:\x00\x00\x05\x00\x00\x00\xe8:\x00\x00(\x00\x00\x00\xee:\x00\x00\n\x00\x00\x00\x17;\x00\x00.\x00\x00\x00";\x00\x005\x00\x00\x00Q;\x00\x00$\x00\x00\x00\x87;\x00\x00\x0c\x00\x00\x00\xac;\x00\x00\x1a\x00\x00\x00\xb9;\x00\x00\x19\x00\x00\x00\xd4;\x00\x00\x10\x00\x00\x00\xee;\x00\x00.\x00\x00\x00\xff;\x00\x00\x0e\x00\x00\x00.<\x00\x00\x0e\x00\x00\x00=<\x00\x007\x00\x00\x00L<\x00\x00\x14\x00\x00\x00\x84<\x00\x00\x12\x00\x00\x00\x99<\x00\x00#\x00\x00\x00\xac<\x00\x00\x0f\x00\x00\x00\xd0<\x00\x00Z\x00\x00\x00\xe0<\x00\x00\x19\x00\x00\x00;=\x00\x00\x0b\x00\x00\x00U=\x00\x00\x14\x00\x00\x00a=\x00\x00\x13\x00\x00\x00v=\x00\x00\x0b\x00\x00\x00\x8a=\x00\x00\x11\x00\x00\x00\x96=\x00\x00\x08\x00\x00\x00\xa8=\x00\x00\x14\x00\x00\x00\xb1=\x00\x00\x0f\x00\x00\x00\xc6=\x00\x00R\x00\x00\x00\xd6=\x00\x00!\x00\x00\x00)>\x00\x00\x1d\x00\x00\x00K>\x00\x00H\x00\x00\x00i>\x00\x00\x11\x00\x00\x00\xb2>\x00\x00\r\x00\x00\x00\xc4>\x00\x00%\x00\x00\x00\xd2>\x00\x00\x19\x00\x00\x00\xf8>\x00\x00!\x00\x00\x00\x12?\x00\x007\x00\x00\x004?\x00\x00\x08\x00\x00\x00l?\x00\x00+\x00\x00\x00u?\x00\x00\r\x00\x00\x00\xa1?\x00\x00\r\x00\x00\x00\xaf?\x00\x00\t\x00\x00\x00\xbd?\x00\x00\x10\x00\x00\x00\xc7?\x00\x00\x11\x00\x00\x00\xd8?\x00\x00\x0f\x00\x00\x00\xea?\x00\x00)\x00\x00\x00\xfa?\x00\x00\x14\x00\x00\x00$@\x00\x00\x0e\x00\x00\x009@\x00\x00\x0e\x00\x00\x00H@\x00\x00\x1c\x00\x00\x00W@\x00\x00;\x00\x00\x00t@\x00\x00\x15\x00\x00\x00\xb0@\x00\x00R\x00\x00\x00\xc6@\x00\x00\x17\x00\x00\x00\x19A\x00\x00\x18\x00\x00\x001A\x00\x00\x1e\x00\x00\x00JA\x00\x00\x1e\x00\x00\x00iA\x00\x00\x0e\x00\x00\x00\x88A\x00\x00\x0b\x00\x00\x00\x97A\x00\x00\x0f\x00\x00\x00\xa3A\x00\x00\x13\x00\x00\x00\xb3A\x00\x00\x04\x00\x00\x00\xc7A\x00\x00\x19\x00\x00\x00\xccA\x00\x00\x03\x00\x00\x00\xe6A\x00\x00h\x00\x00\x00\xeaA\x00\x00\x0e\x00\x00\x00SB\x00\x00\x19\x00\x00\x00bB\x00\x00 \x00\x00\x00|B\x00\x00\x1b\x00\x00\x00\x9dB\x00\x00\x1a\x00\x00\x00\xb9B\x00\x00&\x00\x00\x00\xd4B\x00\x00\x11\x00\x00\x00\xfbB\x00\x00\x19\x00\x00\x00\rC\x00\x00\x11\x00\x00\x00\'C\x00\x00\x01\x00\x00\x009C\x00\x00\x05\x00\x00\x00;C\x00\x00\x15\x00\x00\x00AC\x00\x00\x15\x00\x00\x00WC\x00\x00\x15\x00\x00\x00mC\x00\x00\x15\x00\x00\x00\x83C\x00\x00\x1a\x00\x00\x00\x99C\x00\x00\x0e\x00\x00\x00\xb4C\x00\x00\x1f\x00\x00\x00\xc3C\x00\x00C\x00\x00\x00\xe3C\x00\x00\x05\x00\x00\x00\'D\x00\x00\x1f\x00\x00\x00-D\x00\x00\x12\x00\x00\x00MD\x00\x00\x17\x00\x00\x00`D\x00\x00\x1f\x00\x00\x00xD\x00\x00\'\x00\x00\x00\x98D\x00\x003\x00\x00\x00\xc0D\x00\x00*\x00\x00\x00\xf4D\x00\x00\x1a\x00\x00\x00\x1fE\x00\x00\x1a\x00\x00\x00:E\x00\x00\n\x00\x00\x00UE\x00\x00\x14\x00\x00\x00`E\x00\x00\x16\x00\x00\x00uE\x00\x00\x16\x00\x00\x00\x8cE\x00\x00\x0f\x00\x00\x00\xa3E\x00\x00\x05\x00\x00\x00\xb3E\x00\x00\x1d\x00\x00\x00\xb9E\x00\x00\x0e\x00\x00\x00\xd7E\x00\x00\x1a\x00\x00\x00\xe6E\x00\x00\n\x00\x00\x00\x01F\x00\x00\x10\x00\x00\x00\x0cF\x00\x00\r\x00\x00\x00\x1dF\x00\x00\x11\x00\x00\x00+F\x00\x00\x1f\x00\x00\x00=F\x00\x00\x13\x00\x00\x00]F\x00\x00\x1b\x00\x00\x00qF\x00\x00\x05\x00\x00\x00\x8dF\x00\x00\x0b\x00\x00\x00\x93F\x00\x008\x00\x00\x00\x9fF\x00\x00\x08\x00\x00\x00\xd8F\x00\x00\x8a\x00\x00\x00\xe1F\x00\x00\x1d\x01\x00\x00lG\x00\x00J\x00\x00\x00\x8aH\x00\x00#\x00\x00\x00\xd5H\x00\x00\x04\x00\x00\x00\xf9H\x00\x00\x06\x00\x00\x00\xfeH\x00\x00\x07\x00\x00\x00\x05I\x00\x00\x07\x00\x00\x00\rI\x00\x00\'\x00\x00\x00\x15I\x00\x00\x1b\x00\x00\x00=I\x00\x00\x19\x00\x00\x00YI\x00\x00\x06\x00\x00\x00sI\x00\x00\x0c\x00\x00\x00zI\x00\x00\t\x00\x00\x00\x87I\x00\x00\x06\x00\x00\x00\x91I\x00\x00\xdc\x01\x00\x00\x98I\x00\x00n\x00\x00\x00uK\x00\x00a\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00FL\x00\x00\x0e\x00\x00\x00UL\x00\x00\xa8\x00\x00\x00dL\x00\x00&\x00\x00\x00\rM\x00\x00\x10\x00\x00\x004M\x00\x00\x19\x00\x00\x00EM\x00\x00\x1a\x00\x00\x00_M\x00\x00.\x00\x00\x00zM\x00\x00\r\x00\x00\x00\xa9M\x00\x00\x1a\x00\x00\x00\xb7M\x00\x00\x1e\x00\x00\x00\xd2M\x00\x00\x03\x00\x00\x00\xf1M\x00\x00\x12\x00\x00\x00\xf5M\x00\x00\x05\x00\x00\x00\x08N\x00\x00\n\x00\x00\x00\x0eN\x00\x00\x0f\x00\x00\x00\x19N\x00\x00,\x00\x00\x00)N\x00\x00\x07\x00\x00\x00VN\x00\x00-\x00\x00\x00^N\x00\x00\x0b\x00\x00\x00\x8cN\x00\x00$\x00\x00\x00\x98N\x00\x00$\x00\x00\x00\xbdN\x00\x00\x07\x00\x00\x00\xe2N\x00\x000\x00\x00\x00\xeaN\x00\x00S\x00\x00\x00\x1bO\x00\x00\x10\x00\x00\x00oO\x00\x00\x08\x00\x00\x00\x80O\x00\x00y\x00\x00\x00\x89O\x00\x00\x10\x00\x00\x00\x03P\x00\x00N\x00\x00\x00\x14P\x00\x00`\x00\x00\x00cP\x00\x00\x04\x00\x00\x00\xc4P\x00\x00\x06\x00\x00\x00\xc9P\x00\x00"\x00\x00\x00\xd0P\x00\x00\t\x00\x00\x00\xf3P\x00\x00\n\x00\x00\x00\xfdP\x00\x00\x14\x00\x00\x00\x08Q\x00\x00\x10\x00\x00\x00\x1dQ\x00\x00\x11\x00\x00\x00.Q\x00\x00\x1d\x00\x00\x00@Q\x00\x00\x16\x00\x00\x00^Q\x00\x00\x08\x00\x00\x00uQ\x00\x00\x10\x00\x00\x00~Q\x00\x00\x12\x00\x00\x00\x8fQ\x00\x00\x04\x00\x00\x00\xa2Q\x00\x00^\x00\x00\x00\xa7Q\x00\x00\x14\x00\x00\x00\x06R\x00\x00\xdc\x00\x00\x00\x1bR\x00\x00\x0f\x00\x00\x00\xf8R\x00\x00\n\x00\x00\x00\x08S\x00\x00\x07\x00\x00\x00\x13S\x00\x00-\x00\x00\x00\x1bS\x00\x00+\x00\x00\x00IS\x00\x00F\x00\x00\x00uS\x00\x00\x0f\x00\x00\x00\xbcS\x00\x000\x00\x00\x00\xccS\x00\x008\x00\x00\x00\xfdS\x00\x00s\x00\x00\x006T\x00\x00\x0f\x00\x00\x00\xaaT\x00\x00\n\x00\x00\x00\xbaT\x00\x00\x10\x00\x00\x00\xc5T\x00\x00\x0e\x00\x00\x00\xd6T\x00\x00:\x00\x00\x00\xe5T\x00\x00\x0f\x00\x00\x00 U\x00\x00\x04\x00\x00\x000U\x00\x00;\x00\x00\x005U\x00\x00G\x00\x00\x00qU\x00\x001\x00\x00\x00\xb9U\x00\x00Y\x00\x00\x00\xebU\x00\x00\x13\x00\x00\x00EV\x00\x004\x00\x00\x00YV\x00\x00\x80\x00\x00\x00\x8eV\x00\x00H\x00\x00\x00\x0fW\x00\x00\r\x00\x00\x00XW\x00\x00(\x00\x00\x00fW\x00\x00\r\x00\x00\x00\x8fW\x00\x00\xbc\x00\x00\x00\x9dW\x00\x00\x08\x00\x00\x00ZX\x00\x00\t\x00\x00\x00cX\x00\x00\x06\x00\x00\x00mX\x00\x00\x1e\x00\x00\x00tX\x00\x00\x16\x00\x00\x00\x93X\x00\x00\x13\x00\x00\x00\xaaX\x00\x00\x0e\x00\x00\x00\xbeX\x00\x00\x1b\x00\x00\x00\xcdX\x00\x00\x13\x00\x00\x00\xe9X\x00\x00+\x00\x00\x00\xfdX\x00\x00*\x00\x00\x00)Y\x00\x000\x00\x00\x00TY\x00\x00)\x00\x00\x00\x85Y\x00\x00<\x00\x00\x00\xafY\x00\x00\x0c\x00\x00\x00\xecY\x00\x00\x17\x00\x00\x00\xf9Y\x00\x00<\x00\x00\x00\x11Z\x00\x000\x00\x00\x00NZ\x00\x00\x84\x00\x00\x00\x7fZ\x00\x00X\x00\x00\x00\x04[\x00\x00\x0f\x00\x00\x00][\x00\x00\x12\x00\x00\x00m[\x00\x00-\x00\x00\x00\x80[\x00\x00\x0c\x00\x00\x00\xae[\x00\x00\x0c\x00\x00\x00\xbb[\x00\x00\x0c\x00\x00\x00\xc8[\x00\x00"\x00\x00\x00\xd5[\x00\x009\x00\x00\x00\xf8[\x00\x00\x0f\x00\x00\x002\\\x00\x00V\x00\x00\x00B\\\x00\x00r\x00\x00\x00\x99\\\x00\x00G\x00\x00\x00\x0c]\x00\x00\'\x00\x00\x00T]\x00\x00\x0e\x00\x00\x00|]\x00\x00\x13\x00\x00\x00\x8b]\x00\x00\x14\x00\x00\x00\x9f]\x00\x00#\x00\x00\x00\xb4]\x00\x00\x06\x00\x00\x00\xd8]\x00\x00\r\x00\x00\x00\xdf]\x00\x00\r\x00\x00\x00\xed]\x00\x00\x07\x00\x00\x00\xfb]\x00\x00\x1e\x00\x00\x00\x03^\x00\x00\x0b\x00\x00\x00"^\x00\x00\x17\x00\x00\x00.^\x00\x00\x1b\x00\x00\x00F^\x00\x00\x1a\x00\x00\x00b^\x00\x00\x0e\x00\x00\x00}^\x00\x00^\x00\x00\x00\x8c^\x00\x00\x0f\x00\x00\x00\xeb^\x00\x00\x12\x00\x00\x00\xfb^\x00\x00\x10\x00\x00\x00\x0e_\x00\x00\x0f\x00\x00\x00\x1f_\x00\x00\x10\x00\x00\x00/_\x00\x00g\x00\x00\x00@_\x00\x00c\x00\x00\x00\xa8_\x00\x007\x00\x00\x00\x0c`\x00\x00!\x00\x00\x00D`\x00\x006\x00\x00\x00f`\x00\x00d\x00\x00\x00\x9d`\x00\x00\t\x00\x00\x00\x02a\x00\x00\x17\x00\x00\x00\x0ca\x00\x00\x16\x00\x00\x00$a\x00\x00\x11\x00\x00\x00;a\x00\x00\x04\x01\x00\x00Ma\x00\x00z\x00\x00\x00Rb\x00\x00\x85\x00\x00\x00\xcdb\x00\x00\xb6\x00\x00\x00Sc\x00\x00\r\x01\x00\x00\nd\x00\x00P\x00\x00\x00\x18e\x00\x00+\x01\x00\x00ie\x00\x00#\x00\x00\x00\x95f\x00\x00\x06\x00\x00\x00\xb9f\x00\x00\x17\x00\x00\x00\xc0f\x00\x00\x14\x00\x00\x00\xd8f\x00\x00\x07\x00\x00\x00\xedf\x00\x00 \x00\x00\x00\xf5f\x00\x00\x03\x00\x00\x00\x16g\x00\x00\n\x00\x00\x00\x1ag\x00\x00\x13\x00\x00\x00%g\x00\x00\x04\x00\x00\x009g\x00\x00\x85\x00\x00\x00>g\x00\x00\x04\x00\x00\x00\xc4g\x00\x00\t\x00\x00\x00\xc9g\x00\x00.\x00\x00\x00\xd3g\x00\x00%\x00\x00\x00\x02h\x00\x000\x00\x00\x00(h\x00\x00q\x00\x00\x00Yh\x00\x00X\x00\x00\x00\xcbh\x00\x00\x1b\x00\x00\x00$i\x00\x00\x1a\x00\x00\x00@i\x00\x00k\x00\x00\x00[i\x00\x00\x9d\x00\x00\x00\xc7i\x00\x00&\x00\x00\x00ej\x00\x00\x1e\x00\x00\x00\x8cj\x00\x00(\x00\x00\x00\xabj\x00\x00v\x00\x00\x00\xd4j\x00\x00\'\x00\x00\x00Kk\x00\x00"\x00\x00\x00sk\x00\x00B\x00\x00\x00\x96k\x00\x00^\x00\x00\x00\xd9k\x00\x00$\x00\x00\x008l\x00\x00h\x00\x00\x00]l\x00\x00.\x00\x00\x00\xc6l\x00\x00N\x00\x00\x00\xf5l\x00\x00\t\x00\x00\x00Dm\x00\x00\x05\x00\x00\x00Nm\x00\x00\x15\x00\x00\x00Tm\x00\x00\x06\x00\x00\x00jm\x00\x00+\x00\x00\x00qm\x00\x00\x1b\x00\x00\x00\x9dm\x00\x00%\x00\x00\x00\xb9m\x00\x00#\x00\x00\x00\xdfm\x00\x00&\x00\x00\x00\x03n\x00\x00\x0b\x00\x00\x00*n\x00\x00\x07\x00\x00\x006n\x00\x00\x13\x00\x00\x00>n\x00\x00\x0c\x00\x00\x00Rn\x00\x00\x10\x00\x00\x00_n\x00\x00\x10\x00\x00\x00pn\x00\x00\x06\x00\x00\x00\x81n\x00\x00]\x00\x00\x00\x88n\x00\x00\xdb\x00\x00\x00\xe6n\x00\x00K\x00\x00\x00\xc2o\x00\x00Q\x00\x00\x00\x0ep\x00\x00\x12\x00\x00\x00`p\x00\x00\x18\x00\x00\x00sp\x00\x00%\x00\x00\x00\x8cp\x00\x00\x1b\x00\x00\x00\xb2p\x00\x00\xb4\x00\x00\x00\xcep\x00\x002\x00\x00\x00\x83q\x00\x00\x14\x00\x00\x00\xb6q\x00\x00_\x00\x00\x00\xcbq\x00\x00:\x00\x00\x00+r\x00\x00\x12\x00\x00\x00fr\x00\x00*\x00\x00\x00yr\x00\x00\x04\x00\x00\x00\xa4r\x00\x00\x14\x00\x00\x00\xa9r\x00\x00\x07\x00\x00\x00\xber\x00\x00\x07\x00\x00\x00\xc6r\x00\x00\x1d\x00\x00\x00\xcer\x00\x00-\x00\x00\x00\xecr\x00\x00R\x00\x00\x00\x1as\x00\x00d\x00\x00\x00ms\x00\x00#\x00\x00\x00\xd2s\x00\x002\x00\x00\x00\xf6s\x00\x003\x00\x00\x00)t\x00\x00\xdf\x00\x00\x00]t\x00\x00\x08\x00\x00\x00=u\x00\x00\t\x00\x00\x00Fu\x00\x00\x0b\x00\x00\x00Pu\x00\x00\x1e\x01\x00\x00\\u\x00\x00)\x00\x00\x00{v\x00\x00\x1d\x00\x00\x00\xa5v\x00\x00\x17\x00\x00\x00\xc3v\x00\x00 \x00\x00\x00\xdbv\x00\x00\x13\x00\x00\x00\xfcv\x00\x00e\x00\x00\x00\x10w\x00\x00\\\x01\x00\x00vw\x00\x00\x1d\x00\x00\x00\xd3x\x00\x00\x05\x00\x00\x00\xf1x\x00\x00\x04\x00\x00\x00\xf7x\x00\x00\x1a\x00\x00\x00\xfcx\x00\x00\x10\x00\x00\x00\x17y\x00\x00\x06\x00\x00\x00(y\x00\x00\n\x00\x00\x00/y\x00\x00\t\x00\x00\x00:y\x00\x00\t\x00\x00\x00Dy\x00\x00+\x02\x00\x00Ny\x00\x00)\x00\x00\x00z{\x00\x00F\x00\x00\x00\xa4{\x00\x00T\x00\x00\x00\xeb{\x00\x00P\x00\x00\x00@|\x00\x00P\x00\x00\x00\x91|\x00\x00P\x00\x00\x00\xe2|\x00\x00\x1e\x00\x00\x003}\x00\x00U\x00\x00\x00R}\x00\x00"\x00\x00\x00\xa8}\x00\x00\x12\x00\x00\x00\xcb}\x00\x00\x0f\x00\x00\x00\xde}\x00\x00\x0e\x00\x00\x00\xee}\x00\x00\x12\x00\x00\x00\xfd}\x00\x00\n\x00\x00\x00\x10~\x00\x00\x10\x00\x00\x00\x1b~\x00\x00\x15\x00\x00\x00,~\x00\x00$\x00\x00\x00B~\x00\x00\x0c\x00\x00\x00g~\x00\x00-\x00\x00\x00t~\x00\x00\x19\x00\x00\x00\xa2~\x00\x00\x10\x00\x00\x00\xbc~\x00\x00,\x00\x00\x00\xcd~\x00\x00&\x00\x00\x00\xfa~\x00\x00\x1e\x00\x00\x00!\x7f\x00\x00\x0e\x00\x00\x00@\x7f\x00\x00\x13\x00\x00\x00O\x7f\x00\x00.\x00\x00\x00c\x7f\x00\x00\r\x00\x00\x00\x92\x7f\x00\x00\x11\x00\x00\x00\xa0\x7f\x00\x00(\x00\x00\x00\xb2\x7f\x00\x00\x08\x00\x00\x00\xdb\x7f\x00\x00\x0b\x00\x00\x00\xe4\x7f\x00\x00\x0c\x00\x00\x00\xf0\x7f\x00\x00\x14\x00\x00\x00\xfd\x7f\x00\x00\x11\x00\x00\x00\x12\x80\x00\x00\x15\x00\x00\x00$\x80\x00\x00\x0c\x00\x00\x00:\x80\x00\x00\t\x00\x00\x00G\x80\x00\x00\t\x00\x00\x00Q\x80\x00\x00\x07\x00\x00\x00[\x80\x00\x00\x13\x00\x00\x00c\x80\x00\x00\x12\x00\x00\x00w\x80\x00\x00\x1e\x00\x00\x00\x8a\x80\x00\x00\x05\x00\x00\x00\xa9\x80\x00\x00\n\x00\x00\x00\xaf\x80\x00\x00\x10\x00\x00\x00\xba\x80\x00\x00\x0e\x00\x00\x00\xcb\x80\x00\x00\x19\x00\x00\x00\xda\x80\x00\x00\x03\x00\x00\x00\xf4\x80\x00\x00/\x00\x00\x00\xf8\x80\x00\x00)\x00\x00\x00(\x81\x00\x00>\x00\x00\x00R\x81\x00\x00\x1e\x00\x00\x00\x91\x81\x00\x00-\x00\x00\x00\xb0\x81\x00\x00M\x02\x00\x00\xde\x81\x00\x00\xa3\x01\x00\x00,\x84\x00\x00\x8c\x02\x00\x00\xd0\x85\x00\x00>\x00\x00\x00]\x88\x00\x00L\x00\x00\x00\x9c\x88\x00\x004\x00\x00\x00\xe9\x88\x00\x00\x90\x00\x00\x00\x1e\x89\x00\x00\x86\x00\x00\x00\xaf\x89\x00\x00D\x00\x00\x006\x8a\x00\x00/\x00\x00\x00{\x8a\x00\x00\xcd\x00\x00\x00\xab\x8a\x00\x00\x7f\x00\x00\x00y\x8b\x00\x00\xcd\x00\x00\x00\xf9\x8b\x00\x00\xa4\x01\x00\x00\xc7\x8c\x00\x00&\x00\x00\x00l\x8e\x00\x00T\x00\x00\x00\x93\x8e\x00\x00\x01\x00\x00\x00\xe8\x8e\x00\x00M\x00\x00\x00\xea\x8e\x00\x00_\x00\x00\x008\x8f\x00\x00\x16\x00\x00\x00\x98\x8f\x00\x00\x16\x00\x00\x00\xaf\x8f\x00\x00\x0f\x00\x00\x00\xc6\x8f\x00\x00\x18\x00\x00\x00\xd6\x8f\x00\x00/\x00\x00\x00\xef\x8f\x00\x007\x00\x00\x00\x1f\x90\x00\x00I\x00\x00\x00W\x90\x00\x00;\x00\x00\x00\xa1\x90\x00\x00\x0f\x00\x00\x00\xdd\x90\x00\x003\x00\x00\x00\xed\x90\x00\x00}\x00\x00\x00!\x91\x00\x00\x98\x00\x00\x00\x9f\x91\x00\x00$\x00\x00\x008\x92\x00\x00\x1b\x00\x00\x00]\x92\x00\x00Q\x00\x00\x00y\x92\x00\x00"\x00\x00\x00\xcb\x92\x00\x00m\x00\x00\x00\xee\x92\x00\x00\t\x00\x00\x00\\\x93\x00\x00\x10\x00\x00\x00f\x93\x00\x00\x10\x00\x00\x00w\x93\x00\x00\x10\x00\x00\x00\x88\x93\x00\x00\x05\x00\x00\x00\x99\x93\x00\x00^\x00\x00\x00\x9f\x93\x00\x00\t\x00\x00\x00\xfe\x93\x00\x00_\x01\x00\x00\x08\x94\x00\x00#\x00\x00\x00h\x95\x00\x00!\x00\x00\x00\x8c\x95\x00\x00\x13\x00\x00\x00\xae\x95\x00\x00\x05\x00\x00\x00\xc2\x95\x00\x00\x0f\x00\x00\x00\xc8\x95\x00\x00\x11\x00\x00\x00\xd8\x95\x00\x00\x08\x00\x00\x00\xea\x95\x00\x00\x08\x00\x00\x00\xf3\x95\x00\x00\x13\x00\x00\x00\xfc\x95\x00\x00\x1c\x00\x00\x00\x10\x96\x00\x00\t\x00\x00\x00-\x96\x00\x00\x15\x00\x00\x007\x96\x00\x00\x1a\x00\x00\x00M\x96\x00\x00O\x00\x00\x00h\x96\x00\x00\x07\x00\x00\x00\xb8\x96\x00\x003\x00\x00\x00\xc0\x96\x00\x00\x16\x00\x00\x00\xf4\x96\x00\x003\x00\x00\x00\x0b\x97\x00\x00\x07\x00\x00\x00?\x97\x00\x00*\x00\x00\x00G\x97\x00\x00\x07\x00\x00\x00r\x97\x00\x007\x00\x00\x00z\x97\x00\x00?\x00\x00\x00\xb2\x97\x00\x00+\x00\x00\x00\xf2\x97\x00\x00\x0f\x00\x00\x00\x1e\x98\x00\x00%\x00\x00\x00.\x98\x00\x00\'\x00\x00\x00T\x98\x00\x00\x14\x00\x00\x00|\x98\x00\x00/\x00\x00\x00\x91\x98\x00\x00\x10\x00\x00\x00\xc1\x98\x00\x00\x13\x00\x00\x00\xd2\x98\x00\x009\x00\x00\x00\xe6\x98\x00\x00\x1c\x00\x00\x00 \x99\x00\x00\x1c\x00\x00\x00=\x99\x00\x005\x00\x00\x00Z\x99\x00\x00\x1d\x00\x00\x00\x90\x99\x00\x00g\x00\x00\x00\xae\x99\x00\x00-\x00\x00\x00\x16\x9a\x00\x00\x10\x00\x00\x00D\x9a\x00\x00\x1c\x00\x00\x00U\x9a\x00\x00\x14\x00\x00\x00r\x9a\x00\x00\x11\x00\x00\x00\x87\x9a\x00\x00\x1e\x00\x00\x00\x99\x9a\x00\x00\t\x00\x00\x00\xb8\x9a\x00\x00 \x00\x00\x00\xc2\x9a\x00\x00\x10\x00\x00\x00\xe3\x9a\x00\x00F\x00\x00\x00\xf4\x9a\x00\x00\x1d\x00\x00\x00;\x9b\x00\x00\x1d\x00\x00\x00Y\x9b\x00\x00H\x00\x00\x00w\x9b\x00\x00\x18\x00\x00\x00\xc0\x9b\x00\x00\x0c\x00\x00\x00\xd9\x9b\x00\x00#\x00\x00\x00\xe6\x9b\x00\x00\x1b\x00\x00\x00\n\x9c\x00\x00&\x00\x00\x00&\x9c\x00\x00J\x00\x00\x00M\x9c\x00\x00\n\x00\x00\x00\x98\x9c\x00\x00\'\x00\x00\x00\xa3\x9c\x00\x00\x16\x00\x00\x00\xcb\x9c\x00\x00\r\x00\x00\x00\xe2\x9c\x00\x00\t\x00\x00\x00\xf0\x9c\x00\x00\x12\x00\x00\x00\xfa\x9c\x00\x00\x13\x00\x00\x00\r\x9d\x00\x00\x11\x00\x00\x00!\x9d\x00\x00<\x00\x00\x003\x9d\x00\x00\x19\x00\x00\x00p\x9d\x00\x00\x0f\x00\x00\x00\x8a\x9d\x00\x00\x13\x00\x00\x00\x9a\x9d\x00\x00#\x00\x00\x00\xae\x9d\x00\x00W\x00\x00\x00\xd2\x9d\x00\x00\x1c\x00\x00\x00*\x9e\x00\x00e\x00\x00\x00G\x9e\x00\x00\x1d\x00\x00\x00\xad\x9e\x00\x00"\x00\x00\x00\xcb\x9e\x00\x00$\x00\x00\x00\xee\x9e\x00\x00#\x00\x00\x00\x13\x9f\x00\x00\x1e\x00\x00\x007\x9f\x00\x00\n\x00\x00\x00V\x9f\x00\x00\x0f\x00\x00\x00a\x9f\x00\x00\x1f\x00\x00\x00q\x9f\x00\x00\x04\x00\x00\x00\x91\x9f\x00\x00B\x00\x00\x00\x96\x9f\x00\x00\x07\x00\x00\x00\xd9\x9f\x00\x00r\x00\x00\x00\xe1\x9f\x00\x00\x14\x00\x00\x00T\xa0\x00\x00 \x00\x00\x00i\xa0\x00\x00$\x00\x00\x00\x8a\xa0\x00\x00\x1b\x00\x00\x00\xaf\xa0\x00\x00!\x00\x00\x00\xcb\xa0\x00\x002\x00\x00\x00\xed\xa0\x00\x00\x10\x00\x00\x00 \xa1\x00\x00\x18\x00\x00\x001\xa1\x00\x00\x12\x00\x00\x00J\xa1\x00\x00\x01\x00\x00\x00]\xa1\x00\x00\x05\x00\x00\x00_\xa1\x00\x00\x19\x00\x00\x00e\xa1\x00\x00\x17\x00\x00\x00\x7f\xa1\x00\x00\x19\x00\x00\x00\x97\xa1\x00\x00\x18\x00\x00\x00\xb1\xa1\x00\x00\x1e\x00\x00\x00\xca\xa1\x00\x00\x11\x00\x00\x00\xe9\xa1\x00\x00)\x00\x00\x00\xfb\xa1\x00\x00V\x00\x00\x00%\xa2\x00\x00\x06\x00\x00\x00|\xa2\x00\x00*\x00\x00\x00\x83\xa2\x00\x00\x15\x00\x00\x00\xae\xa2\x00\x00"\x00\x00\x00\xc4\xa2\x00\x00"\x00\x00\x00\xe7\xa2\x00\x00,\x00\x00\x00\n\xa3\x00\x00:\x00\x00\x007\xa3\x00\x00/\x00\x00\x00r\xa3\x00\x00)\x00\x00\x00\xa2\xa3\x00\x00&\x00\x00\x00\xcc\xa3\x00\x00\n\x00\x00\x00\xf3\xa3\x00\x00\x17\x00\x00\x00\xfe\xa3\x00\x00\x1a\x00\x00\x00\x16\xa4\x00\x00$\x00\x00\x001\xa4\x00\x00\x11\x00\x00\x00V\xa4\x00\x00\x06\x00\x00\x00h\xa4\x00\x00$\x00\x00\x00o\xa4\x00\x00\x10\x00\x00\x00\x94\xa4\x00\x00!\x00\x00\x00\xa5\xa4\x00\x00\x18\x00\x00\x00\xc7\xa4\x00\x00\x17\x00\x00\x00\xe0\xa4\x00\x00\x0c\x00\x00\x00\xf8\xa4\x00\x00\x10\x00\x00\x00\x05\xa5\x00\x00#\x00\x00\x00\x16\xa5\x00\x00\x17\x00\x00\x00:\xa5\x00\x00\x1d\x00\x00\x00R\xa5\x00\x00\x07\x00\x00\x00p\xa5\x00\x00\x0b\x00\x00\x00x\xa5\x00\x000\x00\x00\x00\x84\xa5\x00\x00\x06\x00\x00\x00\xb5\xa5\x00\x00\xc3\x00\x00\x00\xbc\xa5\x00\x00%\x01\x00\x00\x80\xa6\x00\x00]\x00\x00\x00\xa6\xa7\x00\x00.\x00\x00\x00\x04\xa8\x00\x00\x03\x00\x00\x003\xa8\x00\x00\x06\x00\x00\x007\xa8\x00\x00\x07\x00\x00\x00>\xa8\x00\x00\x08\x00\x00\x00F\xa8\x00\x004\x00\x00\x00O\xa8\x00\x00#\x00\x00\x00\x84\xa8\x00\x00\x1e\x00\x00\x00\xa8\xa8\x00\x00\n\x00\x00\x00\xc7\xa8\x00\x00\x13\x00\x00\x00\xd2\xa8\x00\x00\x11\x00\x00\x00\xe6\xa8\x00\x00\x06\x00\x00\x00\xf8\xa8\x00\x00\xf1\x01\x00\x00\xff\xa8\x00\x00\x8f\x00\x00\x00\xf1\xaa\x00\x00o\x00\x00\x00\x81\xab\x00\x00\x16\x00\x00\x00\xf1\xab\x00\x00\x12\x00\x00\x00\x08\xac\x00\x00\xc7\x00\x00\x00\x1b\xac\x00\x00*\x00\x00\x00\xe3\xac\x00\x00\x14\x00\x00\x00\x0e\xad\x00\x00)\x00\x00\x00#\xad\x00\x00)\x00\x00\x00M\xad\x00\x00@\x00\x00\x00w\xad\x00\x00\x12\x00\x00\x00\xb8\xad\x00\x00\x1f\x00\x00\x00\xcb\xad\x00\x00#\x00\x00\x00\xeb\xad\x00\x00\x07\x00\x00\x00\x0f\xae\x00\x00"\x00\x00\x00\x17\xae\x00\x00\t\x00\x00\x00:\xae\x00\x00\t\x00\x00\x00D\xae\x00\x00\x12\x00\x00\x00N\xae\x00\x007\x00\x00\x00a\xae\x00\x00\n\x00\x00\x00\x99\xae\x00\x007\x00\x00\x00\xa4\xae\x00\x00\t\x00\x00\x00\xdc\xae\x00\x003\x00\x00\x00\xe6\xae\x00\x009\x00\x00\x00\x1a\xaf\x00\x00\x0e\x00\x00\x00T\xaf\x00\x001\x00\x00\x00c\xaf\x00\x00i\x00\x00\x00\x95\xaf\x00\x00\x10\x00\x00\x00\xff\xaf\x00\x00\t\x00\x00\x00\x10\xb0\x00\x00\x84\x00\x00\x00\x1a\xb0\x00\x00\x17\x00\x00\x00\x9f\xb0\x00\x00e\x00\x00\x00\xb7\xb0\x00\x00y\x00\x00\x00\x1d\xb1\x00\x00\x04\x00\x00\x00\x97\xb1\x00\x00\n\x00\x00\x00\x9c\xb1\x00\x006\x00\x00\x00\xa7\xb1\x00\x00\x10\x00\x00\x00\xde\xb1\x00\x00\x16\x00\x00\x00\xef\xb1\x00\x00\x16\x00\x00\x00\x06\xb2\x00\x00\x16\x00\x00\x00\x1d\xb2\x00\x00\x16\x00\x00\x004\xb2\x00\x00(\x00\x00\x00K\xb2\x00\x00\x19\x00\x00\x00t\xb2\x00\x00\x0c\x00\x00\x00\x8e\xb2\x00\x00\x1e\x00\x00\x00\x9b\xb2\x00\x00\x19\x00\x00\x00\xba\xb2\x00\x00\x03\x00\x00\x00\xd4\xb2\x00\x00_\x00\x00\x00\xd8\xb2\x00\x00\x15\x00\x00\x008\xb3\x00\x00\xf6\x00\x00\x00N\xb3\x00\x00\x18\x00\x00\x00E\xb4\x00\x00\x0c\x00\x00\x00^\xb4\x00\x00\x07\x00\x00\x00k\xb4\x00\x00\x1d\x00\x00\x00s\xb4\x00\x00\x1b\x00\x00\x00\x91\xb4\x00\x00H\x00\x00\x00\xad\xb4\x00\x00\x11\x00\x00\x00\xf6\xb4\x00\x00=\x00\x00\x00\x08\xb5\x00\x00D\x00\x00\x00F\xb5\x00\x00\x96\x00\x00\x00\x8b\xb5\x00\x00\x12\x00\x00\x00"\xb6\x00\x00\x1b\x00\x00\x005\xb6\x00\x00\x1e\x00\x00\x00Q\xb6\x00\x00\x12\x00\x00\x00p\xb6\x00\x00J\x00\x00\x00\x83\xb6\x00\x00\x1d\x00\x00\x00\xce\xb6\x00\x00\x05\x00\x00\x00\xec\xb6\x00\x00<\x00\x00\x00\xf2\xb6\x00\x00F\x00\x00\x00/\xb7\x00\x008\x00\x00\x00v\xb7\x00\x00r\x00\x00\x00\xaf\xb7\x00\x00\x12\x00\x00\x00"\xb8\x00\x00H\x00\x00\x005\xb8\x00\x00o\x00\x00\x00~\xb8\x00\x00T\x00\x00\x00\xee\xb8\x00\x00\x10\x00\x00\x00C\xb9\x00\x00;\x00\x00\x00T\xb9\x00\x00\r\x00\x00\x00\x90\xb9\x00\x00\xc0\x00\x00\x00\x9e\xb9\x00\x00\x0b\x00\x00\x00_\xba\x00\x00\t\x00\x00\x00k\xba\x00\x00\n\x00\x00\x00u\xba\x00\x00"\x00\x00\x00\x80\xba\x00\x00!\x00\x00\x00\xa3\xba\x00\x00"\x00\x00\x00\xc5\xba\x00\x00\x13\x00\x00\x00\xe8\xba\x00\x00 \x00\x00\x00\xfc\xba\x00\x00\x14\x00\x00\x00\x1d\xbb\x00\x00-\x00\x00\x002\xbb\x00\x00-\x00\x00\x00`\xbb\x00\x002\x00\x00\x00\x8e\xbb\x00\x00+\x00\x00\x00\xc1\xbb\x00\x008\x00\x00\x00\xed\xbb\x00\x00\x11\x00\x00\x00&\xbc\x00\x00\x1d\x00\x00\x008\xbc\x00\x00I\x00\x00\x00V\xbc\x00\x001\x00\x00\x00\xa0\xbc\x00\x00\x94\x00\x00\x00\xd2\xbc\x00\x00N\x00\x00\x00g\xbd\x00\x00\x10\x00\x00\x00\xb6\xbd\x00\x00 \x00\x00\x00\xc7\xbd\x00\x003\x00\x00\x00\xe8\xbd\x00\x00\x08\x00\x00\x00\x1c\xbe\x00\x00\x0c\x00\x00\x00%\xbe\x00\x00\x0c\x00\x00\x002\xbe\x00\x004\x00\x00\x00?\xbe\x00\x00=\x00\x00\x00t\xbe\x00\x00\r\x00\x00\x00\xb2\xbe\x00\x00c\x00\x00\x00\xc0\xbe\x00\x00\x8d\x00\x00\x00$\xbf\x00\x00D\x00\x00\x00\xb2\xbf\x00\x000\x00\x00\x00\xf7\xbf\x00\x00\x13\x00\x00\x00(\xc0\x00\x00\x1b\x00\x00\x00<\xc0\x00\x00\x1e\x00\x00\x00X\xc0\x00\x00+\x00\x00\x00w\xc0\x00\x00\x07\x00\x00\x00\xa3\xc0\x00\x00\x11\x00\x00\x00\xab\xc0\x00\x00\r\x00\x00\x00\xbd\xc0\x00\x00\x07\x00\x00\x00\xcb\xc0\x00\x005\x00\x00\x00\xd3\xc0\x00\x00(\x00\x00\x00\t\xc1\x00\x00(\x00\x00\x002\xc1\x00\x00\'\x00\x00\x00[\xc1\x00\x00*\x00\x00\x00\x83\xc1\x00\x00\x10\x00\x00\x00\xae\xc1\x00\x00d\x00\x00\x00\xbf\xc1\x00\x00\x10\x00\x00\x00$\xc2\x00\x00\x1a\x00\x00\x005\xc2\x00\x00\x16\x00\x00\x00P\xc2\x00\x00\x12\x00\x00\x00g\xc2\x00\x00\x18\x00\x00\x00z\xc2\x00\x00\x95\x00\x00\x00\x93\xc2\x00\x00k\x00\x00\x00)\xc3\x00\x00;\x00\x00\x00\x95\xc3\x00\x00/\x00\x00\x00\xd1\xc3\x00\x00@\x00\x00\x00\x01\xc4\x00\x00m\x00\x00\x00B\xc4\x00\x00\x0f\x00\x00\x00\xb0\xc4\x00\x00\x1a\x00\x00\x00\xc0\xc4\x00\x00\x1d\x00\x00\x00\xdb\xc4\x00\x00\x1c\x00\x00\x00\xf9\xc4\x00\x00\x1c\x01\x00\x00\x16\xc5\x00\x00}\x00\x00\x003\xc6\x00\x00\x8e\x00\x00\x00\xb1\xc6\x00\x00\xc5\x00\x00\x00@\xc7\x00\x00]\x01\x00\x00\x06\xc8\x00\x00m\x00\x00\x00d\xc9\x00\x00e\x01\x00\x00\xd2\xc9\x00\x00%\x00\x00\x008\xcb\x00\x00\x05\x00\x00\x00^\xcb\x00\x00\x1f\x00\x00\x00d\xcb\x00\x00\x18\x00\x00\x00\x84\xcb\x00\x00\x0b\x00\x00\x00\x9d\xcb\x00\x00(\x00\x00\x00\xa9\xcb\x00\x00\x07\x00\x00\x00\xd2\xcb\x00\x00\x10\x00\x00\x00\xda\xcb\x00\x00\x1b\x00\x00\x00\xeb\xcb\x00\x00\t\x00\x00\x00\x07\xcc\x00\x00\x91\x00\x00\x00\x11\xcc\x00\x00\x04\x00\x00\x00\xa3\xcc\x00\x00\t\x00\x00\x00\xa8\xcc\x00\x00=\x00\x00\x00\xb2\xcc\x00\x00\x1f\x00\x00\x00\xf0\xcc\x00\x00<\x00\x00\x00\x10\xcd\x00\x00~\x00\x00\x00M\xcd\x00\x00l\x00\x00\x00\xcc\xcd\x00\x00\x1a\x00\x00\x009\xce\x00\x00\x1a\x00\x00\x00T\xce\x00\x00z\x00\x00\x00o\xce\x00\x00\x9e\x00\x00\x00\xea\xce\x00\x004\x00\x00\x00\x89\xcf\x00\x00#\x00\x00\x00\xbe\xcf\x00\x00%\x00\x00\x00\xe2\xcf\x00\x00\x91\x00\x00\x00\x08\xd0\x00\x001\x00\x00\x00\x9a\xd0\x00\x00,\x00\x00\x00\xcc\xd0\x00\x00^\x00\x00\x00\xf9\xd0\x00\x00s\x00\x00\x00X\xd1\x00\x00\x1f\x00\x00\x00\xcc\xd1\x00\x00|\x00\x00\x00\xec\xd1\x00\x005\x00\x00\x00i\xd2\x00\x00W\x00\x00\x00\x9f\xd2\x00\x00\x0e\x00\x00\x00\xf7\xd2\x00\x00\x08\x00\x00\x00\x06\xd3\x00\x00\x1f\x00\x00\x00\x0f\xd3\x00\x00\x06\x00\x00\x00/\xd3\x00\x007\x00\x00\x006\xd3\x00\x00!\x00\x00\x00n\xd3\x00\x00,\x00\x00\x00\x90\xd3\x00\x00/\x00\x00\x00\xbd\xd3\x00\x00$\x00\x00\x00\xed\xd3\x00\x00\r\x00\x00\x00\x12\xd4\x00\x00\n\x00\x00\x00 \xd4\x00\x00\x1b\x00\x00\x00+\xd4\x00\x00\x0e\x00\x00\x00G\xd4\x00\x00\x12\x00\x00\x00V\xd4\x00\x00\x12\x00\x00\x00i\xd4\x00\x00\n\x00\x00\x00|\xd4\x00\x00m\x00\x00\x00\x87\xd4\x00\x00\x1d\x01\x00\x00\xf5\xd4\x00\x00[\x00\x00\x00\x13\xd6\x00\x00a\x00\x00\x00o\xd6\x00\x00\x1b\x00\x00\x00\xd1\xd6\x00\x00!\x00\x00\x00\xed\xd6\x00\x005\x00\x00\x00\x0f\xd7\x00\x00&\x00\x00\x00E\xd7\x00\x00\xb6\x00\x00\x00l\xd7\x00\x00>\x00\x00\x00#\xd8\x00\x00\x13\x00\x00\x00b\xd8\x00\x00i\x00\x00\x00v\xd8\x00\x00N\x00\x00\x00\xe0\xd8\x00\x00\x1c\x00\x00\x00/\xd9\x00\x007\x00\x00\x00L\xd9\x00\x00\x06\x00\x00\x00\x84\xd9\x00\x00\x19\x00\x00\x00\x8b\xd9\x00\x00\x0c\x00\x00\x00\xa5\xd9\x00\x00\x13\x00\x00\x00\xb2\xd9\x00\x00\'\x00\x00\x00\xc6\xd9\x00\x00(\x00\x00\x00\xee\xd9\x00\x00q\x00\x00\x00\x17\xda\x00\x00h\x00\x00\x00\x89\xda\x00\x001\x00\x00\x00\xf2\xda\x00\x00:\x00\x00\x00$\xdb\x00\x00/\x00\x00\x00_\xdb\x00\x00\xf3\x00\x00\x00\x8f\xdb\x00\x00\n\x00\x00\x00\x83\xdc\x00\x00\t\x00\x00\x00\x8e\xdc\x00\x00\x0e\x00\x00\x00\x98\xdc\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">libprs500</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00contains\x00libprs500\x00mybook.epub\x00Project-Id-Version: ca\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2008-04-04 09:07+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\tBaen Datei erkannt. Analysiere erneut...\x00\tBook Designer Datei erkannt.\x00\tKonvertiere in BBeB...\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\tAnalysiere HTML...\x00\n%prog [options] ISBN\n\nUmschlagbild des Buches mit der angegebenen ISBN von LibraryThing.com abrufen\n\x00\n%prog [options] key\n\nRufe Metadaten der B\xc3\xbccher von isndb.com ab. Sie k\xc3\xb6nnen entweder die\nISBN oder den Titel und den Autor des Buches angeben. Wenn Sie Titel und Autor angeben,\nkann es sein, dass mehrere B\xc3\xbccher gefunden werden.\n\nkey steht f\xc3\xbcr den Konto-Schl\xc3\xbcssel, der nach der kostenfreien Registrierung bei isbndb.com erstellt werden kann.\n\n\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%%prog [options] ARG\n\n%%prog analysiert eine Online-Quelle von Artikeln, z.B. einen RSS oder ATOM Feed und \nruft die Artikelinhalte hierarchisch organisiert ab.\n\nARG kann eines der folgenden sein:\n\ndateiname - %%prog versucht ein Rezept aus der Datei zu laden\n\ninstalliertes Rezept - %%prog l\xc3\xa4dt ein installiertes Rezept und benutzt es, um den Feed abzurufen. Z.B. f\xc3\xbcr Newsweek or "The BBC" or "The New York Times"\n\nRezept als eine Reihung - %%prog l\xc3\xa4dt das Rezept direkt nach der angegebenen Reihung.\n\nVerf\xc3\xbcgbare installierte Rezepte:\n%s\n\x00%prog URL\n\nURL ist z.B. http://google.com\x00%prog [options] datei.lrs\nErstellt eine LRF Datei aus einer LRS Datei.\x00%prog [options] dateiname.lrf\n\n\nZeigt/ver\xc3\xa4ndert die Metadaten in einer LRF Datei.\n\n\x00%prog [options] dateiname.pdf\n\n\n%prog konvertiert dateiname.pdf in dateiname.lrf\x00%prog [options] dateiname.rtf\n\n\n%prog konvertiert dateiname.rtf in dateiname.lrf\x00%prog [options] dateiname.txt\n\n\n%prog konvertiert dateiname.txt in dateiname.lrf\x00%prog [options] dateiname.mobi\x00%prog dateiname.lrf\nKonvertiert eine LRF Datei in eine LRS (XML UTF-8 kodierte) Datei\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00Clau d\'&acc\xc3\xa9s;\x00Feed &anf\xc3\xbcgen\x00Etikett &anf\xc3\xbcgen:\x00&Autor(s):\x00Marge &Inferior:\x00Datenbank verdi&chten\x00&Desactivar detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols\x00&Feed Titel:\x00&For\xc3\xa7a un salt de p\xc3\xa0gina abans de la marca:\x00&Format de la cap\xc3\xa7alera:\x00Marge &Esquerre:\x00&Ubicaci\xc3\xb3 de la base de dades (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monoespaiada:\x00\xc3\x84<ester Artikel:\x00Inserta un salt de &p\xc3\xa0gina abans de la marca:\x00&Contrasenya:\x00&Preprocessament:\x00&Priorit\xc3\xa4t der Konvertierungsauftr\xc3\xa4ge:\x00&Perfil:\x00&Editorial:\x00&Valoraci\xc3\xb3:\x00Expressi\xc3\xb3 &Regular:\x00Rezept entfe&rnen\x00Etiketten entfe&rnen:\x00Marge &Dret:\x00Re&cerca:\x00&S\xc3\xa8ries:\x00&Serif:\x00&Mostrar cap\xc3\xa7alera\x00Pa&sswort anzeigen\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&T\xc3\xad\xc2\xadtol:\x00Marge &Superior:\x00Nom d\'&usuari:\x00&Espaiat de les paraules:\x00...\x00<b>Els canvis s\'ignoren fins que el re-inicieu.\x00<b>No puc aconseguir la coberta.</b><br/>\x00<b>No</b> s\'han trobat coincid\xc3\xa8ncies per al text "<i>%s</i>".\x00<br>Cal que siga un directori.\x00<font color="gray">Ajuda no disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hilfe gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">libprs500</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Arxius HTML0 del Book Designer</li>\x00<li><b>pdftohtml</b> - Arxius HTML obtinguts amb l\'aplicaci\xc3\xb3 pdftohtml</li>\x00<ol><li><b>baen</b> - Llibre de BAEN Publishers</li>\x00<p>Es existiert bereits eine ung\xc3\xbcltige Datenbank in %s, bitte l\xc3\xb6schen Sie diese, bevor sie die bestehende Datenbank verschieben.<br>Fehler: %s\x00<p>Es existieren bereits B\xc3\xbccher mit dem selben Titel in der Datenbank. Sollen die folgenden B\xc3\xbccher trotzdem hinzugef\xc3\xbcgt werden?<ul>\x00<p>No puc desar llibres al dispositiu perqu\xc3\xa8 no hi ha espai restant\x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr <b>LibraryThing.com</b> an. <br/>Insofern Sie dies nicht besitzen, k\xc3\xb6nnen Sie sich kostenlos <a href=\'http://www.librarything.com\'>anmelden</a>! </p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Error llegint de l\'arxiu: <br /><b>\x00<span style="color:red; font-weight:bold">Letzte Version: <a href="%s">%s</a></span>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Expressi\xc3\xb3 regular. Les marques <a> amb href coincidents, s\xc3\xb3n ignorades. Per defecte: %default\x00Zuge&wiesene Etiketten\x00&Verf\xc3\xbcgbare Etiketten\x00Treballs actius\x00Afe&geix les etiquetes: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Afegir el directori al llistat de directoris freq\xc3\xbcents\x00Afegeix la cap\xc3\xa7alera a totes les p\xc3\xa0gines, ficant el t\xc3\xad\xc2\xadtol i l\'autor.\x00Afegir un nou format per a aquest llibre a la base de dades\x00Afegeix llibres\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Milloreu l\'aparen\xc3\xa7a del fitxer LRF generat, especificant la grand\xc3\xa0ria de lletra i l\'espaiat entre paraules.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Ein Fehler trat w\xc3\xa4hrend der Bearbeitung einer Tabelle auf: %s. Tabellenformat wird ignoriert.\x00Irgendein\x00Jeder Link, der diesem Regul\xc3\xa4ren Ausdruck entspricht, wird ignoriert. Diese Option kann mehrmals angegeben werden, somit werden Links ignoriert, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden keine Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben sind, wird --filter-regexp zuerst angewendet.\x00Etikett dem aktuellen Buch zuweisen\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00&Ordena autors:\x00Ord&re per autor:\x00Autor(s)\x00Autoren:\x00Formats disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Precedent\x00Schlechte Tabelle:\n%s\x00Grand\xc3\xa0ria de lletra base:\x00Grundverzeichnis, in das die URL gespeichert wird. Voreinstellung ist %default \x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\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\x00Konnte Link %s nicht zu TOC hinzuf\xc3\xbcgen\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\x00Lesen nicht m\xc3\xb6glich von: %s\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\x00Verdichte Datenbank. Das kann dauern...\x00Verdichte Datenbank...\x00Configuraci\xc3\xb3\x00Configura\x00Configura el visor\x00Converteix %s a LRF\x00Converteix Ebooks\x00Konvertierung von LRS in LRS, hilfreich bei der Fehlersuche.\x00Converteix individualment\x00Convertir a LRF\x00Zu LRS konvertieren\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\x00Konnte Bild nicht verarbeiten: %s\n%s\x00Konnte Umschlagbild nicht lesen: %s\x00Umschlagbild gespeichert unter\x00Creat per \x00Erstelle XML...\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\x00Ger\xc3\xa4tedatenbank ist besch\xc3\xa4digt\x00Lade CSS Stylesheets nicht herunter.\x00No s\xc3\xa9 per a qu\xc3\xa9 \xc3\xa9s aix\xc3\xb3\x00Fortschrittsbalken nicht anzeigen\x00Doppelklick erm\xc3\xb6glicht <b>Bearbeitung</b><br><br>\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:\x00Fehlschlag bei der Analysierung von %s %s\x00Verarbeitung der OPF Datei schlug fehl\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Recull\x00Recolliu la coberta des del servidor\x00Recull metadades\x00Recull metadades des del servidor\x00Recull not\xc3\xad\xc2\xadcies (RSS)\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Recollint metadades per a <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Milloreu la detecci\xc3\xb3 de cap\xc3\xad\xc2\xadtols i seccions.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00For\xc3\xa7a un salt de p\xc3\xa0gina davant d\'un element amb un atribut concret. El format d\'aquesta opci\xc3\xb3 \xc3\xa9s regexp_marca,nom_atribut,tegexp_valor_atribut. Per exemple, amb "h\\d,class,chapter", serien coincidents totes les marques de encap\xc3\xa7alament amb l\'atribut class="chapter". Per defecte: %default\x00For\xc3\xa7a un salt de p\xc3\xa0gina abans de les marques amb noms coincidents amb l\'expressi\xc3\xb3 regular.\x00For\xc3\xa7a un salt de p\xc3\xa0gina abans de l\'&atribut:\x00Art\x00Format\x00Formats\x00Seg\xc3\xbcent\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00Directoris emprats amb freq\xc3\xbc\xc3\xa8ncia\x00Feeds der Index Seite erhalten\x00Cap\xc3\xa7alera\x00Ajuda amb l\'\xc3\xad\xc2\xadtem\x00Partici\xc3\xb3 de mots\x00IS&BN:\x00Si l\'html2lrf no troba cap salt de p\xc3\xa0gina en el fitxer html i no pot detectar els encap\xc3\xa7alaments dels cap\xc3\xad\xc2\xadtols, insereix autom\xc3\xa0ticament un salt de p\xc3\xa0gina abans de les marques que tinguen un nom coincident amb l\'expressi\xc3\xb3 regular. Per defecte: %default. Aquesta opci\xc3\xb3 s\'inhabilita establint la regexp com a "$".El prop\xc3\xb2sit de tot plegat \xc3\xa9s evitar p\xc3\xa0gines massa llargues, que alentirien al canvi de fulla del fitxer LRF. Aquesta opci\xc3\xb3 s\'ignora si la p\xc3\xa0gina actual en t\xc3\xa9 pocs elements.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si es detecta un gr\xc3\xa0fic per a la coberta al fitxer d\'entrada, utilitzar-la en lloc de la coberta especificada.\x00Farben nicht bea&chten\x00Ignora les &taules\x00Augmenta la grand\xc3\xa0ria de la lletra en 2 * FONT_DELTA punts i l\'espai de l\xc3\xad\xc2\xadnia en FONT_DELTA punts. FONT_DELTA pot ser una fracci\xc3\xb3. Si \xc3\xa9s un valor negatiu, la grand\xc3\xa0ria de la lletra disminueix.\x00Inserta l\xc3\xad\xc2\xadnies &buides entre par\xc3\xa0grafs\x00Ung\xc3\xbcltige Datenbank\x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida \x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida \x00Ubicaci\xc3\xb3 de la base de dades no v\xc3\xa0lida.<br>No es pot escriure \x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Treball\x00Auftrag durch Benutzer abgebrochen\x00Treballs:\x00Visor LRF\x00LRS gespeichert in\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.\x00Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt werden. Voreinstellung %default\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:\x00Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. Voreinstellung ist %default s\x00Mindest-Zeileneinzug von Paragraphen (Zeileneinzug der ersten Zeile eines Paragraphen) in Punkt. Voreinstellung: %default\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\x00Keine Datei zur Konvertierung angegeben.\x00Kein Dateiname angegeben.\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\x00OEB eBook erstellt in\x00Nur Links, die diesem Regul\xc3\xa4ren Ausdruck entsprechen, werden verfolgt. Diese Option kann mehrmals angegeben werden, somit werden Links verfolgt, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden alle Links verfolgt.\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)\x00Ausgabe LRS Datei\x00Ausgabeverzeichnis. Voreinstellung ist akutelles Verzeichnis.\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\x00Analysieren 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.\x00Pfad zur Zieldatei\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\x00Gebe erstellte HTML auf stdout aus und beende das Programm.\x00Verarbeite %s\x00Perfil del dispositiu per al que es genera el fitxer LRF. Aquest perfil determina la resoluci\xc3\xb3 i la grand\xc3\xa0ria de la pantalla del dispositiu, entre d\'altres. Per defecte:%s Perfils suportats:\x00Progressi\xc3\xb3\x00Editorial\x00Valoraci\xc3\xb3\x00Valora aquest llibre: 0-5 estreles\x00Original MOBI HTML gespeichert in\x00El Sony Reader\n%s est\xc3\xa0 disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Elimiar el directori al llistat de directoris freq\xc3\xbcents\x00Suprimeix llibres\x00Feed aus dem Rezept entfernen\x00Elimina els formats seleccionats per a aquest llibre de la base de dades.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Renderitza les taules HTML com a blocs de text en lloc de les taules actuals. \xc3\x89s necessari si el fitxer HTML cont\xc3\xa9 taules massa grans o complexes.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Reinicialitza la recerca r\xc3\xa0pida\x00Marge dret de la p\xc3\xa0gina. Per defecte: %default px.\x00Laufzeit\x00S&ans-serif:\x00Desa al disc\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Recerca llibres pel t\xc3\xad\xc2\xadtol o l\'autor. <br><br>Els espais entre paraules es substitueixen per AND.\x00Recerca llibres pel t\xc3\xad\xc2\xadtol, l\'autor, l\'editorial, les etiquetes i els comentaris<br><br>Els espais entre paraules es substitueixen per AND.\x00Seleccioneu el llibre que m\xc3\xa9s s\'acoste del llistat que hi ha a sota\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Envia al dispositiu\x00Envia a la mem\xc3\xb2ria interna\x00Envia a la targeta de mem\xc3\xb2ria\x00Separa els par\xc3\xa0grafs amb l\xc3\xad\xc2\xadnies buides.\x00S\xc3\xa8ries\x00\xc3\x8dndex de s\xc3\xa8rie.\x00Serien Index:\x00Serien:\x00Server-Fehler. Bitte versuchen Sie es sp\xc3\xa4ter wieder.\x00Indiqueu l\'ID (identificador) del llibre\x00Fixa els valors de conversi\xc3\xb3 er defecte\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per autor\x00Indiqueu la clau d\'ordenaci\xc3\xb3 per t\xc3\xad\xc2\xadtol\x00Indiqueu l\'autor\x00Indiqueu l\'autor(s). Si indique m\xc3\xa9s d\'un autor, separeu el llistat amb comes. Per defecte: %default\x00Gebe Autoren ein\x00Indiqueu el nom del llibre\x00Indiqueu la categoria.\x00Gebe Kommentar ein\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.\x00Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche.\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.\x00Geben Sie die Zeichenkodierung der Ausgangsdatei an. Sollte die ausgegebene LRF Datei seltsame Zeichen enthalten, \xc3\xa4ndern Sie diese Einstellung. Eine gebr\xc3\xa4uchliche Kodierung von Dateien, die von Windows Computern stammen, ist cp-1252. Eine andere gebr\xc3\xa4uchliche Alternative ist utf-8. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Configuraci\xc3\xb3 de la p\xc3\xa0gina del dispositiu, especificant ,marges i grand\xc3\xa0ria de la pantalla, entre d\'altres.\x00Especifiqueu lletres truetype per a les fam\xc3\xad\xc2\xadlies serif, sans-serif i monoespaiades. Aquestes lletres s\xc3\xb3n inserides al fitxer LRF. Tingueu en compte que afegir lletres personalitzades alenteix el canvi de p\xc3\xa0gina. Per especificar cadascuna de les fam\xc3\xad\xc2\xadlies s\'empra: "cam\xc3\xad\xc2\xad a la carpeta de lletres, fam\xc3\xad\xc2\xadlia" ( --serif-family "%s, Times New Roman")\n\x00Starte Download von [%d Thread(s)]...\x00Estat\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Etique&tes:\x00Tabelle enth\xc3\xa4lt Zelle, die zu gro\xc3\x9f ist\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\x00Die ISBN des Buches, f\xc3\xbcr das Sie Metadaten abrufen m\xc3\xb6chten.\x00Der Autor des gesuchten Buches.\x00Categoria a la que pertany el llibre. Per exemple, Hist\xc3\xb2ria\x00Zeichenkodierung f\xc3\xbcr Webseiten, die zu laden versucht werden. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00H\xc3\xb6chstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus <a href> Tags zu. Voreinstellung ist %default\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\x00Der Herausgeber des gesuchten Buches.\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.\x00Der Titel des gesuchten Buches.\x00Hi ha hagut un error de comunicaci\xc3\xb3 amb el dispositiu. Lleve, torne a connectar el dispositiu i torne a iniciar el programa\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: %default s\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...\x00Konnte Bild %s nicht verarbeiten. Fehler: %s\x00Konnte verschachteltes PNG %s nicht verarbeiten\x00Etikett vom aktuellen Buch entfernen\x00No disponible\x00Desconegut\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Benutzung:\x00Benutzung: %prog [options] dateiname.epub\n \n \n%prog konvertiert dateiname.epub in dateiname.lrf\x00Benutzung: %prog [options] dateiname.html\n\n\n%prog konvertiert dateiname.html in dateiname.lrf. \n%prog folgt allen Hyperlinks in dateiname.html, die rekursiv auf \nlokale Dateien verweisen. Somit k\xc3\xb6nnen Sie es verwenden,\num einen ganzen Verzeichnisbaum von HTML Dateien zu konvertieren.\x00Benutzung: %prog [options] dateiname.lit\n\n\n%prog konvertiert dateiname.lit in dateiname.lrf\x00Benutzung: %prog [options] dateiname.mobi|prc\n\n\n%prog konvertiert dateiname.mobi in dateiname.lrf\x00Benutzung: %s dateiname.lit\x00Benutzung: pdf-meta dateiname.pdf\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.\x00Mit mehr W\xc3\xb6rtern fortfahren\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Mostra\x00Spezielles Format ansehen\x00En espera...\x00Est\xc3\xa0 treballant...\x00Vorverarbeitetes HTML gespeichert unter\x00No tens permissos per a llegir l\'arxiu: \x00Sichern Sie die Website %s zuerst als HTML Datei und benutzen Sie dann html2lrf mit der gespeicherten HTML Datei.\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.\x00any2lrf [options] dateiname\n\nKonvertiert verschiedene eBook Formate in LRF Dateien. Unterst\xc3\xbctzte Formate:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC und PDF. any2lrf verarbeitet auch RAR oder\nZIP Archive, indem es nach einem eBook im Archiv sucht.\n\x00beinhaltet\x00libprs500\x00dateiname.epub\x00', 'de': '\xde\x12\x04\x95\x00\x00\x00\x00\xed\x01\x00\x00\x1c\x00\x00\x00\x84\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xec\x1e\x00\x00"\x00\x00\x00\xed\x1e\x00\x00\x1d\x00\x00\x00\x10\x1f\x00\x00\x16\x00\x00\x00.\x1f\x00\x00\x0e\x00\x00\x00E\x1f\x00\x00\x10\x00\x00\x00T\x1f\x00\x00a\x00\x00\x00e\x1f\x00\x00+\x01\x00\x00\xc7\x1f\x00\x00!\x00\x00\x00\xf3 \x00\x00\x05\x00\x00\x00\x15!\x00\x00\x06\x00\x00\x00\x1b!\x00\x00\x17\x00\x00\x00"!\x00\x00\x0b\x00\x00\x00:!\x00\x00\x04\x00\x00\x00F!\x00\x00\x03\x00\x00\x00K!\x00\x00\x08\x00\x00\x00O!\x00\x00\x06\x00\x00\x00X!\x00\x00\xfd\x01\x00\x00_!\x00\x005\x00\x00\x00]#\x00\x00>\x00\x00\x00\x93#\x00\x00E\x00\x00\x00\xd2#\x00\x00D\x00\x00\x00\x18$\x00\x00D\x00\x00\x00]$\x00\x00D\x00\x00\x00\xa2$\x00\x00\x1c\x00\x00\x00\xe7$\x00\x00G\x00\x00\x00\x04%\x00\x00\x1c\x00\x00\x00L%\x00\x00\x0e\x00\x00\x00i%\x00\x00\x0c\x00\x00\x00x%\x00\x00\t\x00\x00\x00\x85%\x00\x00\t\x00\x00\x00\x8f%\x00\x00\x0c\x00\x00\x00\x99%\x00\x00\x0f\x00\x00\x00\xa6%\x00\x00\x11\x00\x00\x00\xb6%\x00\x00\x1a\x00\x00\x00\xc8%\x00\x00\x0c\x00\x00\x00\xe3%\x00\x00\x1d\x00\x00\x00\xf0%\x00\x00\x0f\x00\x00\x00\x0e&\x00\x00\r\x00\x00\x00\x1e&\x00\x00)\x00\x00\x00,&\x00\x00"\x00\x00\x00V&\x00\x00\x18\x00\x00\x00y&\x00\x00\x0b\x00\x00\x00\x92&\x00\x00\x10\x00\x00\x00\x9e&\x00\x00\x17\x00\x00\x00\xaf&\x00\x00\n\x00\x00\x00\xc7&\x00\x00\x0c\x00\x00\x00\xd2&\x00\x00\x1e\x00\x00\x00\xdf&\x00\x00\t\x00\x00\x00\xfe&\x00\x00\x0c\x00\x00\x00\x08\'\x00\x00\x08\x00\x00\x00\x15\'\x00\x00\x14\x00\x00\x00\x1e\'\x00\x00\x0e\x00\x00\x003\'\x00\x00\r\x00\x00\x00B\'\x00\x00\x0e\x00\x00\x00P\'\x00\x00\x08\x00\x00\x00_\'\x00\x00\x08\x00\x00\x00h\'\x00\x00\x07\x00\x00\x00q\'\x00\x00\x0c\x00\x00\x00y\'\x00\x00\x0e\x00\x00\x00\x86\'\x00\x00\x12\x00\x00\x00\x95\'\x00\x00\x05\x00\x00\x00\xa8\'\x00\x00\x08\x00\x00\x00\xae\'\x00\x00\x0c\x00\x00\x00\xb7\'\x00\x00\n\x00\x00\x00\xc4\'\x00\x00\x0e\x00\x00\x00\xcf\'\x00\x00\x03\x00\x00\x00\xde\'\x00\x001\x00\x00\x00\xe2\'\x00\x00"\x00\x00\x00\x14(\x00\x00=\x00\x00\x007(\x00\x00\x18\x00\x00\x00u(\x00\x00+\x00\x00\x00\x8e(\x00\x00\x00\x02\x00\x00\xba(\x00\x00\xa3\x01\x00\x00\xbb*\x00\x00\x82\x02\x00\x00_,\x00\x00>\x00\x00\x00\xe2.\x00\x00S\x00\x00\x00!/\x00\x005\x00\x00\x00u/\x00\x00p\x00\x00\x00\xab/\x00\x00a\x00\x00\x00\x1c0\x00\x00G\x00\x00\x00~0\x00\x00(\x00\x00\x00\xc60\x00\x00\xa7\x00\x00\x00\xef0\x00\x00W\x00\x00\x00\x971\x00\x00\x96\x00\x00\x00\xef1\x00\x00=\x01\x00\x00\x862\x00\x002\x00\x00\x00\xc43\x00\x00T\x00\x00\x00\xf73\x00\x00\x01\x00\x00\x00L4\x00\x00C\x00\x00\x00N4\x00\x00\r\x00\x00\x00\x924\x00\x00\x0f\x00\x00\x00\xa04\x00\x00\x0b\x00\x00\x00\xb04\x00\x00\x0b\x00\x00\x00\xbc4\x00\x00\x18\x00\x00\x00\xc84\x00\x007\x00\x00\x00\xe14\x00\x004\x00\x00\x00\x195\x00\x00.\x00\x00\x00N5\x00\x00\t\x00\x00\x00}5\x00\x00!\x00\x00\x00\x875\x00\x00b\x00\x00\x00\xa95\x00\x00o\x00\x00\x00\x0c6\x00\x00\x16\x00\x00\x00|6\x00\x00\x12\x00\x00\x00\x936\x00\x006\x00\x00\x00\xa66\x00\x00\x12\x00\x00\x00\xdd6\x00\x00m\x00\x00\x00\xf06\x00\x00\x08\x00\x00\x00^7\x00\x00\x0f\x00\x00\x00g7\x00\x00\x0f\x00\x00\x00w7\x00\x00\x0e\x00\x00\x00\x877\x00\x00\x05\x00\x00\x00\x967\x00\x00F\x00\x00\x00\x9c7\x00\x00\x03\x00\x00\x00\xe37\x00\x005\x01\x00\x00\xe77\x00\x00\x19\x00\x00\x00\x1d9\x00\x00\x1b\x00\x00\x0079\x00\x00\x16\x00\x00\x00S9\x00\x00\x06\x00\x00\x00j9\x00\x00\x0e\x00\x00\x00q9\x00\x00\r\x00\x00\x00\x809\x00\x00\t\x00\x00\x00\x8e9\x00\x00\x08\x00\x00\x00\x989\x00\x00\x11\x00\x00\x00\xa19\x00\x00\x16\x00\x00\x00\xb39\x00\x00\x04\x00\x00\x00\xca9\x00\x00\r\x00\x00\x00\xcf9\x00\x00\x10\x00\x00\x00\xdd9\x00\x00;\x00\x00\x00\xee9\x00\x00\x05\x00\x00\x00*:\x00\x00!\x00\x00\x000:\x00\x00\x10\x00\x00\x00R:\x00\x00\x1b\x00\x00\x00c:\x00\x00\x05\x00\x00\x00\x7f:\x00\x00(\x00\x00\x00\x85:\x00\x00\n\x00\x00\x00\xae:\x00\x00.\x00\x00\x00\xb9:\x00\x005\x00\x00\x00\xe8:\x00\x00$\x00\x00\x00\x1e;\x00\x00\x0c\x00\x00\x00C;\x00\x00\x1a\x00\x00\x00P;\x00\x00\x19\x00\x00\x00k;\x00\x00\x10\x00\x00\x00\x85;\x00\x00.\x00\x00\x00\x96;\x00\x00\x0e\x00\x00\x00\xc5;\x00\x00\x0e\x00\x00\x00\xd4;\x00\x007\x00\x00\x00\xe3;\x00\x00\x14\x00\x00\x00\x1b<\x00\x00\x12\x00\x00\x000<\x00\x00#\x00\x00\x00C<\x00\x00\x0f\x00\x00\x00g<\x00\x00Z\x00\x00\x00w<\x00\x00\x19\x00\x00\x00\xd2<\x00\x00\x0b\x00\x00\x00\xec<\x00\x00\x14\x00\x00\x00\xf8<\x00\x00\x13\x00\x00\x00\r=\x00\x00\x0b\x00\x00\x00!=\x00\x00\x11\x00\x00\x00-=\x00\x00\x08\x00\x00\x00?=\x00\x00\x14\x00\x00\x00H=\x00\x00\x0f\x00\x00\x00]=\x00\x00R\x00\x00\x00m=\x00\x00!\x00\x00\x00\xc0=\x00\x00\x1d\x00\x00\x00\xe2=\x00\x00H\x00\x00\x00\x00>\x00\x00\x11\x00\x00\x00I>\x00\x00\r\x00\x00\x00[>\x00\x00%\x00\x00\x00i>\x00\x00\x19\x00\x00\x00\x8f>\x00\x00!\x00\x00\x00\xa9>\x00\x007\x00\x00\x00\xcb>\x00\x00\x08\x00\x00\x00\x03?\x00\x00+\x00\x00\x00\x0c?\x00\x00\r\x00\x00\x008?\x00\x00\r\x00\x00\x00F?\x00\x00\t\x00\x00\x00T?\x00\x00\x10\x00\x00\x00^?\x00\x00\x11\x00\x00\x00o?\x00\x00\x0f\x00\x00\x00\x81?\x00\x00)\x00\x00\x00\x91?\x00\x00\x14\x00\x00\x00\xbb?\x00\x00\x0e\x00\x00\x00\xd0?\x00\x00\x0e\x00\x00\x00\xdf?\x00\x00\x1c\x00\x00\x00\xee?\x00\x00;\x00\x00\x00\x0b@\x00\x00\x15\x00\x00\x00G@\x00\x00R\x00\x00\x00]@\x00\x00\x17\x00\x00\x00\xb0@\x00\x00\x18\x00\x00\x00\xc8@\x00\x00\x1e\x00\x00\x00\xe1@\x00\x00\x1e\x00\x00\x00\x00A\x00\x00\x0e\x00\x00\x00\x1fA\x00\x00\x0b\x00\x00\x00.A\x00\x00\x0f\x00\x00\x00:A\x00\x00\x13\x00\x00\x00JA\x00\x00\x04\x00\x00\x00^A\x00\x00\x19\x00\x00\x00cA\x00\x00\x03\x00\x00\x00}A\x00\x00h\x00\x00\x00\x81A\x00\x00\x0e\x00\x00\x00\xeaA\x00\x00\x19\x00\x00\x00\xf9A\x00\x00 \x00\x00\x00\x13B\x00\x00\x1b\x00\x00\x004B\x00\x00\x1a\x00\x00\x00PB\x00\x00&\x00\x00\x00kB\x00\x00\x11\x00\x00\x00\x92B\x00\x00\x19\x00\x00\x00\xa4B\x00\x00\x11\x00\x00\x00\xbeB\x00\x00\x01\x00\x00\x00\xd0B\x00\x00\x05\x00\x00\x00\xd2B\x00\x00\x15\x00\x00\x00\xd8B\x00\x00\x15\x00\x00\x00\xeeB\x00\x00\x15\x00\x00\x00\x04C\x00\x00\x15\x00\x00\x00\x1aC\x00\x00\x1a\x00\x00\x000C\x00\x00\x0e\x00\x00\x00KC\x00\x00\x1f\x00\x00\x00ZC\x00\x00C\x00\x00\x00zC\x00\x00\x05\x00\x00\x00\xbeC\x00\x00\x1f\x00\x00\x00\xc4C\x00\x00\x12\x00\x00\x00\xe4C\x00\x00\x17\x00\x00\x00\xf7C\x00\x00\x1f\x00\x00\x00\x0fD\x00\x00\'\x00\x00\x00/D\x00\x003\x00\x00\x00WD\x00\x00*\x00\x00\x00\x8bD\x00\x00\x1a\x00\x00\x00\xb6D\x00\x00\x1a\x00\x00\x00\xd1D\x00\x00\n\x00\x00\x00\xecD\x00\x00\x14\x00\x00\x00\xf7D\x00\x00\x16\x00\x00\x00\x0cE\x00\x00\x16\x00\x00\x00#E\x00\x00\x0f\x00\x00\x00:E\x00\x00\x05\x00\x00\x00JE\x00\x00\x1d\x00\x00\x00PE\x00\x00\x0e\x00\x00\x00nE\x00\x00\x1a\x00\x00\x00}E\x00\x00\n\x00\x00\x00\x98E\x00\x00\x10\x00\x00\x00\xa3E\x00\x00\r\x00\x00\x00\xb4E\x00\x00\x11\x00\x00\x00\xc2E\x00\x00\x1f\x00\x00\x00\xd4E\x00\x00\x13\x00\x00\x00\xf4E\x00\x00\x1b\x00\x00\x00\x08F\x00\x00\x05\x00\x00\x00$F\x00\x00\x0b\x00\x00\x00*F\x00\x008\x00\x00\x006F\x00\x00\x08\x00\x00\x00oF\x00\x00\x8a\x00\x00\x00xF\x00\x00\x1d\x01\x00\x00\x03G\x00\x00J\x00\x00\x00!H\x00\x00#\x00\x00\x00lH\x00\x00\x04\x00\x00\x00\x90H\x00\x00\x06\x00\x00\x00\x95H\x00\x00\x07\x00\x00\x00\x9cH\x00\x00\x07\x00\x00\x00\xa4H\x00\x00\'\x00\x00\x00\xacH\x00\x00\x1b\x00\x00\x00\xd4H\x00\x00\x19\x00\x00\x00\xf0H\x00\x00\x06\x00\x00\x00\nI\x00\x00\x0c\x00\x00\x00\x11I\x00\x00\t\x00\x00\x00\x1eI\x00\x00\x06\x00\x00\x00(I\x00\x00\xdc\x01\x00\x00/I\x00\x00n\x00\x00\x00\x0cK\x00\x00a\x00\x00\x00{K\x00\x00\x0e\x00\x00\x00\xddK\x00\x00\x0e\x00\x00\x00\xecK\x00\x00\xa8\x00\x00\x00\xfbK\x00\x00&\x00\x00\x00\xa4L\x00\x00\x10\x00\x00\x00\xcbL\x00\x00\x19\x00\x00\x00\xdcL\x00\x00\x1a\x00\x00\x00\xf6L\x00\x00.\x00\x00\x00\x11M\x00\x00\r\x00\x00\x00@M\x00\x00\x1a\x00\x00\x00NM\x00\x00\x1e\x00\x00\x00iM\x00\x00\x03\x00\x00\x00\x88M\x00\x00\x12\x00\x00\x00\x8cM\x00\x00\x05\x00\x00\x00\x9fM\x00\x00\n\x00\x00\x00\xa5M\x00\x00\x0f\x00\x00\x00\xb0M\x00\x00,\x00\x00\x00\xc0M\x00\x00\x07\x00\x00\x00\xedM\x00\x00-\x00\x00\x00\xf5M\x00\x00\x0b\x00\x00\x00#N\x00\x00$\x00\x00\x00/N\x00\x00$\x00\x00\x00TN\x00\x00\x07\x00\x00\x00yN\x00\x000\x00\x00\x00\x81N\x00\x00S\x00\x00\x00\xb2N\x00\x00\x10\x00\x00\x00\x06O\x00\x00\x08\x00\x00\x00\x17O\x00\x00y\x00\x00\x00 O\x00\x00\x10\x00\x00\x00\x9aO\x00\x00N\x00\x00\x00\xabO\x00\x00`\x00\x00\x00\xfaO\x00\x00\x04\x00\x00\x00[P\x00\x00\x06\x00\x00\x00`P\x00\x00"\x00\x00\x00gP\x00\x00\t\x00\x00\x00\x8aP\x00\x00\n\x00\x00\x00\x94P\x00\x00\x14\x00\x00\x00\x9fP\x00\x00\x10\x00\x00\x00\xb4P\x00\x00\x11\x00\x00\x00\xc5P\x00\x00\x1d\x00\x00\x00\xd7P\x00\x00\x16\x00\x00\x00\xf5P\x00\x00\x08\x00\x00\x00\x0cQ\x00\x00\x10\x00\x00\x00\x15Q\x00\x00\x12\x00\x00\x00&Q\x00\x00\x04\x00\x00\x009Q\x00\x00^\x00\x00\x00>Q\x00\x00\x14\x00\x00\x00\x9dQ\x00\x00\xdc\x00\x00\x00\xb2Q\x00\x00\x0f\x00\x00\x00\x8fR\x00\x00\n\x00\x00\x00\x9fR\x00\x00\x07\x00\x00\x00\xaaR\x00\x00-\x00\x00\x00\xb2R\x00\x00+\x00\x00\x00\xe0R\x00\x00F\x00\x00\x00\x0cS\x00\x00\x0f\x00\x00\x00SS\x00\x000\x00\x00\x00cS\x00\x008\x00\x00\x00\x94S\x00\x00s\x00\x00\x00\xcdS\x00\x00\x0f\x00\x00\x00AT\x00\x00\n\x00\x00\x00QT\x00\x00\x10\x00\x00\x00\\T\x00\x00\x0e\x00\x00\x00mT\x00\x00:\x00\x00\x00|T\x00\x00\x0f\x00\x00\x00\xb7T\x00\x00\x04\x00\x00\x00\xc7T\x00\x00;\x00\x00\x00\xccT\x00\x00G\x00\x00\x00\x08U\x00\x001\x00\x00\x00PU\x00\x00Y\x00\x00\x00\x82U\x00\x00\x13\x00\x00\x00\xdcU\x00\x004\x00\x00\x00\xf0U\x00\x00\x80\x00\x00\x00%V\x00\x00H\x00\x00\x00\xa6V\x00\x00\r\x00\x00\x00\xefV\x00\x00(\x00\x00\x00\xfdV\x00\x00\r\x00\x00\x00&W\x00\x00\xbc\x00\x00\x004W\x00\x00\x08\x00\x00\x00\xf1W\x00\x00\t\x00\x00\x00\xfaW\x00\x00\x06\x00\x00\x00\x04X\x00\x00\x1e\x00\x00\x00\x0bX\x00\x00\x16\x00\x00\x00*X\x00\x00\x13\x00\x00\x00AX\x00\x00\x0e\x00\x00\x00UX\x00\x00\x1b\x00\x00\x00dX\x00\x00\x13\x00\x00\x00\x80X\x00\x00+\x00\x00\x00\x94X\x00\x00*\x00\x00\x00\xc0X\x00\x000\x00\x00\x00\xebX\x00\x00)\x00\x00\x00\x1cY\x00\x00<\x00\x00\x00FY\x00\x00\x0c\x00\x00\x00\x83Y\x00\x00\x17\x00\x00\x00\x90Y\x00\x00<\x00\x00\x00\xa8Y\x00\x000\x00\x00\x00\xe5Y\x00\x00\x84\x00\x00\x00\x16Z\x00\x00X\x00\x00\x00\x9bZ\x00\x00\x0f\x00\x00\x00\xf4Z\x00\x00\x12\x00\x00\x00\x04[\x00\x00-\x00\x00\x00\x17[\x00\x00\x0c\x00\x00\x00E[\x00\x00\x0c\x00\x00\x00R[\x00\x00\x0c\x00\x00\x00_[\x00\x00"\x00\x00\x00l[\x00\x009\x00\x00\x00\x8f[\x00\x00\x0f\x00\x00\x00\xc9[\x00\x00V\x00\x00\x00\xd9[\x00\x00r\x00\x00\x000\\\x00\x00G\x00\x00\x00\xa3\\\x00\x00\'\x00\x00\x00\xeb\\\x00\x00\x0e\x00\x00\x00\x13]\x00\x00\x13\x00\x00\x00"]\x00\x00\x14\x00\x00\x006]\x00\x00#\x00\x00\x00K]\x00\x00\x06\x00\x00\x00o]\x00\x00\r\x00\x00\x00v]\x00\x00\r\x00\x00\x00\x84]\x00\x00\x07\x00\x00\x00\x92]\x00\x00\x1e\x00\x00\x00\x9a]\x00\x00\x0b\x00\x00\x00\xb9]\x00\x00\x17\x00\x00\x00\xc5]\x00\x00\x1b\x00\x00\x00\xdd]\x00\x00\x1a\x00\x00\x00\xf9]\x00\x00\x0e\x00\x00\x00\x14^\x00\x00^\x00\x00\x00#^\x00\x00\x0f\x00\x00\x00\x82^\x00\x00\x12\x00\x00\x00\x92^\x00\x00\x10\x00\x00\x00\xa5^\x00\x00\x0f\x00\x00\x00\xb6^\x00\x00\x10\x00\x00\x00\xc6^\x00\x00g\x00\x00\x00\xd7^\x00\x00c\x00\x00\x00?_\x00\x007\x00\x00\x00\xa3_\x00\x00!\x00\x00\x00\xdb_\x00\x006\x00\x00\x00\xfd_\x00\x00d\x00\x00\x004`\x00\x00\t\x00\x00\x00\x99`\x00\x00\x17\x00\x00\x00\xa3`\x00\x00\x16\x00\x00\x00\xbb`\x00\x00\x11\x00\x00\x00\xd2`\x00\x00\x04\x01\x00\x00\xe4`\x00\x00z\x00\x00\x00\xe9a\x00\x00\x85\x00\x00\x00db\x00\x00\xb6\x00\x00\x00\xeab\x00\x00\r\x01\x00\x00\xa1c\x00\x00P\x00\x00\x00\xafd\x00\x00+\x01\x00\x00\x00e\x00\x00#\x00\x00\x00,f\x00\x00\x06\x00\x00\x00Pf\x00\x00\x17\x00\x00\x00Wf\x00\x00\x14\x00\x00\x00of\x00\x00\x07\x00\x00\x00\x84f\x00\x00 \x00\x00\x00\x8cf\x00\x00\x03\x00\x00\x00\xadf\x00\x00\n\x00\x00\x00\xb1f\x00\x00\x13\x00\x00\x00\xbcf\x00\x00\x04\x00\x00\x00\xd0f\x00\x00\x85\x00\x00\x00\xd5f\x00\x00\x04\x00\x00\x00[g\x00\x00\t\x00\x00\x00`g\x00\x00.\x00\x00\x00jg\x00\x00%\x00\x00\x00\x99g\x00\x000\x00\x00\x00\xbfg\x00\x00q\x00\x00\x00\xf0g\x00\x00X\x00\x00\x00bh\x00\x00\x1b\x00\x00\x00\xbbh\x00\x00\x1a\x00\x00\x00\xd7h\x00\x00k\x00\x00\x00\xf2h\x00\x00\x9d\x00\x00\x00^i\x00\x00&\x00\x00\x00\xfci\x00\x00\x1e\x00\x00\x00#j\x00\x00(\x00\x00\x00Bj\x00\x00v\x00\x00\x00kj\x00\x00\'\x00\x00\x00\xe2j\x00\x00"\x00\x00\x00\nk\x00\x00B\x00\x00\x00-k\x00\x00^\x00\x00\x00pk\x00\x00$\x00\x00\x00\xcfk\x00\x00h\x00\x00\x00\xf4k\x00\x00.\x00\x00\x00]l\x00\x00N\x00\x00\x00\x8cl\x00\x00\t\x00\x00\x00\xdbl\x00\x00\x05\x00\x00\x00\xe5l\x00\x00\x15\x00\x00\x00\xebl\x00\x00\x06\x00\x00\x00\x01m\x00\x00+\x00\x00\x00\x08m\x00\x00\x1b\x00\x00\x004m\x00\x00%\x00\x00\x00Pm\x00\x00#\x00\x00\x00vm\x00\x00&\x00\x00\x00\x9am\x00\x00\x0b\x00\x00\x00\xc1m\x00\x00\x07\x00\x00\x00\xcdm\x00\x00\x13\x00\x00\x00\xd5m\x00\x00\x0c\x00\x00\x00\xe9m\x00\x00\x10\x00\x00\x00\xf6m\x00\x00\x10\x00\x00\x00\x07n\x00\x00\x06\x00\x00\x00\x18n\x00\x00]\x00\x00\x00\x1fn\x00\x00\xdb\x00\x00\x00}n\x00\x00K\x00\x00\x00Yo\x00\x00Q\x00\x00\x00\xa5o\x00\x00\x12\x00\x00\x00\xf7o\x00\x00\x18\x00\x00\x00\np\x00\x00%\x00\x00\x00#p\x00\x00\x1b\x00\x00\x00Ip\x00\x00\xb4\x00\x00\x00ep\x00\x002\x00\x00\x00\x1aq\x00\x00\x14\x00\x00\x00Mq\x00\x00_\x00\x00\x00bq\x00\x00:\x00\x00\x00\xc2q\x00\x00\x12\x00\x00\x00\xfdq\x00\x00*\x00\x00\x00\x10r\x00\x00\x04\x00\x00\x00;r\x00\x00\x14\x00\x00\x00@r\x00\x00\x07\x00\x00\x00Ur\x00\x00\x07\x00\x00\x00]r\x00\x00\x1d\x00\x00\x00er\x00\x00-\x00\x00\x00\x83r\x00\x00R\x00\x00\x00\xb1r\x00\x00d\x00\x00\x00\x04s\x00\x00#\x00\x00\x00is\x00\x002\x00\x00\x00\x8ds\x00\x003\x00\x00\x00\xc0s\x00\x00\xdf\x00\x00\x00\xf4s\x00\x00\x08\x00\x00\x00\xd4t\x00\x00\t\x00\x00\x00\xddt\x00\x00\x0b\x00\x00\x00\xe7t\x00\x008\x01\x00\x00\xf3t\x00\x00)\x00\x00\x00,v\x00\x00\x1d\x00\x00\x00Vv\x00\x00\x17\x00\x00\x00tv\x00\x00 \x00\x00\x00\x8cv\x00\x00\x13\x00\x00\x00\xadv\x00\x00e\x00\x00\x00\xc1v\x00\x00\\\x01\x00\x00\'w\x00\x00\x1d\x00\x00\x00\x84x\x00\x00\x05\x00\x00\x00\xa2x\x00\x00\x04\x00\x00\x00\xa8x\x00\x00\x18\x00\x00\x00\xadx\x00\x00\x10\x00\x00\x00\xc6x\x00\x00\x06\x00\x00\x00\xd7x\x00\x00\x06\x00\x00\x00\xdex\x00\x00\t\x00\x00\x00\xe5x\x00\x00\x07\x00\x00\x00\xefx\x00\x00+\x02\x00\x00\xf7x\x00\x00)\x00\x00\x00#{\x00\x00F\x00\x00\x00M{\x00\x00T\x00\x00\x00\x94{\x00\x00P\x00\x00\x00\xe9{\x00\x00P\x00\x00\x00:|\x00\x00P\x00\x00\x00\x8b|\x00\x00\x1e\x00\x00\x00\xdc|\x00\x00U\x00\x00\x00\xfb|\x00\x00"\x00\x00\x00Q}\x00\x00\x12\x00\x00\x00t}\x00\x00\x14\x00\x00\x00\x87}\x00\x00\x0e\x00\x00\x00\x9c}\x00\x00\x12\x00\x00\x00\xab}\x00\x00\x07\x00\x00\x00\xbe}\x00\x00\x0e\x00\x00\x00\xc6}\x00\x00\x15\x00\x00\x00\xd5}\x00\x00 \x00\x00\x00\xeb}\x00\x00\x0c\x00\x00\x00\x0c~\x00\x00%\x00\x00\x00\x19~\x00\x00\x12\x00\x00\x00?~\x00\x00\r\x00\x00\x00R~\x00\x00/\x00\x00\x00`~\x00\x00&\x00\x00\x00\x90~\x00\x00\x1e\x00\x00\x00\xb7~\x00\x00\x0b\x00\x00\x00\xd6~\x00\x00\x13\x00\x00\x00\xe2~\x00\x00\x1b\x00\x00\x00\xf6~\x00\x00\n\x00\x00\x00\x12\x7f\x00\x00\x0f\x00\x00\x00\x1d\x7f\x00\x00(\x00\x00\x00-\x7f\x00\x00\x08\x00\x00\x00V\x7f\x00\x00\r\x00\x00\x00_\x7f\x00\x00\x0b\x00\x00\x00m\x7f\x00\x00\x15\x00\x00\x00y\x7f\x00\x00\x11\x00\x00\x00\x8f\x7f\x00\x00\x15\x00\x00\x00\xa1\x7f\x00\x00\x0e\x00\x00\x00\xb7\x7f\x00\x00\x07\x00\x00\x00\xc6\x7f\x00\x00\x08\x00\x00\x00\xce\x7f\x00\x00\x07\x00\x00\x00\xd7\x7f\x00\x00\x13\x00\x00\x00\xdf\x7f\x00\x00\x12\x00\x00\x00\xf3\x7f\x00\x00\x1e\x00\x00\x00\x06\x80\x00\x00\x05\x00\x00\x00%\x80\x00\x00\x07\x00\x00\x00+\x80\x00\x00\r\x00\x00\x003\x80\x00\x00\x0e\x00\x00\x00A\x80\x00\x00\r\x00\x00\x00P\x80\x00\x00\x03\x00\x00\x00^\x80\x00\x008\x00\x00\x00b\x80\x00\x00-\x00\x00\x00\x9b\x80\x00\x00;\x00\x00\x00\xc9\x80\x00\x00\x1e\x00\x00\x00\x05\x81\x00\x000\x00\x00\x00$\x81\x00\x00M\x02\x00\x00U\x81\x00\x00\xa3\x01\x00\x00\xa3\x83\x00\x00\x8c\x02\x00\x00G\x85\x00\x00>\x00\x00\x00\xd4\x87\x00\x00X\x00\x00\x00\x13\x88\x00\x006\x00\x00\x00l\x88\x00\x00\x90\x00\x00\x00\xa3\x88\x00\x00\x86\x00\x00\x004\x89\x00\x00`\x00\x00\x00\xbb\x89\x00\x00/\x00\x00\x00\x1c\x8a\x00\x00\xcd\x00\x00\x00L\x8a\x00\x00\x7f\x00\x00\x00\x1a\x8b\x00\x00\xcd\x00\x00\x00\x9a\x8b\x00\x00\xa4\x01\x00\x00h\x8c\x00\x00<\x00\x00\x00\r\x8e\x00\x00T\x00\x00\x00J\x8e\x00\x00\x01\x00\x00\x00\x9f\x8e\x00\x00M\x00\x00\x00\xa1\x8e\x00\x00\x16\x00\x00\x00\xef\x8e\x00\x00\x16\x00\x00\x00\x06\x8f\x00\x00\x10\x00\x00\x00\x1d\x8f\x00\x00\x18\x00\x00\x00.\x8f\x00\x00/\x00\x00\x00G\x8f\x00\x00I\x00\x00\x00w\x8f\x00\x00?\x00\x00\x00\xc1\x8f\x00\x00;\x00\x00\x00\x01\x90\x00\x00\x13\x00\x00\x00=\x90\x00\x003\x00\x00\x00Q\x90\x00\x00}\x00\x00\x00\x85\x90\x00\x00\x98\x00\x00\x00\x03\x91\x00\x00$\x00\x00\x00\x9c\x91\x00\x00\x1b\x00\x00\x00\xc1\x91\x00\x00Q\x00\x00\x00\xdd\x91\x00\x00"\x00\x00\x00/\x92\x00\x00e\x00\x00\x00R\x92\x00\x00\t\x00\x00\x00\xb8\x92\x00\x00\x10\x00\x00\x00\xc2\x92\x00\x00\x10\x00\x00\x00\xd3\x92\x00\x00\x10\x00\x00\x00\xe4\x92\x00\x00\x05\x00\x00\x00\xf5\x92\x00\x00^\x00\x00\x00\xfb\x92\x00\x00\t\x00\x00\x00Z\x93\x00\x00_\x01\x00\x00d\x93\x00\x00#\x00\x00\x00\xc4\x94\x00\x00!\x00\x00\x00\xe8\x94\x00\x00\x13\x00\x00\x00\n\x95\x00\x00\x05\x00\x00\x00\x1e\x95\x00\x00\x17\x00\x00\x00$\x95\x00\x00\x17\x00\x00\x00<\x95\x00\x00\t\x00\x00\x00T\x95\x00\x00\x08\x00\x00\x00^\x95\x00\x00\x13\x00\x00\x00g\x95\x00\x00\x1c\x00\x00\x00{\x95\x00\x00\x07\x00\x00\x00\x98\x95\x00\x00\x15\x00\x00\x00\xa0\x95\x00\x00\x18\x00\x00\x00\xb6\x95\x00\x00O\x00\x00\x00\xcf\x95\x00\x00\x07\x00\x00\x00\x1f\x96\x00\x003\x00\x00\x00\'\x96\x00\x00\x16\x00\x00\x00[\x96\x00\x003\x00\x00\x00r\x96\x00\x00\x04\x00\x00\x00\xa6\x96\x00\x00)\x00\x00\x00\xab\x96\x00\x00\x0c\x00\x00\x00\xd5\x96\x00\x00>\x00\x00\x00\xe2\x96\x00\x00 \x00\x00\x00!\x97\x00\x00)\x00\x00\x00B\x97\x00\x00\x17\x00\x00\x00l\x97\x00\x00%\x00\x00\x00\x84\x97\x00\x00\'\x00\x00\x00\xaa\x97\x00\x00\x1c\x00\x00\x00\xd2\x97\x00\x00D\x00\x00\x00\xef\x97\x00\x00\x19\x00\x00\x004\x98\x00\x00\x1c\x00\x00\x00N\x98\x00\x00R\x00\x00\x00k\x98\x00\x00\x1f\x00\x00\x00\xbe\x98\x00\x00\x1e\x00\x00\x00\xde\x98\x00\x005\x00\x00\x00\xfd\x98\x00\x00\x1d\x00\x00\x003\x99\x00\x00g\x00\x00\x00Q\x99\x00\x00-\x00\x00\x00\xb9\x99\x00\x00\x14\x00\x00\x00\xe7\x99\x00\x00\x1c\x00\x00\x00\xfc\x99\x00\x00\'\x00\x00\x00\x19\x9a\x00\x00\x16\x00\x00\x00A\x9a\x00\x00\x13\x00\x00\x00X\x9a\x00\x00\t\x00\x00\x00l\x9a\x00\x00\x16\x00\x00\x00v\x9a\x00\x00\x10\x00\x00\x00\x8d\x9a\x00\x00R\x00\x00\x00\x9e\x9a\x00\x00!\x00\x00\x00\xf1\x9a\x00\x00\x1b\x00\x00\x00\x13\x9b\x00\x00H\x00\x00\x00/\x9b\x00\x00\x16\x00\x00\x00x\x9b\x00\x00\x0e\x00\x00\x00\x8f\x9b\x00\x00:\x00\x00\x00\x9e\x9b\x00\x00\x1b\x00\x00\x00\xd9\x9b\x00\x00&\x00\x00\x00\xf5\x9b\x00\x00J\x00\x00\x00\x1c\x9c\x00\x00\t\x00\x00\x00g\x9c\x00\x00\'\x00\x00\x00q\x9c\x00\x00\x16\x00\x00\x00\x99\x9c\x00\x00\r\x00\x00\x00\xb0\x9c\x00\x00\r\x00\x00\x00\xbe\x9c\x00\x00\x15\x00\x00\x00\xcc\x9c\x00\x00\x15\x00\x00\x00\xe2\x9c\x00\x00\x13\x00\x00\x00\xf8\x9c\x00\x00<\x00\x00\x00\x0c\x9d\x00\x00\x14\x00\x00\x00I\x9d\x00\x00\x13\x00\x00\x00^\x9d\x00\x00\x13\x00\x00\x00r\x9d\x00\x00#\x00\x00\x00\x86\x9d\x00\x00W\x00\x00\x00\xaa\x9d\x00\x00 \x00\x00\x00\x02\x9e\x00\x00e\x00\x00\x00#\x9e\x00\x00"\x00\x00\x00\x89\x9e\x00\x00"\x00\x00\x00\xac\x9e\x00\x00$\x00\x00\x00\xcf\x9e\x00\x00#\x00\x00\x00\xf4\x9e\x00\x00\x1e\x00\x00\x00\x18\x9f\x00\x00\r\x00\x00\x007\x9f\x00\x00\x0f\x00\x00\x00E\x9f\x00\x00\x1f\x00\x00\x00U\x9f\x00\x00\x05\x00\x00\x00u\x9f\x00\x00B\x00\x00\x00{\x9f\x00\x00\x08\x00\x00\x00\xbe\x9f\x00\x00r\x00\x00\x00\xc7\x9f\x00\x00\x14\x00\x00\x00:\xa0\x00\x00 \x00\x00\x00O\xa0\x00\x00$\x00\x00\x00p\xa0\x00\x00\x1f\x00\x00\x00\x95\xa0\x00\x00!\x00\x00\x00\xb5\xa0\x00\x002\x00\x00\x00\xd7\xa0\x00\x00\x10\x00\x00\x00\n\xa1\x00\x00\x18\x00\x00\x00\x1b\xa1\x00\x00\x12\x00\x00\x004\xa1\x00\x00\x01\x00\x00\x00G\xa1\x00\x00\x06\x00\x00\x00I\xa1\x00\x00\x1d\x00\x00\x00P\xa1\x00\x00\x1d\x00\x00\x00n\xa1\x00\x00\x1c\x00\x00\x00\x8c\xa1\x00\x00 \x00\x00\x00\xa9\xa1\x00\x00\x1d\x00\x00\x00\xca\xa1\x00\x00\x16\x00\x00\x00\xe8\xa1\x00\x00.\x00\x00\x00\xff\xa1\x00\x00M\x00\x00\x00.\xa2\x00\x00\x06\x00\x00\x00|\xa2\x00\x00+\x00\x00\x00\x83\xa2\x00\x00\x1b\x00\x00\x00\xaf\xa2\x00\x00&\x00\x00\x00\xcb\xa2\x00\x00#\x00\x00\x00\xf2\xa2\x00\x00,\x00\x00\x00\x16\xa3\x00\x00:\x00\x00\x00C\xa3\x00\x00/\x00\x00\x00~\xa3\x00\x00)\x00\x00\x00\xae\xa3\x00\x00&\x00\x00\x00\xd8\xa3\x00\x00\n\x00\x00\x00\xff\xa3\x00\x00\x17\x00\x00\x00\n\xa4\x00\x00\x1a\x00\x00\x00"\xa4\x00\x00$\x00\x00\x00=\xa4\x00\x00\x11\x00\x00\x00b\xa4\x00\x00\x07\x00\x00\x00t\xa4\x00\x00\x1f\x00\x00\x00|\xa4\x00\x00\x12\x00\x00\x00\x9c\xa4\x00\x00\x1d\x00\x00\x00\xaf\xa4\x00\x00\x13\x00\x00\x00\xcd\xa4\x00\x00\x17\x00\x00\x00\xe1\xa4\x00\x00\x0c\x00\x00\x00\xf9\xa4\x00\x00\x10\x00\x00\x00\x06\xa5\x00\x00!\x00\x00\x00\x17\xa5\x00\x00\x17\x00\x00\x009\xa5\x00\x00\x1d\x00\x00\x00Q\xa5\x00\x00\x07\x00\x00\x00o\xa5\x00\x00\x0b\x00\x00\x00w\xa5\x00\x00D\x00\x00\x00\x83\xa5\x00\x00\x06\x00\x00\x00\xc8\xa5\x00\x00\xc3\x00\x00\x00\xcf\xa5\x00\x004\x01\x00\x00\x93\xa6\x00\x00[\x00\x00\x00\xc8\xa7\x00\x00&\x00\x00\x00$\xa8\x00\x00\x03\x00\x00\x00K\xa8\x00\x00\x06\x00\x00\x00O\xa8\x00\x00\x07\x00\x00\x00V\xa8\x00\x00\x06\x00\x00\x00^\xa8\x00\x004\x00\x00\x00e\xa8\x00\x00\x1e\x00\x00\x00\x9a\xa8\x00\x00\x1e\x00\x00\x00\xb9\xa8\x00\x00\t\x00\x00\x00\xd8\xa8\x00\x00\x1f\x00\x00\x00\xe2\xa8\x00\x00\x18\x00\x00\x00\x02\xa9\x00\x00\x06\x00\x00\x00\x1b\xa9\x00\x00:\x02\x00\x00"\xa9\x00\x00\x8f\x00\x00\x00]\xab\x00\x00\x82\x00\x00\x00\xed\xab\x00\x00\x16\x00\x00\x00p\xac\x00\x00\x14\x00\x00\x00\x87\xac\x00\x00\xcc\x00\x00\x00\x9c\xac\x00\x00*\x00\x00\x00i\xad\x00\x00\x14\x00\x00\x00\x94\xad\x00\x00"\x00\x00\x00\xa9\xad\x00\x00"\x00\x00\x00\xcc\xad\x00\x00?\x00\x00\x00\xef\xad\x00\x00\x12\x00\x00\x00/\xae\x00\x00\x1f\x00\x00\x00B\xae\x00\x00#\x00\x00\x00b\xae\x00\x00\x07\x00\x00\x00\x86\xae\x00\x00"\x00\x00\x00\x8e\xae\x00\x00\n\x00\x00\x00\xb1\xae\x00\x00\n\x00\x00\x00\xbc\xae\x00\x00\x12\x00\x00\x00\xc7\xae\x00\x00=\x00\x00\x00\xda\xae\x00\x00\n\x00\x00\x00\x18\xaf\x00\x00@\x00\x00\x00#\xaf\x00\x00\x0b\x00\x00\x00d\xaf\x00\x003\x00\x00\x00p\xaf\x00\x009\x00\x00\x00\xa4\xaf\x00\x00\x07\x00\x00\x00\xde\xaf\x00\x001\x00\x00\x00\xe6\xaf\x00\x00i\x00\x00\x00\x18\xb0\x00\x00\x12\x00\x00\x00\x82\xb0\x00\x00\n\x00\x00\x00\x95\xb0\x00\x00\xa4\x00\x00\x00\xa0\xb0\x00\x00\x17\x00\x00\x00E\xb1\x00\x00e\x00\x00\x00]\xb1\x00\x00y\x00\x00\x00\xc3\xb1\x00\x00\x04\x00\x00\x00=\xb2\x00\x00\n\x00\x00\x00B\xb2\x00\x006\x00\x00\x00M\xb2\x00\x00\x0e\x00\x00\x00\x84\xb2\x00\x00\x11\x00\x00\x00\x93\xb2\x00\x00\x1a\x00\x00\x00\xa5\xb2\x00\x00\x15\x00\x00\x00\xc0\xb2\x00\x00\x19\x00\x00\x00\xd6\xb2\x00\x00(\x00\x00\x00\xf0\xb2\x00\x00\x19\x00\x00\x00\x19\xb3\x00\x00\x0c\x00\x00\x003\xb3\x00\x00\x16\x00\x00\x00@\xb3\x00\x00\x14\x00\x00\x00W\xb3\x00\x00\x05\x00\x00\x00l\xb3\x00\x00_\x00\x00\x00r\xb3\x00\x00\x15\x00\x00\x00\xd2\xb3\x00\x00\xf6\x00\x00\x00\xe8\xb3\x00\x00\x18\x00\x00\x00\xdf\xb4\x00\x00\r\x00\x00\x00\xf8\xb4\x00\x00\x15\x00\x00\x00\x06\xb5\x00\x00\x1d\x00\x00\x00\x1c\xb5\x00\x00\x1b\x00\x00\x00:\xb5\x00\x00H\x00\x00\x00V\xb5\x00\x00\x11\x00\x00\x00\x9f\xb5\x00\x00=\x00\x00\x00\xb1\xb5\x00\x00S\x00\x00\x00\xef\xb5\x00\x00\x92\x00\x00\x00C\xb6\x00\x00\x15\x00\x00\x00\xd6\xb6\x00\x00\x11\x00\x00\x00\xec\xb6\x00\x00\x14\x00\x00\x00\xfe\xb6\x00\x00\x12\x00\x00\x00\x13\xb7\x00\x00J\x00\x00\x00&\xb7\x00\x00\x15\x00\x00\x00q\xb7\x00\x00\x04\x00\x00\x00\x87\xb7\x00\x00O\x00\x00\x00\x8c\xb7\x00\x00V\x00\x00\x00\xdc\xb7\x00\x00"\x00\x00\x003\xb8\x00\x00r\x00\x00\x00V\xb8\x00\x00\x12\x00\x00\x00\xc9\xb8\x00\x00J\x00\x00\x00\xdc\xb8\x00\x00\x97\x00\x00\x00\'\xb9\x00\x00Q\x00\x00\x00\xbf\xb9\x00\x00\x0f\x00\x00\x00\x11\xba\x00\x00;\x00\x00\x00!\xba\x00\x00\r\x00\x00\x00]\xba\x00\x00\xc6\x00\x00\x00k\xba\x00\x00\x0b\x00\x00\x002\xbb\x00\x00\x0b\x00\x00\x00>\xbb\x00\x00\t\x00\x00\x00J\xbb\x00\x00#\x00\x00\x00T\xbb\x00\x00!\x00\x00\x00x\xbb\x00\x00\x14\x00\x00\x00\x9a\xbb\x00\x00\x13\x00\x00\x00\xaf\xbb\x00\x00 \x00\x00\x00\xc3\xbb\x00\x00\x14\x00\x00\x00\xe4\xbb\x00\x00-\x00\x00\x00\xf9\xbb\x00\x00-\x00\x00\x00\'\xbc\x00\x002\x00\x00\x00U\xbc\x00\x00+\x00\x00\x00\x88\xbc\x00\x00K\x00\x00\x00\xb4\xbc\x00\x00\x11\x00\x00\x00\x00\xbd\x00\x00\x1d\x00\x00\x00\x12\xbd\x00\x00:\x00\x00\x000\xbd\x00\x001\x00\x00\x00k\xbd\x00\x00\x92\x00\x00\x00\x9d\xbd\x00\x00N\x00\x00\x000\xbe\x00\x00\x10\x00\x00\x00\x7f\xbe\x00\x00\x15\x00\x00\x00\x90\xbe\x00\x00>\x00\x00\x00\xa6\xbe\x00\x00\x08\x00\x00\x00\xe5\xbe\x00\x00\x0c\x00\x00\x00\xee\xbe\x00\x00\x0e\x00\x00\x00\xfb\xbe\x00\x004\x00\x00\x00\n\xbf\x00\x00=\x00\x00\x00?\xbf\x00\x00\r\x00\x00\x00}\xbf\x00\x00z\x00\x00\x00\x8b\xbf\x00\x00\x9e\x00\x00\x00\x06\xc0\x00\x00P\x00\x00\x00\xa5\xc0\x00\x000\x00\x00\x00\xf6\xc0\x00\x00\x15\x00\x00\x00\'\xc1\x00\x00\x17\x00\x00\x00=\xc1\x00\x00\x17\x00\x00\x00U\xc1\x00\x00%\x00\x00\x00m\xc1\x00\x00\x05\x00\x00\x00\x93\xc1\x00\x00\x11\x00\x00\x00\x99\xc1\x00\x00\r\x00\x00\x00\xab\xc1\x00\x00\x07\x00\x00\x00\xb9\xc1\x00\x005\x00\x00\x00\xc1\xc1\x00\x00\x18\x00\x00\x00\xf7\xc1\x00\x00*\x00\x00\x00\x10\xc2\x00\x00\x15\x00\x00\x00;\xc2\x00\x00\x15\x00\x00\x00Q\xc2\x00\x00\x16\x00\x00\x00g\xc2\x00\x00q\x00\x00\x00~\xc2\x00\x00\x10\x00\x00\x00\xf0\xc2\x00\x00\x1a\x00\x00\x00\x01\xc3\x00\x00\x1c\x00\x00\x00\x1c\xc3\x00\x00\x12\x00\x00\x009\xc3\x00\x00\x1c\x00\x00\x00L\xc3\x00\x00\x95\x00\x00\x00i\xc3\x00\x00}\x00\x00\x00\xff\xc3\x00\x00]\x00\x00\x00}\xc4\x00\x002\x00\x00\x00\xdb\xc4\x00\x00@\x00\x00\x00\x0e\xc5\x00\x00v\x00\x00\x00O\xc5\x00\x00\x0c\x00\x00\x00\xc6\xc5\x00\x00\x15\x00\x00\x00\xd3\xc5\x00\x00\x15\x00\x00\x00\xe9\xc5\x00\x00\x1c\x00\x00\x00\xff\xc5\x00\x00\x1c\x01\x00\x00\x1c\xc6\x00\x00v\x00\x00\x009\xc7\x00\x00\x9f\x00\x00\x00\xb0\xc7\x00\x00\n\x01\x00\x00P\xc8\x00\x00]\x01\x00\x00[\xc9\x00\x00R\x00\x00\x00\xb9\xca\x00\x00\x8f\x01\x00\x00\x0c\xcb\x00\x00%\x00\x00\x00\x9c\xcc\x00\x00\x06\x00\x00\x00\xc2\xcc\x00\x00\x1f\x00\x00\x00\xc9\xcc\x00\x00\x18\x00\x00\x00\xe9\xcc\x00\x00\x0b\x00\x00\x00\x02\xcd\x00\x00(\x00\x00\x00\x0e\xcd\x00\x00\x07\x00\x00\x007\xcd\x00\x00\x10\x00\x00\x00?\xcd\x00\x00#\x00\x00\x00P\xcd\x00\x00\t\x00\x00\x00t\xcd\x00\x00\xab\x00\x00\x00~\xcd\x00\x00\x04\x00\x00\x00*\xce\x00\x00\t\x00\x00\x00/\xce\x00\x00=\x00\x00\x009\xce\x00\x00\x1f\x00\x00\x00w\xce\x00\x003\x00\x00\x00\x97\xce\x00\x00~\x00\x00\x00\xcb\xce\x00\x00l\x00\x00\x00J\xcf\x00\x00\x1a\x00\x00\x00\xb7\xcf\x00\x00\x1a\x00\x00\x00\xd2\xcf\x00\x00z\x00\x00\x00\xed\xcf\x00\x00\xb9\x00\x00\x00h\xd0\x00\x00.\x00\x00\x00"\xd1\x00\x00#\x00\x00\x00Q\xd1\x00\x00%\x00\x00\x00u\xd1\x00\x00\x99\x00\x00\x00\x9b\xd1\x00\x00\'\x00\x00\x005\xd2\x00\x00"\x00\x00\x00]\xd2\x00\x00^\x00\x00\x00\x80\xd2\x00\x00s\x00\x00\x00\xdf\xd2\x00\x00\x1f\x00\x00\x00S\xd3\x00\x00\x8f\x00\x00\x00s\xd3\x00\x005\x00\x00\x00\x03\xd4\x00\x00W\x00\x00\x009\xd4\x00\x00\x0b\x00\x00\x00\x91\xd4\x00\x00\x05\x00\x00\x00\x9d\xd4\x00\x00\x1f\x00\x00\x00\xa3\xd4\x00\x00\x06\x00\x00\x00\xc3\xd4\x00\x00=\x00\x00\x00\xca\xd4\x00\x00!\x00\x00\x00\x08\xd5\x00\x00,\x00\x00\x00*\xd5\x00\x00/\x00\x00\x00W\xd5\x00\x00$\x00\x00\x00\x87\xd5\x00\x00\x10\x00\x00\x00\xac\xd5\x00\x00\t\x00\x00\x00\xbd\xd5\x00\x00\x1b\x00\x00\x00\xc7\xd5\x00\x00\x0e\x00\x00\x00\xe3\xd5\x00\x00\x12\x00\x00\x00\xf2\xd5\x00\x00\x12\x00\x00\x00\x05\xd6\x00\x00\n\x00\x00\x00\x18\xd6\x00\x00m\x00\x00\x00#\xd6\x00\x00\x1d\x01\x00\x00\x91\xd6\x00\x00[\x00\x00\x00\xaf\xd7\x00\x00a\x00\x00\x00\x0b\xd8\x00\x00\x1b\x00\x00\x00m\xd8\x00\x00!\x00\x00\x00\x89\xd8\x00\x005\x00\x00\x00\xab\xd8\x00\x00&\x00\x00\x00\xe1\xd8\x00\x00\xe2\x00\x00\x00\x08\xd9\x00\x00B\x00\x00\x00\xeb\xd9\x00\x00\x1d\x00\x00\x00.\xda\x00\x00i\x00\x00\x00L\xda\x00\x00N\x00\x00\x00\xb6\xda\x00\x00\x1c\x00\x00\x00\x05\xdb\x00\x007\x00\x00\x00"\xdb\x00\x00\x08\x00\x00\x00Z\xdb\x00\x00\x19\x00\x00\x00c\xdb\x00\x00\x1b\x00\x00\x00}\xdb\x00\x00\x11\x00\x00\x00\x99\xdb\x00\x00\'\x00\x00\x00\xab\xdb\x00\x00=\x00\x00\x00\xd3\xdb\x00\x00q\x00\x00\x00\x11\xdc\x00\x00\x92\x00\x00\x00\x83\xdc\x00\x001\x00\x00\x00\x16\xdd\x00\x00R\x00\x00\x00H\xdd\x00\x00.\x00\x00\x00\x9b\xdd\x00\x00\xf3\x00\x00\x00\xca\xdd\x00\x00\n\x00\x00\x00\xbe\xde\x00\x00\t\x00\x00\x00\xc9\xde\x00\x00\x0e\x00\x00\x00\xd3\xde\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">libprs500</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00contains\x00libprs500\x00mybook.epub\x00Project-Id-Version: libprs500 0.4.17\nPOT-Creation-Date: 2008-04-04 09:07+PDT\nPO-Revision-Date: 2008-04-04 17:29+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\tBaen Datei erkannt. Analysiere erneut...\x00\tBook Designer Datei erkannt.\x00\tKonvertiere in BBeB...\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\tAnalysiere HTML...\x00\n%prog [options] ISBN\n\nUmschlagbild des Buches mit der angegebenen ISBN von LibraryThing.com abrufen\n\x00\n%prog [options] key\n\nRufe Metadaten der B\xc3\xbccher von isndb.com ab. Sie k\xc3\xb6nnen entweder die\nISBN oder den Titel und den Autor des Buches angeben. Wenn Sie Titel und Autor angeben,\nkann es sein, dass mehrere B\xc3\xbccher gefunden werden.\n\nkey steht f\xc3\xbcr den Konto-Schl\xc3\xbcssel, der nach der kostenfreien Registrierung bei isbndb.com erstellt werden kann.\n\n\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%%prog [options] ARG\n\n%%prog analysiert eine Online-Quelle von Artikeln, z.B. einen RSS oder ATOM Feed und \nruft die Artikelinhalte hierarchisch organisiert ab.\n\nARG kann eines der folgenden sein:\n\ndateiname - %%prog versucht ein Rezept aus der Datei zu laden\n\ninstalliertes Rezept - %%prog l\xc3\xa4dt ein installiertes Rezept und benutzt es, um den Feed abzurufen. Z.B. f\xc3\xbcr Newsweek or "The BBC" or "The New York Times"\n\nRezept als eine Reihung - %%prog l\xc3\xa4dt das Rezept direkt nach der angegebenen Reihung.\n\nVerf\xc3\xbcgbare installierte Rezepte:\n%s\n\x00%prog URL\n\nURL ist z.B. http://google.com\x00%prog [options] datei.lrs\nErstellt eine LRF Datei aus einer LRS Datei.\x00%prog [options] dateiname.lrf\n\n\nZeigt/ver\xc3\xa4ndert die Metadaten in einer LRF Datei.\n\n\x00%prog [options] dateiname.pdf\n\n\n%prog konvertiert dateiname.pdf in dateiname.lrf\x00%prog [options] dateiname.rtf\n\n\n%prog konvertiert dateiname.rtf in dateiname.lrf\x00%prog [options] dateiname.txt\n\n\n%prog konvertiert dateiname.txt in dateiname.lrf\x00%prog [options] dateiname.mobi\x00%prog dateiname.lrf\nKonvertiert eine LRF Datei in eine LRS (XML UTF-8 kodierte) Datei\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00&Zugriffsschl\xc3\xbcssel:\x00Feed &anf\xc3\xbcgen\x00Etikett &anf\xc3\xbcgen:\x00&Autor:\x00&Unterer Rand:\x00Datenbank verdi&chten\x00Kapitel Ermittlung &deaktivieren\x00&Feed Titel:\x00Seitenumbruch vor Element &erzwingen:\x00&Kopfzeilenformat:\x00&Linker Rand:\x00Speicherort der B\xc3\xbccherdatenbank (&library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace:\x00\xc3\x84<ester Artikel:\x00&Seitenumbruch vor Element:\x00&Passwort:\x00&Vorbearbeiten:\x00&Priorit\xc3\xa4t der Konvertierungsauftr\xc3\xa4ge:\x00&Profil:\x00&Herausgeber:\x00&Bewertung:\x00&Regul\xc3\xa4rer Ausdruck:\x00Rezept entfe&rnen\x00Etiketten entfe&rnen:\x00&Rechter Rand:\x00&Suche:\x00&Serien:\x00&Serif:\x00Kopfzeile an&zeigen\x00Pa&sswort anzeigen\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&Titel:\x00&Oberer Rand:\x00Ben&utzername:\x00&Wortabstand:\x00...\x00<b>\xc3\x84nderungen treten erst nach einem Neustart in Kraft.\x00<b>Konnte kein Umschlagbild abrufen.</b><br/>\x00<b>Keine Treffer</b> f\xc3\xbcr die Suchworte <i>%s</i> gefunden.\x00<br>Muss ein Verzeichnis sein.\x00<font color="gray">Keine Hilfe verf\xc3\xbcgbar</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hilfe gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">libprs500</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML Dateien von Book Designer</li>\x00<li><b>pdftohtml</b> - HTML Dateien, die mit dem Programm pdftohtml erstellt wurden</li>\x00<ol><li><b>baen</b> - B\xc3\xbccher von BAEN Publishers</li>\x00<p>Es existiert bereits eine ung\xc3\xbcltige Datenbank in %s, bitte l\xc3\xb6schen Sie diese, bevor sie die bestehende Datenbank verschieben.<br>Fehler: %s\x00<p>Es existieren bereits B\xc3\xbccher mit dem selben Titel in der Datenbank. Sollen die folgenden B\xc3\xbccher trotzdem hinzugef\xc3\xbcgt werden?<ul>\x00<p>Es k\xc3\xb6nnen keine B\xc3\xbccher mehr auf das Ger\xc3\xa4t geladen werden, da der Ger\xc3\xa4tespeicher voll ist \x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr <b>LibraryThing.com</b> an. <br/>Insofern Sie dies nicht besitzen, k\xc3\xb6nnen Sie sich kostenlos <a href=\'http://www.librarything.com\'>anmelden</a>! </p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Es trat ein Fehler beim Lesen dieser Datei auf: <br /><b>\x00<span style="color:red; font-weight:bold">Letzte Version: <a href="%s">%s</a></span>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Zuge&wiesene Etiketten\x00&Verf\xc3\xbcgbare Etiketten\x00Aktive Auftr\xc3\xa4ge\x00&Etiketten hinzuf\xc3\xbcgen: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00Ein Verzeichnis zur Liste der h\xc3\xa4ufig genutzten Verzeichnisse hinzuf\xc3\xbcgen\x00Kopfzeile mit Titel und Autornamen f\xc3\xbcr alle Seiten einf\xc3\xbcgen. \x00Ein neues Format f\xc3\xbcr dieses Buch zur Datenbank hinzuf\xc3\xbcgen\x00B\xc3\xbccher hinzuf\xc3\xbcgen\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Etikett zu den verf\xc3\xbcgbaren Etiketten hinzuf\xc3\xbcgen und dem aktuellen Buch zuweisen\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Aussehen der erstellten LRF Datei durch die Angabe von Schriftgr\xc3\xb6\xc3\x9fen und Wortabst\xc3\xa4nden angleichen.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Ein Fehler trat w\xc3\xa4hrend der Bearbeitung einer Tabelle auf: %s. Tabellenformat wird ignoriert.\x00Irgendein\x00Jeder Link, der diesem Regul\xc3\xa4ren Ausdruck entspricht, wird ignoriert. Diese Option kann mehrmals angegeben werden, somit werden Links ignoriert, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden keine Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben sind, wird --filter-regexp zuerst angewendet.\x00Etikett dem aktuellen Buch zuweisen\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00S&ortierung nach Autor:\x00So&rtierung nach Autor:\x00Autor(en)\x00Autoren:\x00Verf\xc3\xbcgbare Formate\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Zur\xc3\xbcck\x00Schlechte Tabelle:\n%s\x00Ausgangsschrift&gr\xc3\xb6\xc3\x9fe:\x00Grundverzeichnis, in das die URL gespeichert wird. Voreinstellung ist %default \x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\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\x00Konnte Link %s nicht zu TOC hinzuf\xc3\xbcgen\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\x00Lesen nicht m\xc3\xb6glich von: %s\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\x00Verdichte Datenbank. Das kann dauern...\x00Verdichte Datenbank...\x00Konfiguration\x00Konfigurieren\x00Viewer konfigurieren \x00Konvertiere %s in LRF\x00In eBooks umwandeln\x00Konvertierung von LRS in LRS, hilfreich bei der Fehlersuche.\x00Einzeln konvertieren\x00Zu LRF konvertieren\x00Zu LRS 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\x00Konnte Bild nicht verarbeiten: %s\n%s\x00Konnte Umschlagbild nicht lesen: %s\x00Umschlagbild gespeichert unter\x00Erstellt von \x00Erstelle XML...\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\x00Ger\xc3\xa4tedatenbank ist besch\xc3\xa4digt\x00Lade CSS Stylesheets nicht herunter.\x00Was wei\xc3\x9f ich, f\xc3\xbcr was das ist\x00Fortschrittsbalken nicht anzeigen\x00Doppelklick erm\xc3\xb6glicht <b>Bearbeitung</b><br><br>\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:\x00Fehlschlag bei der Analysierung von %s %s\x00Verarbeitung der OPF Datei schlug fehl\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Abrufen\x00Umschlagbild vom Server abrufen\x00Meta-Daten abrufen\x00Meta-Daten vom Server abrufen\x00Nachrichten abrufen\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Meta-Daten abrufen f\xc3\xbcr <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Feineinstellung der Erkennung von Kapitel- und Absatz\xc3\xbcberschriften.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Seitenumbruch vor einem Element mit dem angegebenen Attribut erzwingen. Das Format dieser Einstellung ist tagname regexp,attribute name,attribute value regexp. Um zum Beispiel alle "heading" Elemente, die das Attribut class="chapter" anzupassen, verwenden Sie "h\\d,class,chapter". Voreinstellung ist %default\x00Seitenumbruch erzwingen vor Elementen, deren Namen diesem regul\xc3\xa4ren Ausdruck entsprechen. \x00Seitenumbruch vor &Attribut erzwingen:\x00Art\x00Format\x00Formate\x00Weiter\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00H\xc3\xa4ufig benutzte Verzeichnisse\x00Feeds der Index Seite erhalten\x00Kopfzeile\x00Hilfe f\xc3\xbcr das jeweilige Objekt\x00Mit Trennstrich versehen\x00IS&BN:\x00Wenn html2lrf keine Seitenumbr\xc3\xbcche in der HTML Datei und keine Kapitel-\xc3\x9cberschriften finden kann, f\xc3\xbcgt es automatisch Seitenumbr\xc3\xbcche vor Elementen ein, deren Namen mit diesem regul\xc3\xa4ren Ausdruck entsprechen. Voreinstellung ist %default. Sie k\xc3\xb6nnen dies deaktivieren indem sie den regul\xc3\xa4ren Ausdruck "$" verwenden. Der Zweck dieser Einstellung ist der Versuch sicherzustellen, dass keine extrem langen Seiten entstehen, da dies das Umbl\xc3\xa4ttern der in der LRF Datei verlangsamt. Diese Einstellung wird ignoriert, wenn die aktuelle Seite nur wenige Elemente enth\xc3\xa4lt.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Falls die Quelldatei ein Umschlagbild enth\xc3\xa4lt, das Umschlagbild der Quelldatei benutzen, anstatt des angegebenen Umschlagbildes. \x00Farben nicht bea&chten\x00&Tabellen ignorieren\x00Schriftgr\xc3\xb6\xc3\x9fe um 2 * FONT_DELTA Punkt und Zeilenabstand um FONT_DELTA Punkt vergr\xc3\xb6\xc3\x9fern. FONT_DELTA kann ein Bruchteil sein. Falls FONT_DELTA negativ angegeben wird, wird die Schriftgr\xc3\xb6\xc3\x9fe verkleinert.\x00&Leerzeilen zwischen Paragraphen einf\xc3\xbcgen\x00Ung\xc3\xbcltige Datenbank\x00Ortsangabe der Datenbank ung\xc3\xbcltig\x00Ortsangabe der Datenbank ung\xc3\xbcltig\x00Ortsangabe der Datenbank ung\xc3\xbcltig.<br>Speichern nicht m\xc3\xb6glich\x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Auftrag\x00Auftrag durch Benutzer abgebrochen\x00Auftr\xc3\xa4ge:\x00LRF Viewer\x00LRS gespeichert in\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.\x00Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt werden. Voreinstellung %default\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:\x00Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. Voreinstellung ist %default s\x00Mindest-Zeileneinzug von Paragraphen (Zeileneinzug der ersten Zeile eines Paragraphen) in Punkt. Voreinstellung: %default\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\x00Keine Datei zur Konvertierung angegeben.\x00Kein Dateiname angegeben.\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\x00OEB eBook erstellt in\x00Nur Links, die diesem Regul\xc3\xa4ren Ausdruck entsprechen, werden verfolgt. Diese Option kann mehrmals angegeben werden, somit werden Links verfolgt, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden alle Links verfolgt.\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)\x00Ausgabe LRS Datei\x00Ausgabeverzeichnis. Voreinstellung ist akutelles Verzeichnis.\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\x00Analysieren LRF...\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.\x00Pfad zur Zieldatei\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\x00Gebe erstellte HTML auf stdout aus und beende das Programm.\x00Verarbeite %s\x00Profil des Zielger\xc3\xa4ts f\xc3\xbcr das diese LRF Datei erstellt wird. Das Profil legt unter anderem die Aufl\xc3\xb6sung und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4tes fest. Voreinstellung: %s Unterst\xc3\xbctzte Profile:\x00Fortschritt\x00Herausgeber\x00Bewertung\x00Bewertung dieses Buches: 0-5 Sterne\x00Original MOBI HTML gespeichert in\x00Reader\n%s verf\xc3\xbcgbar\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Ein Verzeichnis von der Liste der h\xc3\xa4ufig genutzten Verzeichnisse entfernen\x00B\xc3\xbccher entfernen\x00Feed aus dem Rezept entfernen\x00Markierte Formate dieses Buches aus der Datenbank l\xc3\xb6schen\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00HTML Tabellen als Textbl\xc3\xb6cke rendern und nicht als Tabellen. Dies ist notwendig, wenn die HTML Datei sehr gro\xc3\x9fe oder komplexe Tabellen enth\xc3\xa4lt.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Quick Search l\xc3\xb6schen\x00Rechter Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Laufzeit\x00S&ans-serif:\x00Auf HD sichern\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Liste der B\xc3\xbccher nach Titel oder Autor durchsuchen<br><br>Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00Liste der B\xc3\xbccher nach Titel, Autor, Herausgeber, Etiketten und Bemerkungen durchsuchen<br><br>Durch Leerzeichen getrennte W\xc3\xb6rter werden mit "AND" verkn\xc3\xbcpft\x00W\xc3\xa4hlen Sie aus der unten stehenden Liste das Buch, das Ihrer Ausgabe entspricht\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00An Reader \xc3\xbcbertragen\x00An Hauptspeicher senden\x00An Speicherkarte senden\x00Paragraphen durch Leerzeilen trennen.\x00Serie\x00Index der Serien.\x00Serien Index:\x00Serien:\x00Server-Fehler. Bitte versuchen Sie es sp\xc3\xa4ter wieder.\x00Geben Sie die Buch ID an\x00Voreinstellungen zur Konvertierung w\xc3\xa4hlen\x00Sortierung nach Autor\x00Sortierung nach Titel\x00Geben Sie den Autor an\x00Geben Sie den Autor an. Mehrere Autoren sollten durch Kommata getrennt angegeben werden. Voreinstellung: %default\x00Gebe Autoren ein\x00Geben Sie den Buchtitel an\x00Geben Sie eine Kategorie an.\x00Gebe Kommentar ein\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.\x00Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche.\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.\x00Geben Sie die Zeichenkodierung der Ausgangsdatei an. Sollte die ausgegebene LRF Datei seltsame Zeichen enthalten, \xc3\xa4ndern Sie diese Einstellung. Eine gebr\xc3\xa4uchliche Kodierung von Dateien, die von Windows Computern stammen, ist cp-1252. Eine andere gebr\xc3\xa4uchliche Alternative ist utf-8. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Seiteneinstellungen wie R\xc3\xa4nder und die Bildschirmgr\xc3\xb6\xc3\x9fe des Zielger\xc3\xa4ts angeben.\x00Geben Sie Truetype Schriftarten f\xc3\xbcr serife, serifenlose und nichtproportionale Schriften an. Diese Schriften werden in die LRF Datei eingebettet. Bitte beachten Sie, dass individuell eingebettete Schriften das Umbl\xc3\xa4ttern verlangsamen. Jede Schriftartfamilie wird folgenderma\xc3\x9fen angegeben: "Pfad zum Verzeichnis der Schriften, Schriftartfamilie" Zum Beispiel: --serif-family "%s, Times New Roman"\n\x00Starte Download von [%d Thread(s)]...\x00Status\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00&Etiketten:\x00Tabelle enth\xc3\xa4lt Zelle, die zu gro\xc3\x9f ist\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 ISBN des Buches, f\xc3\xbcr das Sie Metadaten abrufen m\xc3\xb6chten.\x00Der Autor des gesuchten Buches.\x00Die Kategorie dieses Buches ... (Z. B.: Geschichte)\x00Zeichenkodierung f\xc3\xbcr Webseiten, die zu laden versucht werden. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00H\xc3\xb6chstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus <a href> Tags zu. Voreinstellung ist %default\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 Herausgeber des gesuchten Buches.\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.\x00Der Titel des gesuchten Buches.\x00Es trat ein Fehler in der Kommunikation mit dem Ger\xc3\xa4t auf. Bitte entfernen und schlie\xc3\x9fen Sie das Ger\xc3\xa4t wieder an und - oder starten Sie neu.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: %default s\x00Zeitstempel\x00Titel\x00Auf Titel basierende Ermittlung\x00Titel:\x00Oberer Rand der Seite. Die Voreinstellung ist %default Pixel.\x00Versuche Umschlagbild zu laden...\x00Konnte Bild %s nicht verarbeiten. Fehler: %s\x00Konnte verschachteltes PNG %s nicht verarbeiten\x00Etikett vom aktuellen Buch entfernen\x00Nicht verf\xc3\xbcgbar\x00Unbekannt\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Benutzung:\x00Benutzung: %prog [options] dateiname.epub\n \n \n%prog konvertiert dateiname.epub in dateiname.lrf\x00Benutzung: %prog [options] dateiname.html\n\n\n%prog konvertiert dateiname.html in dateiname.lrf. \n%prog folgt allen Hyperlinks in dateiname.html, die rekursiv auf \nlokale Dateien verweisen. Somit k\xc3\xb6nnen Sie es verwenden,\num einen ganzen Verzeichnisbaum von HTML Dateien zu konvertieren.\x00Benutzung: %prog [options] dateiname.lit\n\n\n%prog konvertiert dateiname.lit in dateiname.lrf\x00Benutzung: %prog [options] dateiname.mobi|prc\n\n\n%prog konvertiert dateiname.mobi in dateiname.lrf\x00Benutzung: %s dateiname.lit\x00Benutzung: pdf-meta dateiname.pdf\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.\x00Mit mehr W\xc3\xb6rtern fortfahren\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Vorschau\x00Spezielles Format ansehen\x00Abwarten und Tee trinken...\x00Bei der Arbeit...\x00Vorverarbeitetes HTML gespeichert unter\x00Sie haben nicht die n\xc3\xb6tigen Rechte, um diese Datei zu lesen:\x00Sichern Sie die Website %s zuerst als HTML Datei und benutzen Sie dann html2lrf mit der gespeicherten HTML Datei.\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.\x00any2lrf [options] dateiname\n\nKonvertiert verschiedene eBook Formate in LRF Dateien. Unterst\xc3\xbctzte Formate:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC und PDF. any2lrf verarbeitet auch RAR oder\nZIP Archive, indem es nach einem eBook im Archiv sucht.\n\x00beinhaltet\x00libprs500\x00dateiname.epub\x00', 'it': '\xde\x12\x04\x95\x00\x00\x00\x00\xee\x01\x00\x00\x1c\x00\x00\x00\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x1e\x00\x00"\x00\x00\x00\xfd\x1e\x00\x00\x1d\x00\x00\x00 \x1f\x00\x00\x16\x00\x00\x00>\x1f\x00\x00\x0e\x00\x00\x00U\x1f\x00\x00\x10\x00\x00\x00d\x1f\x00\x00a\x00\x00\x00u\x1f\x00\x00+\x01\x00\x00\xd7\x1f\x00\x00!\x00\x00\x00\x03!\x00\x00\x05\x00\x00\x00%!\x00\x00\x06\x00\x00\x00+!\x00\x00\x17\x00\x00\x002!\x00\x00\x0b\x00\x00\x00J!\x00\x00\x04\x00\x00\x00V!\x00\x00\x03\x00\x00\x00[!\x00\x00\x08\x00\x00\x00_!\x00\x00\x06\x00\x00\x00h!\x00\x00\xfd\x01\x00\x00o!\x00\x005\x00\x00\x00m#\x00\x00>\x00\x00\x00\xa3#\x00\x00E\x00\x00\x00\xe2#\x00\x00D\x00\x00\x00($\x00\x00D\x00\x00\x00m$\x00\x00D\x00\x00\x00\xb2$\x00\x00\x1c\x00\x00\x00\xf7$\x00\x00G\x00\x00\x00\x14%\x00\x00\x1c\x00\x00\x00\\%\x00\x00\x0e\x00\x00\x00y%\x00\x00\x0c\x00\x00\x00\x88%\x00\x00\t\x00\x00\x00\x95%\x00\x00\t\x00\x00\x00\x9f%\x00\x00\x0c\x00\x00\x00\xa9%\x00\x00\x0f\x00\x00\x00\xb6%\x00\x00\x11\x00\x00\x00\xc6%\x00\x00\x1a\x00\x00\x00\xd8%\x00\x00\x0c\x00\x00\x00\xf3%\x00\x00\x1d\x00\x00\x00\x00&\x00\x00\x0f\x00\x00\x00\x1e&\x00\x00\r\x00\x00\x00.&\x00\x00)\x00\x00\x00<&\x00\x00"\x00\x00\x00f&\x00\x00\x18\x00\x00\x00\x89&\x00\x00\x0b\x00\x00\x00\xa2&\x00\x00\x10\x00\x00\x00\xae&\x00\x00\x17\x00\x00\x00\xbf&\x00\x00\n\x00\x00\x00\xd7&\x00\x00\x0c\x00\x00\x00\xe2&\x00\x00\x1e\x00\x00\x00\xef&\x00\x00\t\x00\x00\x00\x0e\'\x00\x00\x0c\x00\x00\x00\x18\'\x00\x00\x08\x00\x00\x00%\'\x00\x00\x14\x00\x00\x00.\'\x00\x00\x0e\x00\x00\x00C\'\x00\x00\r\x00\x00\x00R\'\x00\x00\x0e\x00\x00\x00`\'\x00\x00\x08\x00\x00\x00o\'\x00\x00\x08\x00\x00\x00x\'\x00\x00\x07\x00\x00\x00\x81\'\x00\x00\x0c\x00\x00\x00\x89\'\x00\x00\x0e\x00\x00\x00\x96\'\x00\x00\x12\x00\x00\x00\xa5\'\x00\x00\x05\x00\x00\x00\xb8\'\x00\x00\x08\x00\x00\x00\xbe\'\x00\x00\x0c\x00\x00\x00\xc7\'\x00\x00\n\x00\x00\x00\xd4\'\x00\x00\x0e\x00\x00\x00\xdf\'\x00\x00\x03\x00\x00\x00\xee\'\x00\x001\x00\x00\x00\xf2\'\x00\x00"\x00\x00\x00$(\x00\x00=\x00\x00\x00G(\x00\x00\x18\x00\x00\x00\x85(\x00\x00+\x00\x00\x00\x9e(\x00\x00\x00\x02\x00\x00\xca(\x00\x00\xa3\x01\x00\x00\xcb*\x00\x00\x82\x02\x00\x00o,\x00\x00>\x00\x00\x00\xf2.\x00\x00S\x00\x00\x001/\x00\x005\x00\x00\x00\x85/\x00\x00p\x00\x00\x00\xbb/\x00\x00a\x00\x00\x00,0\x00\x00G\x00\x00\x00\x8e0\x00\x00(\x00\x00\x00\xd60\x00\x00\xa7\x00\x00\x00\xff0\x00\x00W\x00\x00\x00\xa71\x00\x00\x96\x00\x00\x00\xff1\x00\x00=\x01\x00\x00\x962\x00\x002\x00\x00\x00\xd43\x00\x00T\x00\x00\x00\x074\x00\x00\x01\x00\x00\x00\\4\x00\x00C\x00\x00\x00^4\x00\x00X\x00\x00\x00\xa24\x00\x00\r\x00\x00\x00\xfb4\x00\x00\x0f\x00\x00\x00\t5\x00\x00\x0b\x00\x00\x00\x195\x00\x00\x0b\x00\x00\x00%5\x00\x00\x18\x00\x00\x0015\x00\x007\x00\x00\x00J5\x00\x004\x00\x00\x00\x825\x00\x00.\x00\x00\x00\xb75\x00\x00\t\x00\x00\x00\xe65\x00\x00!\x00\x00\x00\xf05\x00\x00b\x00\x00\x00\x126\x00\x00o\x00\x00\x00u6\x00\x00\x16\x00\x00\x00\xe56\x00\x00\x12\x00\x00\x00\xfc6\x00\x006\x00\x00\x00\x0f7\x00\x00\x12\x00\x00\x00F7\x00\x00m\x00\x00\x00Y7\x00\x00\x08\x00\x00\x00\xc77\x00\x00\x0f\x00\x00\x00\xd07\x00\x00\x0f\x00\x00\x00\xe07\x00\x00\x0e\x00\x00\x00\xf07\x00\x00\x05\x00\x00\x00\xff7\x00\x00F\x00\x00\x00\x058\x00\x00\x03\x00\x00\x00L8\x00\x005\x01\x00\x00P8\x00\x00\x19\x00\x00\x00\x869\x00\x00\x1b\x00\x00\x00\xa09\x00\x00\x16\x00\x00\x00\xbc9\x00\x00\x06\x00\x00\x00\xd39\x00\x00\x0e\x00\x00\x00\xda9\x00\x00\r\x00\x00\x00\xe99\x00\x00\t\x00\x00\x00\xf79\x00\x00\x08\x00\x00\x00\x01:\x00\x00\x11\x00\x00\x00\n:\x00\x00\x16\x00\x00\x00\x1c:\x00\x00\x04\x00\x00\x003:\x00\x00\r\x00\x00\x008:\x00\x00\x10\x00\x00\x00F:\x00\x00;\x00\x00\x00W:\x00\x00\x05\x00\x00\x00\x93:\x00\x00!\x00\x00\x00\x99:\x00\x00\x10\x00\x00\x00\xbb:\x00\x00\x1b\x00\x00\x00\xcc:\x00\x00\x05\x00\x00\x00\xe8:\x00\x00(\x00\x00\x00\xee:\x00\x00\n\x00\x00\x00\x17;\x00\x00.\x00\x00\x00";\x00\x005\x00\x00\x00Q;\x00\x00$\x00\x00\x00\x87;\x00\x00\x0c\x00\x00\x00\xac;\x00\x00\x1a\x00\x00\x00\xb9;\x00\x00\x19\x00\x00\x00\xd4;\x00\x00\x10\x00\x00\x00\xee;\x00\x00.\x00\x00\x00\xff;\x00\x00\x0e\x00\x00\x00.<\x00\x00\x0e\x00\x00\x00=<\x00\x007\x00\x00\x00L<\x00\x00\x14\x00\x00\x00\x84<\x00\x00\x12\x00\x00\x00\x99<\x00\x00#\x00\x00\x00\xac<\x00\x00\x0f\x00\x00\x00\xd0<\x00\x00Z\x00\x00\x00\xe0<\x00\x00\x19\x00\x00\x00;=\x00\x00\x0b\x00\x00\x00U=\x00\x00\x14\x00\x00\x00a=\x00\x00\x13\x00\x00\x00v=\x00\x00\x0b\x00\x00\x00\x8a=\x00\x00\x11\x00\x00\x00\x96=\x00\x00\x08\x00\x00\x00\xa8=\x00\x00\x14\x00\x00\x00\xb1=\x00\x00\x0f\x00\x00\x00\xc6=\x00\x00R\x00\x00\x00\xd6=\x00\x00!\x00\x00\x00)>\x00\x00\x1d\x00\x00\x00K>\x00\x00H\x00\x00\x00i>\x00\x00\x11\x00\x00\x00\xb2>\x00\x00\r\x00\x00\x00\xc4>\x00\x00%\x00\x00\x00\xd2>\x00\x00\x19\x00\x00\x00\xf8>\x00\x00!\x00\x00\x00\x12?\x00\x007\x00\x00\x004?\x00\x00\x08\x00\x00\x00l?\x00\x00+\x00\x00\x00u?\x00\x00\r\x00\x00\x00\xa1?\x00\x00\r\x00\x00\x00\xaf?\x00\x00\t\x00\x00\x00\xbd?\x00\x00\x10\x00\x00\x00\xc7?\x00\x00\x11\x00\x00\x00\xd8?\x00\x00\x0f\x00\x00\x00\xea?\x00\x00)\x00\x00\x00\xfa?\x00\x00\x14\x00\x00\x00$@\x00\x00\x0e\x00\x00\x009@\x00\x00\x0e\x00\x00\x00H@\x00\x00\x1c\x00\x00\x00W@\x00\x00;\x00\x00\x00t@\x00\x00\x15\x00\x00\x00\xb0@\x00\x00R\x00\x00\x00\xc6@\x00\x00\x17\x00\x00\x00\x19A\x00\x00\x18\x00\x00\x001A\x00\x00\x1e\x00\x00\x00JA\x00\x00\x1e\x00\x00\x00iA\x00\x00\x0e\x00\x00\x00\x88A\x00\x00\x0b\x00\x00\x00\x97A\x00\x00\x0f\x00\x00\x00\xa3A\x00\x00\x13\x00\x00\x00\xb3A\x00\x00\x04\x00\x00\x00\xc7A\x00\x00\x19\x00\x00\x00\xccA\x00\x00\x03\x00\x00\x00\xe6A\x00\x00h\x00\x00\x00\xeaA\x00\x00\x0e\x00\x00\x00SB\x00\x00\x19\x00\x00\x00bB\x00\x00 \x00\x00\x00|B\x00\x00\x1b\x00\x00\x00\x9dB\x00\x00\x1a\x00\x00\x00\xb9B\x00\x00&\x00\x00\x00\xd4B\x00\x00\x11\x00\x00\x00\xfbB\x00\x00\x19\x00\x00\x00\rC\x00\x00\x11\x00\x00\x00\'C\x00\x00\x01\x00\x00\x009C\x00\x00\x05\x00\x00\x00;C\x00\x00\x15\x00\x00\x00AC\x00\x00\x15\x00\x00\x00WC\x00\x00\x15\x00\x00\x00mC\x00\x00\x15\x00\x00\x00\x83C\x00\x00\x1a\x00\x00\x00\x99C\x00\x00\x0e\x00\x00\x00\xb4C\x00\x00\x1f\x00\x00\x00\xc3C\x00\x00C\x00\x00\x00\xe3C\x00\x00\x05\x00\x00\x00\'D\x00\x00\x1f\x00\x00\x00-D\x00\x00\x12\x00\x00\x00MD\x00\x00\x17\x00\x00\x00`D\x00\x00\x1f\x00\x00\x00xD\x00\x00\'\x00\x00\x00\x98D\x00\x003\x00\x00\x00\xc0D\x00\x00*\x00\x00\x00\xf4D\x00\x00\x1a\x00\x00\x00\x1fE\x00\x00\x1a\x00\x00\x00:E\x00\x00\n\x00\x00\x00UE\x00\x00\x14\x00\x00\x00`E\x00\x00\x16\x00\x00\x00uE\x00\x00\x16\x00\x00\x00\x8cE\x00\x00\x0f\x00\x00\x00\xa3E\x00\x00\x05\x00\x00\x00\xb3E\x00\x00\x1d\x00\x00\x00\xb9E\x00\x00\x0e\x00\x00\x00\xd7E\x00\x00\x1a\x00\x00\x00\xe6E\x00\x00\n\x00\x00\x00\x01F\x00\x00\x10\x00\x00\x00\x0cF\x00\x00\r\x00\x00\x00\x1dF\x00\x00\x11\x00\x00\x00+F\x00\x00\x1f\x00\x00\x00=F\x00\x00\x13\x00\x00\x00]F\x00\x00\x1b\x00\x00\x00qF\x00\x00\x05\x00\x00\x00\x8dF\x00\x00\x0b\x00\x00\x00\x93F\x00\x008\x00\x00\x00\x9fF\x00\x00\x08\x00\x00\x00\xd8F\x00\x00\x8a\x00\x00\x00\xe1F\x00\x00\x1d\x01\x00\x00lG\x00\x00J\x00\x00\x00\x8aH\x00\x00#\x00\x00\x00\xd5H\x00\x00\x04\x00\x00\x00\xf9H\x00\x00\x06\x00\x00\x00\xfeH\x00\x00\x07\x00\x00\x00\x05I\x00\x00\x07\x00\x00\x00\rI\x00\x00\'\x00\x00\x00\x15I\x00\x00\x1b\x00\x00\x00=I\x00\x00\x19\x00\x00\x00YI\x00\x00\x06\x00\x00\x00sI\x00\x00\x0c\x00\x00\x00zI\x00\x00\t\x00\x00\x00\x87I\x00\x00\x06\x00\x00\x00\x91I\x00\x00\xdc\x01\x00\x00\x98I\x00\x00n\x00\x00\x00uK\x00\x00a\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00FL\x00\x00\x0e\x00\x00\x00UL\x00\x00\xa8\x00\x00\x00dL\x00\x00&\x00\x00\x00\rM\x00\x00\x10\x00\x00\x004M\x00\x00\x19\x00\x00\x00EM\x00\x00\x1a\x00\x00\x00_M\x00\x00.\x00\x00\x00zM\x00\x00\r\x00\x00\x00\xa9M\x00\x00\x1a\x00\x00\x00\xb7M\x00\x00\x1e\x00\x00\x00\xd2M\x00\x00\x03\x00\x00\x00\xf1M\x00\x00\x12\x00\x00\x00\xf5M\x00\x00\x05\x00\x00\x00\x08N\x00\x00\n\x00\x00\x00\x0eN\x00\x00\x0f\x00\x00\x00\x19N\x00\x00,\x00\x00\x00)N\x00\x00\x07\x00\x00\x00VN\x00\x00-\x00\x00\x00^N\x00\x00\x0b\x00\x00\x00\x8cN\x00\x00$\x00\x00\x00\x98N\x00\x00$\x00\x00\x00\xbdN\x00\x00\x07\x00\x00\x00\xe2N\x00\x000\x00\x00\x00\xeaN\x00\x00S\x00\x00\x00\x1bO\x00\x00\x10\x00\x00\x00oO\x00\x00\x08\x00\x00\x00\x80O\x00\x00y\x00\x00\x00\x89O\x00\x00\x10\x00\x00\x00\x03P\x00\x00N\x00\x00\x00\x14P\x00\x00`\x00\x00\x00cP\x00\x00\x04\x00\x00\x00\xc4P\x00\x00\x06\x00\x00\x00\xc9P\x00\x00"\x00\x00\x00\xd0P\x00\x00\t\x00\x00\x00\xf3P\x00\x00\n\x00\x00\x00\xfdP\x00\x00\x14\x00\x00\x00\x08Q\x00\x00\x10\x00\x00\x00\x1dQ\x00\x00\x11\x00\x00\x00.Q\x00\x00\x1d\x00\x00\x00@Q\x00\x00\x16\x00\x00\x00^Q\x00\x00\x08\x00\x00\x00uQ\x00\x00\x10\x00\x00\x00~Q\x00\x00\x12\x00\x00\x00\x8fQ\x00\x00\x04\x00\x00\x00\xa2Q\x00\x00^\x00\x00\x00\xa7Q\x00\x00\x14\x00\x00\x00\x06R\x00\x00\xdc\x00\x00\x00\x1bR\x00\x00\x0f\x00\x00\x00\xf8R\x00\x00\n\x00\x00\x00\x08S\x00\x00\x07\x00\x00\x00\x13S\x00\x00-\x00\x00\x00\x1bS\x00\x00+\x00\x00\x00IS\x00\x00F\x00\x00\x00uS\x00\x00\x0f\x00\x00\x00\xbcS\x00\x000\x00\x00\x00\xccS\x00\x008\x00\x00\x00\xfdS\x00\x00s\x00\x00\x006T\x00\x00\x0f\x00\x00\x00\xaaT\x00\x00\n\x00\x00\x00\xbaT\x00\x00\x10\x00\x00\x00\xc5T\x00\x00\x0e\x00\x00\x00\xd6T\x00\x00:\x00\x00\x00\xe5T\x00\x00\x0f\x00\x00\x00 U\x00\x00\x04\x00\x00\x000U\x00\x00;\x00\x00\x005U\x00\x00G\x00\x00\x00qU\x00\x001\x00\x00\x00\xb9U\x00\x00Y\x00\x00\x00\xebU\x00\x00\x13\x00\x00\x00EV\x00\x004\x00\x00\x00YV\x00\x00\x80\x00\x00\x00\x8eV\x00\x00H\x00\x00\x00\x0fW\x00\x00\r\x00\x00\x00XW\x00\x00(\x00\x00\x00fW\x00\x00\r\x00\x00\x00\x8fW\x00\x00\xbc\x00\x00\x00\x9dW\x00\x00\x08\x00\x00\x00ZX\x00\x00\t\x00\x00\x00cX\x00\x00\x06\x00\x00\x00mX\x00\x00\x1e\x00\x00\x00tX\x00\x00\x16\x00\x00\x00\x93X\x00\x00\x13\x00\x00\x00\xaaX\x00\x00\x0e\x00\x00\x00\xbeX\x00\x00\x1b\x00\x00\x00\xcdX\x00\x00\x13\x00\x00\x00\xe9X\x00\x00+\x00\x00\x00\xfdX\x00\x00*\x00\x00\x00)Y\x00\x000\x00\x00\x00TY\x00\x00)\x00\x00\x00\x85Y\x00\x00<\x00\x00\x00\xafY\x00\x00\x0c\x00\x00\x00\xecY\x00\x00\x17\x00\x00\x00\xf9Y\x00\x00<\x00\x00\x00\x11Z\x00\x000\x00\x00\x00NZ\x00\x00\x84\x00\x00\x00\x7fZ\x00\x00X\x00\x00\x00\x04[\x00\x00\x0f\x00\x00\x00][\x00\x00\x12\x00\x00\x00m[\x00\x00-\x00\x00\x00\x80[\x00\x00\x0c\x00\x00\x00\xae[\x00\x00\x0c\x00\x00\x00\xbb[\x00\x00\x0c\x00\x00\x00\xc8[\x00\x00"\x00\x00\x00\xd5[\x00\x009\x00\x00\x00\xf8[\x00\x00\x0f\x00\x00\x002\\\x00\x00V\x00\x00\x00B\\\x00\x00r\x00\x00\x00\x99\\\x00\x00G\x00\x00\x00\x0c]\x00\x00\'\x00\x00\x00T]\x00\x00\x0e\x00\x00\x00|]\x00\x00\x13\x00\x00\x00\x8b]\x00\x00\x14\x00\x00\x00\x9f]\x00\x00#\x00\x00\x00\xb4]\x00\x00\x06\x00\x00\x00\xd8]\x00\x00\r\x00\x00\x00\xdf]\x00\x00\r\x00\x00\x00\xed]\x00\x00\x07\x00\x00\x00\xfb]\x00\x00\x1e\x00\x00\x00\x03^\x00\x00\x0b\x00\x00\x00"^\x00\x00\x17\x00\x00\x00.^\x00\x00\x1b\x00\x00\x00F^\x00\x00\x1a\x00\x00\x00b^\x00\x00\x0e\x00\x00\x00}^\x00\x00^\x00\x00\x00\x8c^\x00\x00\x0f\x00\x00\x00\xeb^\x00\x00\x12\x00\x00\x00\xfb^\x00\x00\x10\x00\x00\x00\x0e_\x00\x00\x0f\x00\x00\x00\x1f_\x00\x00\x10\x00\x00\x00/_\x00\x00g\x00\x00\x00@_\x00\x00c\x00\x00\x00\xa8_\x00\x007\x00\x00\x00\x0c`\x00\x00!\x00\x00\x00D`\x00\x006\x00\x00\x00f`\x00\x00d\x00\x00\x00\x9d`\x00\x00\t\x00\x00\x00\x02a\x00\x00\x17\x00\x00\x00\x0ca\x00\x00\x16\x00\x00\x00$a\x00\x00\x11\x00\x00\x00;a\x00\x00\x04\x01\x00\x00Ma\x00\x00z\x00\x00\x00Rb\x00\x00\x85\x00\x00\x00\xcdb\x00\x00\xb6\x00\x00\x00Sc\x00\x00\r\x01\x00\x00\nd\x00\x00P\x00\x00\x00\x18e\x00\x00+\x01\x00\x00ie\x00\x00#\x00\x00\x00\x95f\x00\x00\x06\x00\x00\x00\xb9f\x00\x00\x17\x00\x00\x00\xc0f\x00\x00\x14\x00\x00\x00\xd8f\x00\x00\x07\x00\x00\x00\xedf\x00\x00 \x00\x00\x00\xf5f\x00\x00\x03\x00\x00\x00\x16g\x00\x00\n\x00\x00\x00\x1ag\x00\x00\x13\x00\x00\x00%g\x00\x00\x04\x00\x00\x009g\x00\x00\x85\x00\x00\x00>g\x00\x00\x04\x00\x00\x00\xc4g\x00\x00\t\x00\x00\x00\xc9g\x00\x00.\x00\x00\x00\xd3g\x00\x00%\x00\x00\x00\x02h\x00\x000\x00\x00\x00(h\x00\x00q\x00\x00\x00Yh\x00\x00X\x00\x00\x00\xcbh\x00\x00\x1b\x00\x00\x00$i\x00\x00\x1a\x00\x00\x00@i\x00\x00k\x00\x00\x00[i\x00\x00\x9d\x00\x00\x00\xc7i\x00\x00&\x00\x00\x00ej\x00\x00\x1e\x00\x00\x00\x8cj\x00\x00(\x00\x00\x00\xabj\x00\x00v\x00\x00\x00\xd4j\x00\x00\'\x00\x00\x00Kk\x00\x00"\x00\x00\x00sk\x00\x00B\x00\x00\x00\x96k\x00\x00^\x00\x00\x00\xd9k\x00\x00$\x00\x00\x008l\x00\x00h\x00\x00\x00]l\x00\x00.\x00\x00\x00\xc6l\x00\x00N\x00\x00\x00\xf5l\x00\x00\t\x00\x00\x00Dm\x00\x00\x05\x00\x00\x00Nm\x00\x00\x15\x00\x00\x00Tm\x00\x00\x06\x00\x00\x00jm\x00\x00+\x00\x00\x00qm\x00\x00\x1b\x00\x00\x00\x9dm\x00\x00%\x00\x00\x00\xb9m\x00\x00#\x00\x00\x00\xdfm\x00\x00&\x00\x00\x00\x03n\x00\x00\x0b\x00\x00\x00*n\x00\x00\x07\x00\x00\x006n\x00\x00\x13\x00\x00\x00>n\x00\x00\x0c\x00\x00\x00Rn\x00\x00\x10\x00\x00\x00_n\x00\x00\x10\x00\x00\x00pn\x00\x00\x06\x00\x00\x00\x81n\x00\x00]\x00\x00\x00\x88n\x00\x00\xdb\x00\x00\x00\xe6n\x00\x00K\x00\x00\x00\xc2o\x00\x00Q\x00\x00\x00\x0ep\x00\x00\x12\x00\x00\x00`p\x00\x00\x18\x00\x00\x00sp\x00\x00%\x00\x00\x00\x8cp\x00\x00\x1b\x00\x00\x00\xb2p\x00\x00\xb4\x00\x00\x00\xcep\x00\x002\x00\x00\x00\x83q\x00\x00\x14\x00\x00\x00\xb6q\x00\x00_\x00\x00\x00\xcbq\x00\x00:\x00\x00\x00+r\x00\x00\x12\x00\x00\x00fr\x00\x00*\x00\x00\x00yr\x00\x00\x04\x00\x00\x00\xa4r\x00\x00\x14\x00\x00\x00\xa9r\x00\x00\x07\x00\x00\x00\xber\x00\x00\x07\x00\x00\x00\xc6r\x00\x00\x1d\x00\x00\x00\xcer\x00\x00-\x00\x00\x00\xecr\x00\x00R\x00\x00\x00\x1as\x00\x00d\x00\x00\x00ms\x00\x00#\x00\x00\x00\xd2s\x00\x002\x00\x00\x00\xf6s\x00\x003\x00\x00\x00)t\x00\x00\xdf\x00\x00\x00]t\x00\x00\x08\x00\x00\x00=u\x00\x00\t\x00\x00\x00Fu\x00\x00\x0b\x00\x00\x00Pu\x00\x00o\x01\x00\x00\\u\x00\x00(\x00\x00\x00\xccv\x00\x00"\x00\x00\x00\xf5v\x00\x00\x17\x00\x00\x00\x18w\x00\x00\x0e\x00\x00\x000w\x00\x00\x10\x00\x00\x00?w\x00\x00p\x00\x00\x00Pw\x00\x00C\x01\x00\x00\xc1w\x00\x00\x1f\x00\x00\x00\x05y\x00\x00\x07\x00\x00\x00%y\x00\x00\x04\x00\x00\x00-y\x00\x00\x1a\x00\x00\x002y\x00\x00\x0c\x00\x00\x00My\x00\x00\x03\x00\x00\x00Zy\x00\x00\x03\x00\x00\x00^y\x00\x00\x08\x00\x00\x00by\x00\x00\x07\x00\x00\x00ky\x00\x00\x18\x02\x00\x00sy\x00\x003\x00\x00\x00\x8c{\x00\x00?\x00\x00\x00\xc0{\x00\x00J\x00\x00\x00\x00|\x00\x00J\x00\x00\x00K|\x00\x00J\x00\x00\x00\x96|\x00\x00J\x00\x00\x00\xe1|\x00\x00\x1d\x00\x00\x00,}\x00\x00J\x00\x00\x00J}\x00\x00\x1d\x00\x00\x00\x95}\x00\x00\x0c\x00\x00\x00\xb3}\x00\x00\x12\x00\x00\x00\xc0}\x00\x00\x0e\x00\x00\x00\xd3}\x00\x00\x0e\x00\x00\x00\xe2}\x00\x00\x0c\x00\x00\x00\xf1}\x00\x00\x13\x00\x00\x00\xfe}\x00\x00\x12\x00\x00\x00\x12~\x00\x00)\x00\x00\x00%~\x00\x00\x11\x00\x00\x00O~\x00\x00,\x00\x00\x00a~\x00\x00\x16\x00\x00\x00\x8e~\x00\x00\x12\x00\x00\x00\xa5~\x00\x00/\x00\x00\x00\xb8~\x00\x00%\x00\x00\x00\xe8~\x00\x00\x1b\x00\x00\x00\x0e\x7f\x00\x00\x12\x00\x00\x00*\x7f\x00\x00\x17\x00\x00\x00=\x7f\x00\x00&\x00\x00\x00U\x7f\x00\x00\n\x00\x00\x00|\x7f\x00\x00\x12\x00\x00\x00\x87\x7f\x00\x00\'\x00\x00\x00\x9a\x7f\x00\x00\t\x00\x00\x00\xc2\x7f\x00\x00\n\x00\x00\x00\xcc\x7f\x00\x00\n\x00\x00\x00\xd7\x7f\x00\x00\x16\x00\x00\x00\xe2\x7f\x00\x00\x10\x00\x00\x00\xf9\x7f\x00\x00\r\x00\x00\x00\n\x80\x00\x00\x10\x00\x00\x00\x18\x80\x00\x00\x07\x00\x00\x00)\x80\x00\x00\x07\x00\x00\x001\x80\x00\x00\x0c\x00\x00\x009\x80\x00\x00\x14\x00\x00\x00F\x80\x00\x00\x10\x00\x00\x00[\x80\x00\x00!\x00\x00\x00l\x80\x00\x00\x05\x00\x00\x00\x8e\x80\x00\x00\t\x00\x00\x00\x94\x80\x00\x00\x13\x00\x00\x00\x9e\x80\x00\x00\r\x00\x00\x00\xb2\x80\x00\x00\x16\x00\x00\x00\xc0\x80\x00\x00\x03\x00\x00\x00\xd7\x80\x00\x00/\x00\x00\x00\xdb\x80\x00\x00.\x00\x00\x00\x0b\x81\x00\x00<\x00\x00\x00:\x81\x00\x00\x1c\x00\x00\x00w\x81\x00\x002\x00\x00\x00\x94\x81\x00\x005\x02\x00\x00\xc7\x81\x00\x00\xa3\x01\x00\x00\xfd\x83\x00\x00\x89\x02\x00\x00\xa1\x85\x00\x00;\x00\x00\x00+\x88\x00\x00F\x00\x00\x00g\x88\x00\x002\x00\x00\x00\xae\x88\x00\x00x\x00\x00\x00\xe1\x88\x00\x00[\x00\x00\x00Z\x89\x00\x00V\x00\x00\x00\xb6\x89\x00\x00/\x00\x00\x00\r\x8a\x00\x00\xc0\x00\x00\x00=\x8a\x00\x00m\x00\x00\x00\xfe\x8a\x00\x00\xaa\x00\x00\x00l\x8b\x00\x00\x84\x01\x00\x00\x17\x8c\x00\x00?\x00\x00\x00\x9c\x8d\x00\x00U\x00\x00\x00\xdc\x8d\x00\x00\x01\x00\x00\x002\x8e\x00\x00B\x00\x00\x004\x8e\x00\x00d\x00\x00\x00w\x8e\x00\x00\x0e\x00\x00\x00\xdc\x8e\x00\x00\x10\x00\x00\x00\xeb\x8e\x00\x00\r\x00\x00\x00\xfc\x8e\x00\x00\x0f\x00\x00\x00\n\x8f\x00\x00,\x00\x00\x00\x1a\x8f\x00\x00D\x00\x00\x00G\x8f\x00\x00J\x00\x00\x00\x8c\x8f\x00\x006\x00\x00\x00\xd7\x8f\x00\x00\x0e\x00\x00\x00\x0e\x90\x00\x00&\x00\x00\x00\x1d\x90\x00\x00b\x00\x00\x00D\x90\x00\x00u\x00\x00\x00\xa7\x90\x00\x00,\x00\x00\x00\x1d\x91\x00\x00\x1d\x00\x00\x00J\x91\x00\x00B\x00\x00\x00h\x91\x00\x00\x1a\x00\x00\x00\xab\x91\x00\x00\x87\x00\x00\x00\xc6\x91\x00\x00\x08\x00\x00\x00N\x92\x00\x00\x10\x00\x00\x00W\x92\x00\x00\x10\x00\x00\x00h\x92\x00\x00\x0b\x00\x00\x00y\x92\x00\x00\x05\x00\x00\x00\x85\x92\x00\x00^\x00\x00\x00\x8b\x92\x00\x00\t\x00\x00\x00\xea\x92\x00\x00v\x01\x00\x00\xf4\x92\x00\x00 \x00\x00\x00k\x94\x00\x00&\x00\x00\x00\x8c\x94\x00\x00\x16\x00\x00\x00\xb3\x94\x00\x00\x06\x00\x00\x00\xca\x94\x00\x00\x19\x00\x00\x00\xd1\x94\x00\x00\x18\x00\x00\x00\xeb\x94\x00\x00\t\x00\x00\x00\x04\x95\x00\x00\x07\x00\x00\x00\x0e\x95\x00\x00\x13\x00\x00\x00\x16\x95\x00\x00\x1a\x00\x00\x00*\x95\x00\x00\x08\x00\x00\x00E\x95\x00\x00\x16\x00\x00\x00N\x95\x00\x00\x1d\x00\x00\x00e\x95\x00\x00?\x00\x00\x00\x83\x95\x00\x00\x04\x00\x00\x00\xc3\x95\x00\x00&\x00\x00\x00\xc8\x95\x00\x00\r\x00\x00\x00\xef\x95\x00\x00!\x00\x00\x00\xfd\x95\x00\x00\x06\x00\x00\x00\x1f\x96\x00\x00(\x00\x00\x00&\x96\x00\x00\x13\x00\x00\x00O\x96\x00\x008\x00\x00\x00c\x96\x00\x00H\x00\x00\x00\x9c\x96\x00\x008\x00\x00\x00\xe5\x96\x00\x00\x12\x00\x00\x00\x1e\x97\x00\x00%\x00\x00\x001\x97\x00\x00*\x00\x00\x00W\x97\x00\x00\x17\x00\x00\x00\x82\x97\x00\x00;\x00\x00\x00\x9a\x97\x00\x00\x17\x00\x00\x00\xd6\x97\x00\x00\x16\x00\x00\x00\xee\x97\x00\x00H\x00\x00\x00\x05\x98\x00\x00!\x00\x00\x00N\x98\x00\x00"\x00\x00\x00p\x98\x00\x00.\x00\x00\x00\x93\x98\x00\x00\x1f\x00\x00\x00\xc2\x98\x00\x00w\x00\x00\x00\xe2\x98\x00\x00(\x00\x00\x00Z\x99\x00\x00\x13\x00\x00\x00\x83\x99\x00\x00\x1a\x00\x00\x00\x97\x99\x00\x00\x1d\x00\x00\x00\xb2\x99\x00\x00\x13\x00\x00\x00\xd0\x99\x00\x00\x15\x00\x00\x00\xe4\x99\x00\x00\t\x00\x00\x00\xfa\x99\x00\x00 \x00\x00\x00\x04\x9a\x00\x00\x0f\x00\x00\x00%\x9a\x00\x00V\x00\x00\x005\x9a\x00\x00 \x00\x00\x00\x8c\x9a\x00\x00 \x00\x00\x00\xad\x9a\x00\x00J\x00\x00\x00\xce\x9a\x00\x00\x17\x00\x00\x00\x19\x9b\x00\x00\x14\x00\x00\x001\x9b\x00\x00)\x00\x00\x00F\x9b\x00\x00\x1f\x00\x00\x00p\x9b\x00\x000\x00\x00\x00\x90\x9b\x00\x008\x00\x00\x00\xc1\x9b\x00\x00\x08\x00\x00\x00\xfa\x9b\x00\x00;\x00\x00\x00\x03\x9c\x00\x00\x10\x00\x00\x00?\x9c\x00\x00\x0e\x00\x00\x00P\x9c\x00\x00\x0e\x00\x00\x00_\x9c\x00\x00\x18\x00\x00\x00n\x9c\x00\x00\x12\x00\x00\x00\x87\x9c\x00\x00\x0e\x00\x00\x00\x9a\x9c\x00\x00+\x00\x00\x00\xa9\x9c\x00\x00\x18\x00\x00\x00\xd5\x9c\x00\x00\x0f\x00\x00\x00\xee\x9c\x00\x00\x0f\x00\x00\x00\xfe\x9c\x00\x00&\x00\x00\x00\x0e\x9d\x00\x00L\x00\x00\x005\x9d\x00\x00"\x00\x00\x00\x82\x9d\x00\x00Z\x00\x00\x00\xa5\x9d\x00\x00 \x00\x00\x00\x00\x9e\x00\x00"\x00\x00\x00!\x9e\x00\x00(\x00\x00\x00D\x9e\x00\x00/\x00\x00\x00m\x9e\x00\x00\x14\x00\x00\x00\x9d\x9e\x00\x00\n\x00\x00\x00\xb2\x9e\x00\x00\x10\x00\x00\x00\xbd\x9e\x00\x00\x1f\x00\x00\x00\xce\x9e\x00\x00\x04\x00\x00\x00\xee\x9e\x00\x00 \x00\x00\x00\xf3\x9e\x00\x00\x04\x00\x00\x00\x14\x9f\x00\x00d\x00\x00\x00\x19\x9f\x00\x00\x13\x00\x00\x00~\x9f\x00\x00!\x00\x00\x00\x92\x9f\x00\x00"\x00\x00\x00\xb4\x9f\x00\x00\x1a\x00\x00\x00\xd7\x9f\x00\x00"\x00\x00\x00\xf2\x9f\x00\x00\x1b\x00\x00\x00\x15\xa0\x00\x00\x17\x00\x00\x001\xa0\x00\x00\x1c\x00\x00\x00I\xa0\x00\x00\x13\x00\x00\x00f\xa0\x00\x00\x01\x00\x00\x00z\xa0\x00\x00\x06\x00\x00\x00|\xa0\x00\x00\x11\x00\x00\x00\x83\xa0\x00\x00\x11\x00\x00\x00\x95\xa0\x00\x00\x11\x00\x00\x00\xa7\xa0\x00\x00\x1b\x00\x00\x00\xb9\xa0\x00\x00!\x00\x00\x00\xd5\xa0\x00\x00\x11\x00\x00\x00\xf7\xa0\x00\x00,\x00\x00\x00\t\xa1\x00\x00Q\x00\x00\x006\xa1\x00\x00\x06\x00\x00\x00\x88\xa1\x00\x00\'\x00\x00\x00\x8f\xa1\x00\x00\x1d\x00\x00\x00\xb7\xa1\x00\x00\'\x00\x00\x00\xd5\xa1\x00\x00"\x00\x00\x00\xfd\xa1\x00\x00-\x00\x00\x00 \xa2\x00\x008\x00\x00\x00N\xa2\x00\x00+\x00\x00\x00\x87\xa2\x00\x00\x1e\x00\x00\x00\xb3\xa2\x00\x00"\x00\x00\x00\xd2\xa2\x00\x00\x0e\x00\x00\x00\xf5\xa2\x00\x00\x1a\x00\x00\x00\x04\xa3\x00\x00\x1c\x00\x00\x00\x1f\xa3\x00\x00\x14\x00\x00\x00<\xa3\x00\x00\x12\x00\x00\x00Q\xa3\x00\x00\x07\x00\x00\x00d\xa3\x00\x00(\x00\x00\x00l\xa3\x00\x00\x10\x00\x00\x00\x95\xa3\x00\x00\x1b\x00\x00\x00\xa6\xa3\x00\x00\x0f\x00\x00\x00\xc2\xa3\x00\x00\x13\x00\x00\x00\xd2\xa3\x00\x00\x11\x00\x00\x00\xe6\xa3\x00\x00\x14\x00\x00\x00\xf8\xa3\x00\x00#\x00\x00\x00\r\xa4\x00\x00\x18\x00\x00\x001\xa4\x00\x00$\x00\x00\x00J\xa4\x00\x00\x04\x00\x00\x00o\xa4\x00\x00\x0b\x00\x00\x00t\xa4\x00\x00[\x00\x00\x00\x80\xa4\x00\x00\x06\x00\x00\x00\xdc\xa4\x00\x00\x96\x00\x00\x00\xe3\xa4\x00\x00O\x01\x00\x00z\xa5\x00\x00d\x00\x00\x00\xca\xa6\x00\x003\x00\x00\x00/\xa7\x00\x00\x07\x00\x00\x00c\xa7\x00\x00\x07\x00\x00\x00k\xa7\x00\x00\x07\x00\x00\x00s\xa7\x00\x00\x06\x00\x00\x00{\xa7\x00\x00,\x00\x00\x00\x82\xa7\x00\x00\x1d\x00\x00\x00\xaf\xa7\x00\x00%\x00\x00\x00\xcd\xa7\x00\x00\x0c\x00\x00\x00\xf3\xa7\x00\x00\x14\x00\x00\x00\x00\xa8\x00\x00\x06\x00\x00\x00\x15\xa8\x00\x00\x06\x00\x00\x00\x1c\xa8\x00\x00B\x02\x00\x00#\xa8\x00\x00\x85\x00\x00\x00f\xaa\x00\x00n\x00\x00\x00\xec\xaa\x00\x00\x0e\x00\x00\x00[\xab\x00\x00\x0f\x00\x00\x00j\xab\x00\x00\xd9\x00\x00\x00z\xab\x00\x00(\x00\x00\x00T\xac\x00\x00\x13\x00\x00\x00}\xac\x00\x00\x1c\x00\x00\x00\x91\xac\x00\x00\x1d\x00\x00\x00\xae\xac\x00\x008\x00\x00\x00\xcc\xac\x00\x00\x10\x00\x00\x00\x05\xad\x00\x00\x1f\x00\x00\x00\x16\xad\x00\x00#\x00\x00\x006\xad\x00\x00\x06\x00\x00\x00Z\xad\x00\x00\x1c\x00\x00\x00a\xad\x00\x00\x07\x00\x00\x00~\xad\x00\x00\x12\x00\x00\x00\x86\xad\x00\x00\x0f\x00\x00\x00\x99\xad\x00\x007\x00\x00\x00\xa9\xad\x00\x00\n\x00\x00\x00\xe1\xad\x00\x00>\x00\x00\x00\xec\xad\x00\x00\x0f\x00\x00\x00+\xae\x00\x00,\x00\x00\x00;\xae\x00\x006\x00\x00\x00h\xae\x00\x00\x0e\x00\x00\x00\x9f\xae\x00\x000\x00\x00\x00\xae\xae\x00\x00a\x00\x00\x00\xdf\xae\x00\x00\x08\x00\x00\x00A\xaf\x00\x00\x08\x00\x00\x00J\xaf\x00\x00\x8a\x00\x00\x00S\xaf\x00\x00\x15\x00\x00\x00\xde\xaf\x00\x00V\x00\x00\x00\xf4\xaf\x00\x00l\x00\x00\x00K\xb0\x00\x00\x07\x00\x00\x00\xb8\xb0\x00\x00\x04\x00\x00\x00\xc0\xb0\x00\x00.\x00\x00\x00\xc5\xb0\x00\x00\x11\x00\x00\x00\xf4\xb0\x00\x00\x17\x00\x00\x00\x06\xb1\x00\x00\x1a\x00\x00\x00\x1e\xb1\x00\x00\x18\x00\x00\x009\xb1\x00\x00\x18\x00\x00\x00R\xb1\x00\x00%\x00\x00\x00k\xb1\x00\x00\x1c\x00\x00\x00\x91\xb1\x00\x00\x16\x00\x00\x00\xae\xb1\x00\x00\x1e\x00\x00\x00\xc5\xb1\x00\x00$\x00\x00\x00\xe4\xb1\x00\x00\x07\x00\x00\x00\t\xb2\x00\x00g\x00\x00\x00\x11\xb2\x00\x00\x13\x00\x00\x00y\xb2\x00\x00\x14\x01\x00\x00\x8d\xb2\x00\x00\x15\x00\x00\x00\xa2\xb3\x00\x00\n\x00\x00\x00\xb8\xb3\x00\x00\x07\x00\x00\x00\xc3\xb3\x00\x006\x00\x00\x00\xcb\xb3\x00\x004\x00\x00\x00\x02\xb4\x00\x00O\x00\x00\x007\xb4\x00\x00\x12\x00\x00\x00\x87\xb4\x00\x002\x00\x00\x00\x9a\xb4\x00\x00J\x00\x00\x00\xcd\xb4\x00\x00\x83\x00\x00\x00\x18\xb5\x00\x00\x12\x00\x00\x00\x9c\xb5\x00\x00\x0e\x00\x00\x00\xaf\xb5\x00\x00\x10\x00\x00\x00\xbe\xb5\x00\x00\x0e\x00\x00\x00\xcf\xb5\x00\x00O\x00\x00\x00\xde\xb5\x00\x00\x13\x00\x00\x00.\xb6\x00\x00\x08\x00\x00\x00B\xb6\x00\x00I\x00\x00\x00K\xb6\x00\x00M\x00\x00\x00\x95\xb6\x00\x00>\x00\x00\x00\xe3\xb6\x00\x00Z\x00\x00\x00"\xb7\x00\x00\x1b\x00\x00\x00}\xb7\x00\x00B\x00\x00\x00\x99\xb7\x00\x00{\x00\x00\x00\xdc\xb7\x00\x00Z\x00\x00\x00X\xb8\x00\x00\x11\x00\x00\x00\xb3\xb8\x00\x00)\x00\x00\x00\xc5\xb8\x00\x00\x12\x00\x00\x00\xef\xb8\x00\x00\xc2\x00\x00\x00\x02\xb9\x00\x00\t\x00\x00\x00\xc5\xb9\x00\x00\x07\x00\x00\x00\xcf\xb9\x00\x00\x08\x00\x00\x00\xd7\xb9\x00\x00$\x00\x00\x00\xe0\xb9\x00\x00\x18\x00\x00\x00\x05\xba\x00\x00\x16\x00\x00\x00\x1e\xba\x00\x00\x10\x00\x00\x005\xba\x00\x00 \x00\x00\x00F\xba\x00\x00\x15\x00\x00\x00g\xba\x00\x008\x00\x00\x00}\xba\x00\x007\x00\x00\x00\xb6\xba\x00\x00=\x00\x00\x00\xee\xba\x00\x007\x00\x00\x00,\xbb\x00\x00D\x00\x00\x00d\xbb\x00\x00\r\x00\x00\x00\xa9\xbb\x00\x00\x1d\x00\x00\x00\xb7\xbb\x00\x00<\x00\x00\x00\xd5\xbb\x00\x000\x00\x00\x00\x12\xbc\x00\x00\xa0\x00\x00\x00C\xbc\x00\x00b\x00\x00\x00\xe4\xbc\x00\x00\x19\x00\x00\x00G\xbd\x00\x00\x16\x00\x00\x00a\xbd\x00\x005\x00\x00\x00x\xbd\x00\x00\x13\x00\x00\x00\xae\xbd\x00\x00\x0e\x00\x00\x00\xc2\xbd\x00\x00\x0e\x00\x00\x00\xd1\xbd\x00\x00&\x00\x00\x00\xe0\xbd\x00\x00@\x00\x00\x00\x07\xbe\x00\x00\x12\x00\x00\x00H\xbe\x00\x00h\x00\x00\x00[\xbe\x00\x00\x80\x00\x00\x00\xc4\xbe\x00\x00\\\x00\x00\x00E\xbf\x00\x007\x00\x00\x00\xa2\xbf\x00\x00\x14\x00\x00\x00\xda\xbf\x00\x00\x1d\x00\x00\x00\xef\xbf\x00\x00\x1c\x00\x00\x00\r\xc0\x00\x00$\x00\x00\x00*\xc0\x00\x00\x05\x00\x00\x00O\xc0\x00\x00\x0c\x00\x00\x00U\xc0\x00\x00\r\x00\x00\x00b\xc0\x00\x00\x06\x00\x00\x00p\xc0\x00\x00\'\x00\x00\x00w\xc0\x00\x00\x16\x00\x00\x00\x9f\xc0\x00\x00\'\x00\x00\x00\xb6\xc0\x00\x004\x00\x00\x00\xde\xc0\x00\x003\x00\x00\x00\x13\xc1\x00\x00\x10\x00\x00\x00G\xc1\x00\x00^\x00\x00\x00X\xc1\x00\x00\x12\x00\x00\x00\xb7\xc1\x00\x00\x1b\x00\x00\x00\xca\xc1\x00\x00\x14\x00\x00\x00\xe6\xc1\x00\x00\x13\x00\x00\x00\xfb\xc1\x00\x00\x13\x00\x00\x00\x0f\xc2\x00\x00\x80\x00\x00\x00#\xc2\x00\x00\x7f\x00\x00\x00\xa4\xc2\x00\x00K\x00\x00\x00$\xc3\x00\x00-\x00\x00\x00p\xc3\x00\x004\x00\x00\x00\x9e\xc3\x00\x00x\x00\x00\x00\xd3\xc3\x00\x00\x0f\x00\x00\x00L\xc4\x00\x00)\x00\x00\x00\\\xc4\x00\x00(\x00\x00\x00\x86\xc4\x00\x00\x13\x00\x00\x00\xaf\xc4\x00\x00\x1b\x01\x00\x00\xc3\xc4\x00\x00\x8d\x00\x00\x00\xdf\xc5\x00\x00|\x00\x00\x00m\xc6\x00\x00\xe1\x00\x00\x00\xea\xc6\x00\x00\'\x01\x00\x00\xcc\xc7\x00\x00c\x00\x00\x00\xf4\xc8\x00\x00\x8e\x01\x00\x00X\xc9\x00\x00\'\x00\x00\x00\xe7\xca\x00\x00\x05\x00\x00\x00\x0f\xcb\x00\x00\x1d\x00\x00\x00\x15\xcb\x00\x00\x19\x00\x00\x003\xcb\x00\x00\x06\x00\x00\x00M\xcb\x00\x00!\x00\x00\x00T\xcb\x00\x00\x03\x00\x00\x00v\xcb\x00\x00\r\x00\x00\x00z\xcb\x00\x00\x1d\x00\x00\x00\x88\xcb\x00\x00\x03\x00\x00\x00\xa6\xcb\x00\x00\x97\x00\x00\x00\xaa\xcb\x00\x00\x04\x00\x00\x00B\xcc\x00\x00\x10\x00\x00\x00G\xcc\x00\x006\x00\x00\x00X\xcc\x00\x00\x1d\x00\x00\x00\x8f\xcc\x00\x006\x00\x00\x00\xad\xcc\x00\x00\x8e\x00\x00\x00\xe4\xcc\x00\x00K\x00\x00\x00s\xcd\x00\x00\x1d\x00\x00\x00\xbf\xcd\x00\x00\x1c\x00\x00\x00\xdd\xcd\x00\x00n\x00\x00\x00\xfa\xcd\x00\x00\xb4\x00\x00\x00i\xce\x00\x008\x00\x00\x00\x1e\xcf\x00\x00$\x00\x00\x00W\xcf\x00\x00\x1e\x00\x00\x00|\xcf\x00\x00\x97\x00\x00\x00\x9b\xcf\x00\x002\x00\x00\x003\xd0\x00\x000\x00\x00\x00f\xd0\x00\x00A\x00\x00\x00\x97\xd0\x00\x00^\x00\x00\x00\xd9\xd0\x00\x00\x1e\x00\x00\x008\xd1\x00\x00\x81\x00\x00\x00W\xd1\x00\x00/\x00\x00\x00\xd9\xd1\x00\x00T\x00\x00\x00\t\xd2\x00\x00\t\x00\x00\x00^\xd2\x00\x00\x06\x00\x00\x00h\xd2\x00\x00 \x00\x00\x00o\xd2\x00\x00\x07\x00\x00\x00\x90\xd2\x00\x008\x00\x00\x00\x98\xd2\x00\x00,\x00\x00\x00\xd1\xd2\x00\x000\x00\x00\x00\xfe\xd2\x00\x00.\x00\x00\x00/\xd3\x00\x00!\x00\x00\x00^\xd3\x00\x00\x0f\x00\x00\x00\x80\xd3\x00\x00\x0b\x00\x00\x00\x90\xd3\x00\x00\x1f\x00\x00\x00\x9c\xd3\x00\x00\x10\x00\x00\x00\xbc\xd3\x00\x00\x15\x00\x00\x00\xcd\xd3\x00\x00\x15\x00\x00\x00\xe3\xd3\x00\x00\x04\x00\x00\x00\xf9\xd3\x00\x00a\x00\x00\x00\xfe\xd3\x00\x00\xf6\x00\x00\x00`\xd4\x00\x00O\x00\x00\x00W\xd5\x00\x00U\x00\x00\x00\xa7\xd5\x00\x00\x10\x00\x00\x00\xfd\xd5\x00\x00\x16\x00\x00\x00\x0e\xd6\x00\x00-\x00\x00\x00%\xd6\x00\x00"\x00\x00\x00S\xd6\x00\x00\xba\x00\x00\x00v\xd6\x00\x004\x00\x00\x001\xd7\x00\x00\x15\x00\x00\x00f\xd7\x00\x00`\x00\x00\x00|\xd7\x00\x00R\x00\x00\x00\xdd\xd7\x00\x00\x16\x00\x00\x000\xd8\x00\x00-\x00\x00\x00G\xd8\x00\x00\x05\x00\x00\x00u\xd8\x00\x00\x1b\x00\x00\x00{\xd8\x00\x00\t\x00\x00\x00\x97\xd8\x00\x00\r\x00\x00\x00\xa1\xd8\x00\x00\x1e\x00\x00\x00\xaf\xd8\x00\x00-\x00\x00\x00\xce\xd8\x00\x00_\x00\x00\x00\xfc\xd8\x00\x00\x84\x00\x00\x00\\\xd9\x00\x00-\x00\x00\x00\xe1\xd9\x00\x00F\x00\x00\x00\x0f\xda\x00\x008\x00\x00\x00V\xda\x00\x00\xe7\x00\x00\x00\x8f\xda\x00\x00\x08\x00\x00\x00w\xdb\x00\x00\t\x00\x00\x00\x80\xdb\x00\x00\r\x00\x00\x00\x8a\xdb\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">libprs500</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00contains\x00libprs500\x00mybook.epub\x00Project-Id-Version: it\nPOT-Creation-Date: 2008-04-04 09:07+PDT\nPO-Revision-Date: 16:44, 4/4/2008\nLast-Translator: Iacopo Benesperi <iacchi@iacchi.org>\nLanguage-Team: italiano\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nGenerated-By: pygettext.py 1.5\nX-Generator: KBabel 1.11.4\nPlural-Forms: nplurals=2; plural=(n != 1);\n\x00\tFile di Baen individuato. Rianalizzo...\x00\tFile di Book Designer individuato\x00\tConversione in BBeB...\x00\tLink falliti:\x00\tAnalisi HTML...\x00\n%prog [opzioni] ISBN\n\nScarica un\'immagine di copertina per il libro identificato dall\'ISBN da LibraryThing.com\n\x00\n%prog [opzioni] chiave\n\nScarica i metadati per i libri da isndb.com. \xc3\x88 possibile specificare sia\nl\'ISBN del libro che il suo titolo e autore. Se si specificano il titolo e l\'autore,\nla ricerca potrebbe riportare pi\xc3\xb9 di un risultato\n\nChiave \xc3\xa8 la chiave dell\'account generata dopo la registrazione gratuita su isndb.com\n\n\x00\nScaricato articolo %s da %s\n%s\x00 giorni\x00 da \x00 non \xc3\xa8 un\'immagine valida\x00 non trovato\x00 pt\x00 px\x00 secondi\x00 stelle\x00%%prog [opzioni] ARG\n\n%%prog analizza una fonte on-line di articoli, come un feed RSS o ATOM e\nscarica i contenuti degli articoli organizzandoli gerarchicamente\n\nARG pu\xc3\xb2 essere:\n\nnome file - %%prog prover\xc3\xa0 a caricare una formula dal file\n\ntitolo formula presente - %%prog caricher\xc3\xa0 una formula gi\xc3\xa0 presente e la user\xc3\xa0 per scaricare i feed. Per es. Newsweek o "The BBC" o "The New York Times"\n\nformula come stringa - %%prog caricher\xc3\xa0 la formula direttamente dalla stringa ARG\n\nLe formule presenti disponibili sono:\n%s\n\x00%prog URL\n\nDov\'\xc3\xa8 l\'URL. Esempio: http://google.com\x00%prog [opzioni] file.lrs\nCompila un file LRS dentro un file LRF\x00%prog [opzioni] miolibro.lrf\n\n\nMostra/modifica i metadati in un file LRF\n\n\x00%prog [opzioni] miolibro.pdf\n\n\n%prog converte miolibro.pdf in miolibro.lrf\x00%prog [opzioni] miolibro.rtf\n\n\n%prog converte miolibro.rtf in miolibro.lrf\x00%prog [opzioni] miolibro.txt\n\n\n%prog converte miolibro.txt in miolibro.lrf\x00%prog [opzioni] miolibro.mobi\x00%prog libro.lrf\nConverte un file LRF in un file LRS (XML codificato UTF-8)\x00%s non ha formati disponibili\x00%sUso%s: %s\n\x00&Chiave d\'accesso;\x00&Aggiungi feed\x00&Aggiungi tag:\x00A&utore(i): \x00Margine i&nferiore:\x00&Compatta database\x00&Disabilita l\'individuazione del capitoli\x00Tit&olo del feed:\x00&Forza interruzione di pagina prima del tag:\x00&Formato intestazione:\x00Margine &sinistro:\x00&Posizione del database dei libri (library1.db)\x00&Numero massimo di articoli per feed:\x00&Metadati dal nome del file\x00&Dimensione fissa:\x00Arti&colo pi\xc3\xb9 vecchio:\x00I&nterruzione di pagina prima del tag:\x00&Password:\x00&Preprocessamento:\x00Pri&orit\xc3\xa0 per i lavori di conversione:\x00&Profilo:\x00&Editore: \x00&Giudizio:\x00&Espressione regolare:\x00Rimuo&vi formula\x00&Rimuovi tag:\x00Margine &destro:\x00&Cerca:\x00&Serie:\x00&Con grazie:\x00&Mostra intestazione\x00&Mostra password\x00I&nterrompi il lavoro selezionato\x00&Test\x00&Titolo: \x00Margine s&uperiore:\x00&Nome utente:\x00Spaziat&ura caratteri:\x00...\x00<b>Le modifiche avranno effetto dopo il riavvio\x00<b>Impossibile scaricare la copertina</b><br/>\x00<b>Nessuna corrispondenza</b> trovata per la frase <i>%s</i>\x00<br>Deve essere una cartella\x00<font color="gray">Nessun aiuto disponibile</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Crea una formula di notizie di base, aggiungendo ad essa dei feed RSS. <br />Per la maggior parte dei feed, bisogner\xc3\xa0 usare la "Modalit\xc3\xa0 avanzata" per personalizzare ulteriormente il processo di scaricamento.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Visitare <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a> per la guida<br /><br /><span style=" font-weight:600;">libprs500</span>: %1 di <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - File HTML0 da Book Designer</li>\x00<li><b>pdftohtml</b> - File HTML generati dal programma pdftohtml</li>\x00<ol><li><b>baen</b> - Libri dall\'editore BAEN</li>\x00<p>Esiste gi\xc3\xa0 un database non valido in %s, eliminarlo prima di provare a spostare il database esistente.<br>Errore: %s\x00<p>Nel database sono gi\xc3\xa0 presenti libri con i seguenti titoli. Aggiungerli ugualmente?<ul>\x00<p>Impossibile salvare libri sul dispositivo perch\xc3\xa9 non c\'\xc3\xa8 pi\xc3\xb9 spazio disponibile \x00<p>Impossibile creare la formula. Errore:<br>%s\x00<p>Inserire il proprio nome utente e password per <b>LibraryThing.com</b>. <br/>Se non se ne possiede uno, \xc3\xa8 possibile <a href=\'http://www.librarything.com\'>registrarsi</a> gratuitamente!</p>\x00<p>Nega questa corrispondenza. Restituisce soltanto i risultati che <b>non</b> corrispondono a questa ricerca\x00<p>Inserire il proprio nome utente e password per %s<br>Se non se ne possiede uno, sottoscriversi per avere accesso a questi articoli.<br/> Fare clic su OK per procedere.\x00<p>Impostare un modello di espressione regolare da usare nel tentativo di indovinare i metadati dei libri dal nome del file. <p>\xc3\x88 disponibile un <a href="http://docs.python.org/lib/re-syntax.html">riferimento</a> sulla sintassi delle espressioni regolari. Usare la funzionalit\xc3\xa0 <b>Test</b> sottostante per testare le proprie espressioni regolari su una serie di nomi di file di esempio.\x00<p>Si \xc3\xa8 verificato un errore nella lettura del file: <br /><b>\x00<span style="color:red; font-weight:bold">Ultima versione: <a href="%s">%s</a></span>\x00A\x00Esiste gi\xc3\xa0 una formula personalizzata di nome %s. Sovrascriverla?\x00Un\'espressione regolare. I tag <a> i cui href corrispondono verranno ignorati. Predefinita: %default\x00&Tag applicati\x00Tag &disponibili\x00Lavori attivi\x00&Aggiungi tag: \x00Aggiungi una fonte di notizie personalizzata\x00Aggiunge una cartella alla lista delle cartelle usate frequentemente\x00Aggiunge a tutte le pagine un\'intestazione contenente il titolo e l\'autore\x00Aggiungi un nuovo formato al database per questo libro\x00Aggiungi libri\x00Aggiungi libri da una singola cartella\x00Aggiungi libri ricorsivamente (pi\xc3\xb9 libri per cartella, assume che ogni file sia un libro diverso)\x00Aggiungi libri ricorsivamente (un libro per cartella, assume che ogni file sia lo stesso libro in un diverso formato)\x00Aggiungi una fonte di notizie personalizzata\x00Aggiunge il feed alla formula\x00Aggiungi il tag a quelli disponibili e applicalo al libro corrente\x00Aggiungi/Aggiorna for&mula\x00Aggiusta la visualizzazione del file LRF generato specificando parametri come la dimensione dei caratteri e la spaziatura tra le parole\x00Avanzata\x00Ricerca avanzata\x00Ricerca avanzata\x00Esiste gi\xc3\xa0\x00Alt+S\x00Si \xc3\xa8 verificato un errore nel processamento della tabella: %s. Ignoro il codice della tabella\x00Qualunque\x00Tutti i link che corrispondono a questa espressione regolare saranno ignorati. Questa opzione pu\xc3\xb2 essere specificata pi\xc3\xb9 volte, in questo modo finch\xc3\xa9 una regexp fa corrispondere un link, questo sar\xc3\xa0 ignorato. Per impostazione predefinita nessun link viene ignorato. Se vengono specificate sia --filter-regexp che --match-regexp, --filter-regexp viene applicata per prima\x00Applica il tag al libro corrente\x00Scaricamento fallito dell\'articolo: %s\x00Articolo scaricato: %s\x00Autore\x00&Classificazione autore: \x00Classifica&zione autore:\x00Autore(i)\x00Autori:\x00Formati disponibili\x00Formule utente disponibili\x00Indietro\x00Tabella malformata:\n%s\x00&Grandezza caratteri di base:\x00Cartella base in cui le URL sono salvate. Predefinita: %default\x00Base\x00Pi\xc3\xb9 prolisso durante il processamento\x00Pi\xc3\xb9 prolisso\x00Prolisso durante il processamento\x00Libro \x00Libro <font face="serif">%s</font> di %s\x00Copertina del libro\x00Margine inferiore della pagina. Predefinito: %default px\x00Sfoglia per trovare un\'immagine da usare come copertina per questo libro\x00Sfoglia per specificare una nuova posizione del database\x00Converti in gruppo\x00Conversione in gruppo di libri in LRF\x00Impossibile aggiungere il link %s alla TOC\x00Impossibile configurare\x00Impossibile configurare mentre ci sono lavori in esecuzione\x00Impossibile connettersi\x00Impossibile convertire\x00Impossibile convertire %s perch\xc3\xa9 questo libro non ha formati supportati\x00Impossibile modificare i metadati\x00Impossibile scaricare la copertina\x00Impossibile terminare i lavori gi\xc3\xa0 completati\x00Impossibile terminare il lavoro\x00Impossibile terminare i lavori che stanno comunicando col dispositivo dato che potrebbe causare una corruzione dei dati\x00Impossibile terminare i lavori in attesa\x00Impossibile leggere\x00Impossibile leggere da: %s\x00Impossibile salvare sul disco\x00Impossibile leggere\x00Scheda\n%s disponibili\x00Categoria\x00Ca&mbia l\'immagine di copertina:\x00Cambia password\x00Cambia l\'autore di questo libro. Autori multipli devono essere separati da una virgola\x00Cambia l\'editore di questo libro\x00Cambia il titolo di questo libro\x00Cambia il nome utente e/o password del proprio account su LibraryThing.com\x00Individuazione capitoli\x00Scegliere il formato\x00Scegliere il formato da convertire in LRF\x00Scegliere il formato da leggere\x00Fare clic per vedere una lista dei lavori attivi\x00Lista separata da virgole dei tag da rimuovere dal libro\x00Commenti\x00Compattamento database. Poterbbe richiedere un po\' di tempo\x00Compattamento...\x00Configurazione\x00Configurazione\x00Configura visualizzatore\x00Converte %s in LRF\x00Converti libri\x00Converte LRS in LRS, utile per il debugging\x00Converti individualmente\x00Converti in LRF\x00Converte in LRS\x00Impossibile scaricare la copertina: %s\x00Impossibile scaricare l\'articolo. Eseguire con --debug per vedere la ragione\x00Impossibile scaricare la copertina\x00Impossibile scaricare la copertina perch\xc3\xa9 il server \xc3\xa8 sovraccarico. Ritentare pi\xc3\xb9 tardi\x00Impossibile spostare il database\x00Impossibile analizzare il file: %s\x00Impossibile processare l\'immagine: %s\n%s\x00Impossibile leggere l\'immagine di copertina: %s\x00Copertina salvata in\x00Creato da \x00Creazione XML...\x00Fonti di notizie personalizzate\x00Data\x00&Timeout predefinito della rete:\x00Canc\x00Rimuovi il tag dal database. Questa operazione rimuover\xc3\xa0 il tag da tutti i libri e poi dal database\x00Dettagli del lavoro\x00Database del dispositivo corrotto\x00Non scaricare i fogli di stile CSS\x00Non so a cosa serve questo\x00Non mostrare la barra di progresso\x00Doppio clic per modificarmi\x00Scaricamento completato\x00Scaricamento copertina da %s\x00Scoperti duplicati!\x00E\x00ERRORE\x00Modifica metadati\x00Modifica metadati\x00Modifica metadati\x00Modifica metadati in gruppo\x00Modifica metadati individualmente\x00Caratteri inclusi\x00Abilita &rotazione automatica delle immagini\x00Abilita la rotazione automatica delle immagini che sono pi\xc3\xb9 larghe dello schermo\x00Errore\x00Errore di comunicazione col dispositivo\x00Errore nella lettura del file\x00Errore di comunicazione col dispositivo\x00Estrae la miniatura da un file LRF\x00Scaricamento fallito dell\'articolo: %s da %s\n\x00Scaricamento dei seguenti articoli fallito parzialmente:\x00Scaricamento dei seguenti articoli fallito:\x00Analisi fallita del link %s %s\x00Processamento del file OPF fallito\x00&URL del feed:\x00Il feed deve avere una URL\x00Il feed deve avere un titolo\x00Feed scaricati in %s\x00Feed nella formula\x00Scarica\x00Scarica immagine di copertina dal server\x00Scarica metadati\x00Scarica metadati dal server\x00Scarica notizie\x00Scarica notizie da \x00Scaricamento feed\x00Scaricamento feed...\x00Scaricamento metadati per <b>%1</b>\x00Scaricamento notizie da \x00Scaricamento della formula fallito: \x00Meno\x00&Nome file:\x00Mette a punto in modo fine l\'individuazione delle intestazioni dei capitoli e delle sezioni\x00Finito\x00Per un aiuto su come scrivere formule di notizie avanzate, visitare <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">Formule utente</a>\x00Forza un\'interruzione di pagina prima di un elemento che possiede l\'attributo specificato. Il formato per questa opzione \xc3\xa8 nometag regexp, nome attributo, valore attributo regexp. Per esempio, per far corrispondere tutti i tag intestazione che hanno l\'attributo class="chapter" bisogna usare "h\\d,class,chapter". Predefinita: %default\x00Forza un\'interruzione di pagina prima dei tag i cui nomi corrispondono a questa espressione regolare\x00Forza interruzione di pagina prima dell\'&attributo:\x00Formato\x00Formato\x00Formati\x00Avanti\x00Libera lo spazio non utilizzato dal database\x00Cartelle usate frequentemente\x00Ricevuti feed dalla pagina principale\x00Intestazione\x00Aiuto per l\'elemento\x00Unisci\x00IS&BN:\x00Se html2lrf non trova nessuna interruzione di pagina nel file HTML e non riesce a individuare le intestazioni dei capitoli, inserir\xc3\xa0 automaticamente un\'interruzione di pagina prima dei tag il cui nome corrisponde a questa espressione regolare. Predefinita: %default. \xc3\x88 possibile disabilitarla impostando la regexp a "$". Lo scopo di questa opzione \xc3\xa8 quello di provare ad assicurarsi che non ci siano pagine molto lunghe, dato che queste degradano le prestazioni dell\'LRF nel girare la pagina. Questa opzione viene perci\xc3\xb2 ignorata se la pagina corrente ha solo pochi elementi\x00Se il tag voluto non \xc3\xa8 nella lista di quelli disponibili, \xc3\xa8 possibile aggiungerlo qui. Accetta una lista di tag separati da virgola\x00Se esiste una copertina grafica individuata nel file di origine, usa quella invece della copertina specificata\x00Ignor&a colori\x00Ignora ta&belle\x00Aumenta la dimensione dei caratteri di 2 * FONT_DELTA punti e la spaziatura tra le linee di FONT_DELTA punti. FONT_DELTA pu\xc3\xb2 essere una frazione. Se FONT_DELTA \xc3\xa8 negativo, la grandezza dei caratteri verr\xc3\xa0 diminuita\x00Ins&erisci linee bianche tra i paragrafi\x00Database non valido\x00Percorso database non valido\x00Percorso database non valido \x00Percorso database non valido.<br>Impossibile scrivere su\x00Input non valido\x00Espressione regolare non valida\x00Espressione regolare non valida: %s\x00Lavoro\x00Lavoro terminato dall\'utente\x00Lavori:\x00Visualizzatore LRF\x00LRS scritto in \x00Margine sinistro della pagina. Predefinito: %default px\x00Biblioteca\x00Lista di serie conosciute. \xc3\x88 possibile aggiungere nuove serie\x00Visualizzazione\x00&Corrispondenza con tutti i criteri seguenti\x00C&orrispondenza con uno qualunque dei criteri seguenti\x00Corrispondenze\x00Massimo numero di articoli da scaricare per feed\x00Numero massimo di livelli ricorsivi, cio\xc3\xa8 profondit\xc3\xa0 dei link da seguire. Predefinito: %default\x00Metadati\x00Metadati\x00Minimizza l\'uso di memoria al costo di un maggior tempo di processamento. Usare questa opzione se si \xc3\xa8 su una macchina a corto di memoria\x00I&ndentazione minima:\x00Intervallo minimo in secondi tra due scaricamenti consecutivi. Predefinito: %default s\x00Indentazione minima paragrafo (l\'indentazione della prima riga di un paragrafo) in pt. Predefinita: %default\x00Di pi\xc3\xb9\x00Nega\x00Notizie scaricate. Salvataggio sul dispositivo\x00Pagina successiva\x00Prossima corrispondenza\x00Nessun formato disponibile\x00Nessun libro selezionato\x00Nessun libro selezionato\x00Nessun file da convertire specificato\x00Nessun nome file specificato\x00Nessuna corrispondenza\x00Nessuna corrispondenza trovata\x00Spazio insufficiente sul dispositivo\x00Nessuno\x00Numero di livelli di link da seguire nelle pagine web che sono collegate ai feed. Predefinito: %default\x00Libro OEB creato in\x00Verranno seguiti solamente i link che corrispondono a questa espressione regolare. Questa opzione pu\xc3\xb2 essere specificata pi\xc3\xb9 volte, in questo modo se un link corrisponde a una delle espressioni regolari verr\xc3\xa0 seguito. Per impostazione predefinita i link non vengono seguiti\x00Apri l\'editor dei tag\x00Apri libro\x00Opzioni\x00Opzioni per controllare il comportamento di feeds2disk\x00Opzioni per controllare il comportamento di html2lrf\x00Opzioni per controllare web2disk (usato per scaricare i siti collegati ai feed)\x00Estrae un file LRS\x00Cartella in uscita. Predefinita: cartella corrente\x00Nome del file in uscita. Il nome predefinito \xc3\xa8 preso dal file in ingresso\x00Sovrascrive il CSS. Pu\xc3\xb2 essere un percorso ad un foglio di stile CSS o una stringa. Se \xc3\xa8 una stringa, sar\xc3\xa0 interpretata come CSS\x00Sovrascrivi<br>CSS\x00Imposta pagina\x00Analisi file LRF\x00Analisi LRF...\x00Password per i siti che richiedono un\'identificazione per accedere ai contenuti\x00Password necessaria\x00Percorso\x00Percorso a un\'immagine che verr\xc3\xa0 impostata come miniatura di questo file\x00Percorso a un file TXT contenente il commento che verr\xc3\xa0 incluso nel file LRF\x00Percorso al file contenente l\'immagine da usare come copertina\x00Percorso della cartella in uscita dove creare il file HTML. Predefinito: cartella corrente\x00Percorso del file in uscita\x00Preprocessa i file HTML di Baen per migliorare i file LRF generati\x00Preprocessa il file prima di convertirlo in LRF. \xc3\x88 utile se si conosce la fonte da cui proviene il file. Fonti conosciute:\x00Previene l\'inserimento automatico di interruzioni di pagina prima dei capitoli individuati\x00Pagina precedente\x00Invia l\'HTML generato allo stdout ed esce\x00Sto processando %s\x00Profilo del dispositivo per cui viene generato questo LRF. Il profilo determina parametri come la risoluzione e la dimensione dello schermo del dispositivo. Predefinito: %s. Profili supportati: \x00Progresso\x00Editore\x00Giudizio\x00Giudizio su questo libro. 0-5 stelle\x00MOBI HTML raw salvato in\x00Lettore\n%s disponibili\x00&Titolo formula:\x00Codice sorgente formula (python)\x00&Espressione regolare\x00Nome del gruppo per l\'espressione regolare (?P<authors>)\x00Nome del gruppo per l\'espressione regolare (?P<series>)\x00Nome del gruppo per l\'espressione regolare (?P<series_index>)\x00Nome del gruppo per l\'espressione regolare (?P< title>)\x00Rimuove una cartella dalla lista delle cartelle usate frequentemente\x00Rimuovi libri\x00Rimuove il feed dalla formula\x00Rimuovi il formato selezionato dal database per questo libro\x00Rimuovi serie inutilizzate (che non hanno libri)\x00Trasforma le tabelle HTML in blocchi di testo invece che in vere tabelle.\nQuesta opzione \xc3\xa8 necessaria se il file HTML contiene tabelle molto grandi o complesse\x00Trasforma tutto il contenuto in bianco e nero al posto dei colori specificati dall\'HTML o dal CSS.\x00Sovrascrivere la formula?\x00Resetta ricerca veloce\x00Margine destro della pagina. Predefinito: %default px\x00Tempo di esecuzione\x00&Senza grazie:\x00Salva su disco\x00Salva su disco in una singola cartella\x00Cerca (Per la ricerca avanzata fare clic sul bottone a sinistra)\x00Criteri di ricerca\x00Cerca nella lista dei libri per titolo o autore<br><br>Parole separate da spazi hanno come operatore AND\x00Cerca nella lista dei libri per titolo, autore, editore, tag e commenti<br><br>Parole separate da spazi hanno come operatore AND\x00Selezionare il libro che corrisponde maggiormente alla propria copia dall\'elenco sottostante\x00&Selezionare le colonne visibili nella vista biblioteca\x00Invia al dispositivo\x00Invia alla memoria principale\x00Invia alla scheda di memoria\x00Separa i paragrafi con linee bianche\x00Serie\x00Indice serie\x00Indice serie:\x00Serie:\x00Errore del server. Ritentare pi\xc3\xb9 tardi\x00Imposta l\'ID del libro\x00Impostazioni di conversione predefinite\x00Imposta la chiave per la classificazione dell\'autore\x00Imposta la chiave per la classificazione del titolo\x00Imposta l\'autore\x00Imposta l\'autore. Autori multipli devono essere separati da una virgola. Predefinito: %default\x00Imposta gli autori\x00Imposta il titolo del libro\x00Imposta la categoria\x00Imposta il commento\x00Imposta il commento\x00Imposta il timeout predefinito per gli scaricamenti dalla rete (cio\xc3\xa8 ogni volta che si usa Internet per prelevare informazioni)\x00Imposta il formato dell\'intestazione. %a verr\xc3\xa0 rimpiazzato dall\'autore e %t dal titolo. L\'impostazione predefinita \xc3\xa8 %default\x00Imposta lo spazio tra le parole in punti. Il valore predefinito \xc3\xa8 %default\x00Imposta il titolo. Predefinito: nome del file\x00Mostra un output dettagliato. Utile per il debugging\x00Sottoscrivere un account gratuito su <a href="http://www.isbndb.com">ISBNdb.com</a> per ottenere delle chiavi d\'accesso.\x00Dimensione (MB)\x00Chiave per la classificazione dell\'autore\x00Chiave per la classificazione del titolo\x00C&odifica sorgente:\x00Specificare una lista di feed da scaricare. Per esempio: \n"[\'http://feeds.newsweek.com/newsweek/TopNews\', \'http://feeds.newsweek.com/headlines/politics\']"\nSe si specifica questa opzione, ogni indice per %prog viene ignorato e viene usata una formula predefinita per scaricare i feed.\x00Specifica come deve essere classificato l\'autore di questo libro. Ad esempio, Charles Dickens deve essere classificato come Dickens, Charles.\x00Specifica metadati come il titolo e l\'autore del libro.<p>I metadati saranno aggiornati nel database e nel file LRF generato\x00Specifica la dimensione del testo base in punti. Tutti i caratteri saranno scalati in accordo.\nQuesta opzione rende obsoleta l\'opzione --font-delta e ha precedenza su quest\'ultima. Per usare --font-delta, impostare questa a 0\x00Specifica la codifica caratteri del file di origine. Se il file LRF generato contiene caratteri strani, provare a cambiare questa opzione. Una codifica comune per i computer Windows \xc3\xa8 cp-1252. Un\'altra scelta comune \xc3\xa8 utf-8. L\'opzione predefinita \xc3\xa8 quella di provare ad indovinare la codifica\x00Specifica le impostazioni della pagina come i margini e la dimensione dello schermo del dispositivo\x00Specifica la famiglia di caratteri truetype per i caratteri con grazie, senza grazie e a spaziatura fissa. Questi caratteri saranno inclusi nel file LRF. Si noti che i caratteri personalizzati portano a una maggiore lentezza nel girare le pagine. Ogni specificazione di famiglia \xc3\xa8 della forma: "percorso alla cartella dei caratteri, famiglia". Ad esempio: --serif-family "%s, Times New Roman"\n \x00Inizio scaricamento [%d articolo(i)]...\x00Stato\x00Passa alla modalit\xc3\xa0 avanzata\x00Passa alla modalit\xc3\xa0 base\x00T&ag: \x00La tabella ha celle troppo larghe\x00Tag\x00Editor di tag\x00Individuazione basata sui tag\x00Tag\x00I tag categorizzano un libro. Questo \xc3\xa8 particolarmente utile durante le ricerche. <br>Possono essere qualsiasi parola o frase, separati da una virgola\x00Test\x00EtichettaDiTesto\x00Il codice ISBN del libro di cui si vogliono i metadati\x00L\'autore del libro da cercare\x00La categoria a cui questo libro appartiene. Es: Storia\x00La codifica caratteri del sito webb che si sta cercando di scaricare. L\'impostazione predefinita \xc3\xa8 quella di provare a indovinare la codifica\x00La cartella in cui salvare i feed scaricati. Perdefinita: cartella corrente\x00Il feed %S deve avere una URL\x00Il feed deve avere un titolo\x00Il numero massimo di file da scaricare. Questa si applica solo ai file dai tag <a fref>. Predefinito: %default\x00Il numero massimo di livelli per processare ricorsivamente i link. Il valore 0 significa che i link non vengono seguiti. Un valore negativo significa che i tag <a> vengono ignorati\x00La famiglia di caratteri a spaziatura fissa da includere\x00L\'articolo pi\xc3\xb9 vecchio da scaricare\x00L\'editore del libro da cercare\x00L\'espressione regolare utilizzata per individuare i titoli dei capitoli. I titoli vengono cercati nei tag d\'intestazione (H1-H6). Predefinita: %default\x00La famiglia di caratteri senza grazie da includere\x00La famiglia di caratteri con grazie da includere\x00Il testo da cercare. \xc3\x88 interpretato come un\'espressione regolare\x00Il titolo per questa formula. Usato come titolo per ogni libro creato da questi feed scaricati\x00Il titolo del libro da cercare\x00Si \xc3\xa8 verificato un errore di comunicazione temporaneo col dispositivo. Disconnettere e riconnettere il dispositivo e/o riavviare\x00Questo feed \xc3\xa8 gi\xc3\xa0 stato aggiunto alla formula\x00Timeout in secondi da aspettare per una risposta dal server. Predefinito: %default s\x00Timestamp\x00Titolo\x00Individuazione basata sul titolo\x00Titolo:\x00Margine superiore della pagina. Predefinito: %default px\x00Tentativo di scaricamento della copertina...\x00Impossibile processare l\'immagine %s. Errore: %s\x00Impossibile processare la PNG interlacciata %s\x00Rimuovi il tag dal libro corrente\x00Non disponibile\x00Sconosciuto\x00Sorgente di notizie sconosciuta\x00Feed sconosciuto\x00Articolo senza titolo\x00Articolo senza titolo\x00Uso:\x00Uso: %prog [opzioni] miolibro.epub\n \n \n%prog converte miolibro.epub in miolibro.lrf\x00Uso: %prog [opzioni] miolibro.html\n\n\n%prog converte miolibro.html in miolibro.lrf.\n%prog segue ricorsivamente tutti i link in miolibro.html\nche puntano a file locali. In questo modo \xc3\xa8 possibile\nusarlo per convertire un intero albero di file HTML\x00Uso: %prog [opzioni] miolibro.lit\n\n\n%prog converte miolibro.lit in miolibro.lrf\x00Uso: %prog [opzioni] miolibro.mobi|prc\n\n\n%prog converte miolibro.mobi in miolibro.lrf\x00Uso: %s file.lit\x00Uso: pdf-meta-file.pdf\x00&Usare numeri romani per i numeri delle serie\x00Usa copertina del file di &origine\x00Usa l\'elemento <spine> dal file OPF per determinare in quale ordine i file HTML devono essere aggiunti al file LRF. Il file OPF deve essere nella stessa cartella del file HTML principale\x00Usare questa opzione sui file html0 di Book Designer\x00Usa uno sfondo bianco\x00Utile per lo sviluppo delle formule. Forza max_articles_per_feed a 2 e scarica al massimo 2 feed\x00Nome utente per i siti che richiedono un\'identificazione per accedere ai contenuti\x00Processamento prolisso\x00Output molto prolisso, utile per il debugging\x00Leggi\x00Leggi uno specifico formato\x00In attesa\x00In esecuzione\x00HTML preprocessato scritto in \x00Non si hanno i permessi per leggere il file: \x00\xc3\x88 necessario prima salvare il sito web %s come un file HTML e poi eseguire html2lrf su di esso\x00\xc3\x88 necessario aggiungere questa opzione se si stanno processando file generati da pdftohtml, altrimenti la conversione non riuscir\xc3\xa0\x00\xc3\x88 necessario specificare un singolo file PDF\x00\xc3\x88 necessario specificare delle chiavi d\'accesso valide per isbndb.com\x00\xc3\x88 necessario specificare il codice ISBN di questo libro\x00any2lrf [opzioni] miofile\n\nConverte qualsiasi formato di libro in LRF. I formati supportati sono:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC e PDF. Any2lrf processer\xc3\xa0 anche un\narchivio RAR o ZIP, cercando i libri dentro l\'archivio.\n \x00contiene\x00libprs500\x00miolibro.epub\x00', 'sl': '\xde\x12\x04\x95\x00\x00\x00\x00\x01\x00\x00\x00\x1c\x00\x00\x00$\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00,\x00\x00\x00(\x01\x00\x00-\x00\x00\x00\x00Project-Id-Version: libprs500 0.4.17\nPOT-Creation-Date: 2008-04-04 09:07+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\xee\x01\x00\x00\x1c\x00\x00\x00\x8c\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xfc\x1e\x00\x00"\x00\x00\x00\xfd\x1e\x00\x00\x1d\x00\x00\x00 \x1f\x00\x00\x16\x00\x00\x00>\x1f\x00\x00\x0e\x00\x00\x00U\x1f\x00\x00\x10\x00\x00\x00d\x1f\x00\x00a\x00\x00\x00u\x1f\x00\x00+\x01\x00\x00\xd7\x1f\x00\x00!\x00\x00\x00\x03!\x00\x00\x05\x00\x00\x00%!\x00\x00\x06\x00\x00\x00+!\x00\x00\x17\x00\x00\x002!\x00\x00\x0b\x00\x00\x00J!\x00\x00\x04\x00\x00\x00V!\x00\x00\x03\x00\x00\x00[!\x00\x00\x08\x00\x00\x00_!\x00\x00\x06\x00\x00\x00h!\x00\x00\xfd\x01\x00\x00o!\x00\x005\x00\x00\x00m#\x00\x00>\x00\x00\x00\xa3#\x00\x00E\x00\x00\x00\xe2#\x00\x00D\x00\x00\x00($\x00\x00D\x00\x00\x00m$\x00\x00D\x00\x00\x00\xb2$\x00\x00\x1c\x00\x00\x00\xf7$\x00\x00G\x00\x00\x00\x14%\x00\x00\x1c\x00\x00\x00\\%\x00\x00\x0e\x00\x00\x00y%\x00\x00\x0c\x00\x00\x00\x88%\x00\x00\t\x00\x00\x00\x95%\x00\x00\t\x00\x00\x00\x9f%\x00\x00\x0c\x00\x00\x00\xa9%\x00\x00\x0f\x00\x00\x00\xb6%\x00\x00\x11\x00\x00\x00\xc6%\x00\x00\x1a\x00\x00\x00\xd8%\x00\x00\x0c\x00\x00\x00\xf3%\x00\x00\x1d\x00\x00\x00\x00&\x00\x00\x0f\x00\x00\x00\x1e&\x00\x00\r\x00\x00\x00.&\x00\x00)\x00\x00\x00<&\x00\x00"\x00\x00\x00f&\x00\x00\x18\x00\x00\x00\x89&\x00\x00\x0b\x00\x00\x00\xa2&\x00\x00\x10\x00\x00\x00\xae&\x00\x00\x17\x00\x00\x00\xbf&\x00\x00\n\x00\x00\x00\xd7&\x00\x00\x0c\x00\x00\x00\xe2&\x00\x00\x1e\x00\x00\x00\xef&\x00\x00\t\x00\x00\x00\x0e\'\x00\x00\x0c\x00\x00\x00\x18\'\x00\x00\x08\x00\x00\x00%\'\x00\x00\x14\x00\x00\x00.\'\x00\x00\x0e\x00\x00\x00C\'\x00\x00\r\x00\x00\x00R\'\x00\x00\x0e\x00\x00\x00`\'\x00\x00\x08\x00\x00\x00o\'\x00\x00\x08\x00\x00\x00x\'\x00\x00\x07\x00\x00\x00\x81\'\x00\x00\x0c\x00\x00\x00\x89\'\x00\x00\x0e\x00\x00\x00\x96\'\x00\x00\x12\x00\x00\x00\xa5\'\x00\x00\x05\x00\x00\x00\xb8\'\x00\x00\x08\x00\x00\x00\xbe\'\x00\x00\x0c\x00\x00\x00\xc7\'\x00\x00\n\x00\x00\x00\xd4\'\x00\x00\x0e\x00\x00\x00\xdf\'\x00\x00\x03\x00\x00\x00\xee\'\x00\x001\x00\x00\x00\xf2\'\x00\x00"\x00\x00\x00$(\x00\x00=\x00\x00\x00G(\x00\x00\x18\x00\x00\x00\x85(\x00\x00+\x00\x00\x00\x9e(\x00\x00\x00\x02\x00\x00\xca(\x00\x00\xa3\x01\x00\x00\xcb*\x00\x00\x82\x02\x00\x00o,\x00\x00>\x00\x00\x00\xf2.\x00\x00S\x00\x00\x001/\x00\x005\x00\x00\x00\x85/\x00\x00p\x00\x00\x00\xbb/\x00\x00a\x00\x00\x00,0\x00\x00G\x00\x00\x00\x8e0\x00\x00(\x00\x00\x00\xd60\x00\x00\xa7\x00\x00\x00\xff0\x00\x00W\x00\x00\x00\xa71\x00\x00\x96\x00\x00\x00\xff1\x00\x00=\x01\x00\x00\x962\x00\x002\x00\x00\x00\xd43\x00\x00T\x00\x00\x00\x074\x00\x00\x01\x00\x00\x00\\4\x00\x00C\x00\x00\x00^4\x00\x00X\x00\x00\x00\xa24\x00\x00\r\x00\x00\x00\xfb4\x00\x00\x0f\x00\x00\x00\t5\x00\x00\x0b\x00\x00\x00\x195\x00\x00\x0b\x00\x00\x00%5\x00\x00\x18\x00\x00\x0015\x00\x007\x00\x00\x00J5\x00\x004\x00\x00\x00\x825\x00\x00.\x00\x00\x00\xb75\x00\x00\t\x00\x00\x00\xe65\x00\x00!\x00\x00\x00\xf05\x00\x00b\x00\x00\x00\x126\x00\x00o\x00\x00\x00u6\x00\x00\x16\x00\x00\x00\xe56\x00\x00\x12\x00\x00\x00\xfc6\x00\x006\x00\x00\x00\x0f7\x00\x00\x12\x00\x00\x00F7\x00\x00m\x00\x00\x00Y7\x00\x00\x08\x00\x00\x00\xc77\x00\x00\x0f\x00\x00\x00\xd07\x00\x00\x0f\x00\x00\x00\xe07\x00\x00\x0e\x00\x00\x00\xf07\x00\x00\x05\x00\x00\x00\xff7\x00\x00F\x00\x00\x00\x058\x00\x00\x03\x00\x00\x00L8\x00\x005\x01\x00\x00P8\x00\x00\x19\x00\x00\x00\x869\x00\x00\x1b\x00\x00\x00\xa09\x00\x00\x16\x00\x00\x00\xbc9\x00\x00\x06\x00\x00\x00\xd39\x00\x00\x0e\x00\x00\x00\xda9\x00\x00\r\x00\x00\x00\xe99\x00\x00\t\x00\x00\x00\xf79\x00\x00\x08\x00\x00\x00\x01:\x00\x00\x11\x00\x00\x00\n:\x00\x00\x16\x00\x00\x00\x1c:\x00\x00\x04\x00\x00\x003:\x00\x00\r\x00\x00\x008:\x00\x00\x10\x00\x00\x00F:\x00\x00;\x00\x00\x00W:\x00\x00\x05\x00\x00\x00\x93:\x00\x00!\x00\x00\x00\x99:\x00\x00\x10\x00\x00\x00\xbb:\x00\x00\x1b\x00\x00\x00\xcc:\x00\x00\x05\x00\x00\x00\xe8:\x00\x00(\x00\x00\x00\xee:\x00\x00\n\x00\x00\x00\x17;\x00\x00.\x00\x00\x00";\x00\x005\x00\x00\x00Q;\x00\x00$\x00\x00\x00\x87;\x00\x00\x0c\x00\x00\x00\xac;\x00\x00\x1a\x00\x00\x00\xb9;\x00\x00\x19\x00\x00\x00\xd4;\x00\x00\x10\x00\x00\x00\xee;\x00\x00.\x00\x00\x00\xff;\x00\x00\x0e\x00\x00\x00.<\x00\x00\x0e\x00\x00\x00=<\x00\x007\x00\x00\x00L<\x00\x00\x14\x00\x00\x00\x84<\x00\x00\x12\x00\x00\x00\x99<\x00\x00#\x00\x00\x00\xac<\x00\x00\x0f\x00\x00\x00\xd0<\x00\x00Z\x00\x00\x00\xe0<\x00\x00\x19\x00\x00\x00;=\x00\x00\x0b\x00\x00\x00U=\x00\x00\x14\x00\x00\x00a=\x00\x00\x13\x00\x00\x00v=\x00\x00\x0b\x00\x00\x00\x8a=\x00\x00\x11\x00\x00\x00\x96=\x00\x00\x08\x00\x00\x00\xa8=\x00\x00\x14\x00\x00\x00\xb1=\x00\x00\x0f\x00\x00\x00\xc6=\x00\x00R\x00\x00\x00\xd6=\x00\x00!\x00\x00\x00)>\x00\x00\x1d\x00\x00\x00K>\x00\x00H\x00\x00\x00i>\x00\x00\x11\x00\x00\x00\xb2>\x00\x00\r\x00\x00\x00\xc4>\x00\x00%\x00\x00\x00\xd2>\x00\x00\x19\x00\x00\x00\xf8>\x00\x00!\x00\x00\x00\x12?\x00\x007\x00\x00\x004?\x00\x00\x08\x00\x00\x00l?\x00\x00+\x00\x00\x00u?\x00\x00\r\x00\x00\x00\xa1?\x00\x00\r\x00\x00\x00\xaf?\x00\x00\t\x00\x00\x00\xbd?\x00\x00\x10\x00\x00\x00\xc7?\x00\x00\x11\x00\x00\x00\xd8?\x00\x00\x0f\x00\x00\x00\xea?\x00\x00)\x00\x00\x00\xfa?\x00\x00\x14\x00\x00\x00$@\x00\x00\x0e\x00\x00\x009@\x00\x00\x0e\x00\x00\x00H@\x00\x00\x1c\x00\x00\x00W@\x00\x00;\x00\x00\x00t@\x00\x00\x15\x00\x00\x00\xb0@\x00\x00R\x00\x00\x00\xc6@\x00\x00\x17\x00\x00\x00\x19A\x00\x00\x18\x00\x00\x001A\x00\x00\x1e\x00\x00\x00JA\x00\x00\x1e\x00\x00\x00iA\x00\x00\x0e\x00\x00\x00\x88A\x00\x00\x0b\x00\x00\x00\x97A\x00\x00\x0f\x00\x00\x00\xa3A\x00\x00\x13\x00\x00\x00\xb3A\x00\x00\x04\x00\x00\x00\xc7A\x00\x00\x19\x00\x00\x00\xccA\x00\x00\x03\x00\x00\x00\xe6A\x00\x00h\x00\x00\x00\xeaA\x00\x00\x0e\x00\x00\x00SB\x00\x00\x19\x00\x00\x00bB\x00\x00 \x00\x00\x00|B\x00\x00\x1b\x00\x00\x00\x9dB\x00\x00\x1a\x00\x00\x00\xb9B\x00\x00&\x00\x00\x00\xd4B\x00\x00\x11\x00\x00\x00\xfbB\x00\x00\x19\x00\x00\x00\rC\x00\x00\x11\x00\x00\x00\'C\x00\x00\x01\x00\x00\x009C\x00\x00\x05\x00\x00\x00;C\x00\x00\x15\x00\x00\x00AC\x00\x00\x15\x00\x00\x00WC\x00\x00\x15\x00\x00\x00mC\x00\x00\x15\x00\x00\x00\x83C\x00\x00\x1a\x00\x00\x00\x99C\x00\x00\x0e\x00\x00\x00\xb4C\x00\x00\x1f\x00\x00\x00\xc3C\x00\x00C\x00\x00\x00\xe3C\x00\x00\x05\x00\x00\x00\'D\x00\x00\x1f\x00\x00\x00-D\x00\x00\x12\x00\x00\x00MD\x00\x00\x17\x00\x00\x00`D\x00\x00\x1f\x00\x00\x00xD\x00\x00\'\x00\x00\x00\x98D\x00\x003\x00\x00\x00\xc0D\x00\x00*\x00\x00\x00\xf4D\x00\x00\x1a\x00\x00\x00\x1fE\x00\x00\x1a\x00\x00\x00:E\x00\x00\n\x00\x00\x00UE\x00\x00\x14\x00\x00\x00`E\x00\x00\x16\x00\x00\x00uE\x00\x00\x16\x00\x00\x00\x8cE\x00\x00\x0f\x00\x00\x00\xa3E\x00\x00\x05\x00\x00\x00\xb3E\x00\x00\x1d\x00\x00\x00\xb9E\x00\x00\x0e\x00\x00\x00\xd7E\x00\x00\x1a\x00\x00\x00\xe6E\x00\x00\n\x00\x00\x00\x01F\x00\x00\x10\x00\x00\x00\x0cF\x00\x00\r\x00\x00\x00\x1dF\x00\x00\x11\x00\x00\x00+F\x00\x00\x1f\x00\x00\x00=F\x00\x00\x13\x00\x00\x00]F\x00\x00\x1b\x00\x00\x00qF\x00\x00\x05\x00\x00\x00\x8dF\x00\x00\x0b\x00\x00\x00\x93F\x00\x008\x00\x00\x00\x9fF\x00\x00\x08\x00\x00\x00\xd8F\x00\x00\x8a\x00\x00\x00\xe1F\x00\x00\x1d\x01\x00\x00lG\x00\x00J\x00\x00\x00\x8aH\x00\x00#\x00\x00\x00\xd5H\x00\x00\x04\x00\x00\x00\xf9H\x00\x00\x06\x00\x00\x00\xfeH\x00\x00\x07\x00\x00\x00\x05I\x00\x00\x07\x00\x00\x00\rI\x00\x00\'\x00\x00\x00\x15I\x00\x00\x1b\x00\x00\x00=I\x00\x00\x19\x00\x00\x00YI\x00\x00\x06\x00\x00\x00sI\x00\x00\x0c\x00\x00\x00zI\x00\x00\t\x00\x00\x00\x87I\x00\x00\x06\x00\x00\x00\x91I\x00\x00\xdc\x01\x00\x00\x98I\x00\x00n\x00\x00\x00uK\x00\x00a\x00\x00\x00\xe4K\x00\x00\x0e\x00\x00\x00FL\x00\x00\x0e\x00\x00\x00UL\x00\x00\xa8\x00\x00\x00dL\x00\x00&\x00\x00\x00\rM\x00\x00\x10\x00\x00\x004M\x00\x00\x19\x00\x00\x00EM\x00\x00\x1a\x00\x00\x00_M\x00\x00.\x00\x00\x00zM\x00\x00\r\x00\x00\x00\xa9M\x00\x00\x1a\x00\x00\x00\xb7M\x00\x00\x1e\x00\x00\x00\xd2M\x00\x00\x03\x00\x00\x00\xf1M\x00\x00\x12\x00\x00\x00\xf5M\x00\x00\x05\x00\x00\x00\x08N\x00\x00\n\x00\x00\x00\x0eN\x00\x00\x0f\x00\x00\x00\x19N\x00\x00,\x00\x00\x00)N\x00\x00\x07\x00\x00\x00VN\x00\x00-\x00\x00\x00^N\x00\x00\x0b\x00\x00\x00\x8cN\x00\x00$\x00\x00\x00\x98N\x00\x00$\x00\x00\x00\xbdN\x00\x00\x07\x00\x00\x00\xe2N\x00\x000\x00\x00\x00\xeaN\x00\x00S\x00\x00\x00\x1bO\x00\x00\x10\x00\x00\x00oO\x00\x00\x08\x00\x00\x00\x80O\x00\x00y\x00\x00\x00\x89O\x00\x00\x10\x00\x00\x00\x03P\x00\x00N\x00\x00\x00\x14P\x00\x00`\x00\x00\x00cP\x00\x00\x04\x00\x00\x00\xc4P\x00\x00\x06\x00\x00\x00\xc9P\x00\x00"\x00\x00\x00\xd0P\x00\x00\t\x00\x00\x00\xf3P\x00\x00\n\x00\x00\x00\xfdP\x00\x00\x14\x00\x00\x00\x08Q\x00\x00\x10\x00\x00\x00\x1dQ\x00\x00\x11\x00\x00\x00.Q\x00\x00\x1d\x00\x00\x00@Q\x00\x00\x16\x00\x00\x00^Q\x00\x00\x08\x00\x00\x00uQ\x00\x00\x10\x00\x00\x00~Q\x00\x00\x12\x00\x00\x00\x8fQ\x00\x00\x04\x00\x00\x00\xa2Q\x00\x00^\x00\x00\x00\xa7Q\x00\x00\x14\x00\x00\x00\x06R\x00\x00\xdc\x00\x00\x00\x1bR\x00\x00\x0f\x00\x00\x00\xf8R\x00\x00\n\x00\x00\x00\x08S\x00\x00\x07\x00\x00\x00\x13S\x00\x00-\x00\x00\x00\x1bS\x00\x00+\x00\x00\x00IS\x00\x00F\x00\x00\x00uS\x00\x00\x0f\x00\x00\x00\xbcS\x00\x000\x00\x00\x00\xccS\x00\x008\x00\x00\x00\xfdS\x00\x00s\x00\x00\x006T\x00\x00\x0f\x00\x00\x00\xaaT\x00\x00\n\x00\x00\x00\xbaT\x00\x00\x10\x00\x00\x00\xc5T\x00\x00\x0e\x00\x00\x00\xd6T\x00\x00:\x00\x00\x00\xe5T\x00\x00\x0f\x00\x00\x00 U\x00\x00\x04\x00\x00\x000U\x00\x00;\x00\x00\x005U\x00\x00G\x00\x00\x00qU\x00\x001\x00\x00\x00\xb9U\x00\x00Y\x00\x00\x00\xebU\x00\x00\x13\x00\x00\x00EV\x00\x004\x00\x00\x00YV\x00\x00\x80\x00\x00\x00\x8eV\x00\x00H\x00\x00\x00\x0fW\x00\x00\r\x00\x00\x00XW\x00\x00(\x00\x00\x00fW\x00\x00\r\x00\x00\x00\x8fW\x00\x00\xbc\x00\x00\x00\x9dW\x00\x00\x08\x00\x00\x00ZX\x00\x00\t\x00\x00\x00cX\x00\x00\x06\x00\x00\x00mX\x00\x00\x1e\x00\x00\x00tX\x00\x00\x16\x00\x00\x00\x93X\x00\x00\x13\x00\x00\x00\xaaX\x00\x00\x0e\x00\x00\x00\xbeX\x00\x00\x1b\x00\x00\x00\xcdX\x00\x00\x13\x00\x00\x00\xe9X\x00\x00+\x00\x00\x00\xfdX\x00\x00*\x00\x00\x00)Y\x00\x000\x00\x00\x00TY\x00\x00)\x00\x00\x00\x85Y\x00\x00<\x00\x00\x00\xafY\x00\x00\x0c\x00\x00\x00\xecY\x00\x00\x17\x00\x00\x00\xf9Y\x00\x00<\x00\x00\x00\x11Z\x00\x000\x00\x00\x00NZ\x00\x00\x84\x00\x00\x00\x7fZ\x00\x00X\x00\x00\x00\x04[\x00\x00\x0f\x00\x00\x00][\x00\x00\x12\x00\x00\x00m[\x00\x00-\x00\x00\x00\x80[\x00\x00\x0c\x00\x00\x00\xae[\x00\x00\x0c\x00\x00\x00\xbb[\x00\x00\x0c\x00\x00\x00\xc8[\x00\x00"\x00\x00\x00\xd5[\x00\x009\x00\x00\x00\xf8[\x00\x00\x0f\x00\x00\x002\\\x00\x00V\x00\x00\x00B\\\x00\x00r\x00\x00\x00\x99\\\x00\x00G\x00\x00\x00\x0c]\x00\x00\'\x00\x00\x00T]\x00\x00\x0e\x00\x00\x00|]\x00\x00\x13\x00\x00\x00\x8b]\x00\x00\x14\x00\x00\x00\x9f]\x00\x00#\x00\x00\x00\xb4]\x00\x00\x06\x00\x00\x00\xd8]\x00\x00\r\x00\x00\x00\xdf]\x00\x00\r\x00\x00\x00\xed]\x00\x00\x07\x00\x00\x00\xfb]\x00\x00\x1e\x00\x00\x00\x03^\x00\x00\x0b\x00\x00\x00"^\x00\x00\x17\x00\x00\x00.^\x00\x00\x1b\x00\x00\x00F^\x00\x00\x1a\x00\x00\x00b^\x00\x00\x0e\x00\x00\x00}^\x00\x00^\x00\x00\x00\x8c^\x00\x00\x0f\x00\x00\x00\xeb^\x00\x00\x12\x00\x00\x00\xfb^\x00\x00\x10\x00\x00\x00\x0e_\x00\x00\x0f\x00\x00\x00\x1f_\x00\x00\x10\x00\x00\x00/_\x00\x00g\x00\x00\x00@_\x00\x00c\x00\x00\x00\xa8_\x00\x007\x00\x00\x00\x0c`\x00\x00!\x00\x00\x00D`\x00\x006\x00\x00\x00f`\x00\x00d\x00\x00\x00\x9d`\x00\x00\t\x00\x00\x00\x02a\x00\x00\x17\x00\x00\x00\x0ca\x00\x00\x16\x00\x00\x00$a\x00\x00\x11\x00\x00\x00;a\x00\x00\x04\x01\x00\x00Ma\x00\x00z\x00\x00\x00Rb\x00\x00\x85\x00\x00\x00\xcdb\x00\x00\xb6\x00\x00\x00Sc\x00\x00\r\x01\x00\x00\nd\x00\x00P\x00\x00\x00\x18e\x00\x00+\x01\x00\x00ie\x00\x00#\x00\x00\x00\x95f\x00\x00\x06\x00\x00\x00\xb9f\x00\x00\x17\x00\x00\x00\xc0f\x00\x00\x14\x00\x00\x00\xd8f\x00\x00\x07\x00\x00\x00\xedf\x00\x00 \x00\x00\x00\xf5f\x00\x00\x03\x00\x00\x00\x16g\x00\x00\n\x00\x00\x00\x1ag\x00\x00\x13\x00\x00\x00%g\x00\x00\x04\x00\x00\x009g\x00\x00\x85\x00\x00\x00>g\x00\x00\x04\x00\x00\x00\xc4g\x00\x00\t\x00\x00\x00\xc9g\x00\x00.\x00\x00\x00\xd3g\x00\x00%\x00\x00\x00\x02h\x00\x000\x00\x00\x00(h\x00\x00q\x00\x00\x00Yh\x00\x00X\x00\x00\x00\xcbh\x00\x00\x1b\x00\x00\x00$i\x00\x00\x1a\x00\x00\x00@i\x00\x00k\x00\x00\x00[i\x00\x00\x9d\x00\x00\x00\xc7i\x00\x00&\x00\x00\x00ej\x00\x00\x1e\x00\x00\x00\x8cj\x00\x00(\x00\x00\x00\xabj\x00\x00v\x00\x00\x00\xd4j\x00\x00\'\x00\x00\x00Kk\x00\x00"\x00\x00\x00sk\x00\x00B\x00\x00\x00\x96k\x00\x00^\x00\x00\x00\xd9k\x00\x00$\x00\x00\x008l\x00\x00h\x00\x00\x00]l\x00\x00.\x00\x00\x00\xc6l\x00\x00N\x00\x00\x00\xf5l\x00\x00\t\x00\x00\x00Dm\x00\x00\x05\x00\x00\x00Nm\x00\x00\x15\x00\x00\x00Tm\x00\x00\x06\x00\x00\x00jm\x00\x00+\x00\x00\x00qm\x00\x00\x1b\x00\x00\x00\x9dm\x00\x00%\x00\x00\x00\xb9m\x00\x00#\x00\x00\x00\xdfm\x00\x00&\x00\x00\x00\x03n\x00\x00\x0b\x00\x00\x00*n\x00\x00\x07\x00\x00\x006n\x00\x00\x13\x00\x00\x00>n\x00\x00\x0c\x00\x00\x00Rn\x00\x00\x10\x00\x00\x00_n\x00\x00\x10\x00\x00\x00pn\x00\x00\x06\x00\x00\x00\x81n\x00\x00]\x00\x00\x00\x88n\x00\x00\xdb\x00\x00\x00\xe6n\x00\x00K\x00\x00\x00\xc2o\x00\x00Q\x00\x00\x00\x0ep\x00\x00\x12\x00\x00\x00`p\x00\x00\x18\x00\x00\x00sp\x00\x00%\x00\x00\x00\x8cp\x00\x00\x1b\x00\x00\x00\xb2p\x00\x00\xb4\x00\x00\x00\xcep\x00\x002\x00\x00\x00\x83q\x00\x00\x14\x00\x00\x00\xb6q\x00\x00_\x00\x00\x00\xcbq\x00\x00:\x00\x00\x00+r\x00\x00\x12\x00\x00\x00fr\x00\x00*\x00\x00\x00yr\x00\x00\x04\x00\x00\x00\xa4r\x00\x00\x14\x00\x00\x00\xa9r\x00\x00\x07\x00\x00\x00\xber\x00\x00\x07\x00\x00\x00\xc6r\x00\x00\x1d\x00\x00\x00\xcer\x00\x00-\x00\x00\x00\xecr\x00\x00R\x00\x00\x00\x1as\x00\x00d\x00\x00\x00ms\x00\x00#\x00\x00\x00\xd2s\x00\x002\x00\x00\x00\xf6s\x00\x003\x00\x00\x00)t\x00\x00\xdf\x00\x00\x00]t\x00\x00\x08\x00\x00\x00=u\x00\x00\t\x00\x00\x00Fu\x00\x00\x0b\x00\x00\x00Pu\x00\x00%\x01\x00\x00\\u\x00\x00)\x00\x00\x00\x82v\x00\x00\x1d\x00\x00\x00\xacv\x00\x00\x17\x00\x00\x00\xcav\x00\x00 \x00\x00\x00\xe2v\x00\x00\x13\x00\x00\x00\x03w\x00\x00e\x00\x00\x00\x17w\x00\x00\\\x01\x00\x00}w\x00\x00\x1d\x00\x00\x00\xdax\x00\x00\x05\x00\x00\x00\xf8x\x00\x00\x04\x00\x00\x00\xfex\x00\x00\x19\x00\x00\x00\x03y\x00\x00\r\x00\x00\x00\x1dy\x00\x00\x07\x00\x00\x00+y\x00\x00\t\x00\x00\x003y\x00\x00\t\x00\x00\x00=y\x00\x00\n\x00\x00\x00Gy\x00\x00+\x02\x00\x00Ry\x00\x00)\x00\x00\x00~{\x00\x00F\x00\x00\x00\xa8{\x00\x00T\x00\x00\x00\xef{\x00\x00P\x00\x00\x00D|\x00\x00P\x00\x00\x00\x95|\x00\x00P\x00\x00\x00\xe6|\x00\x00\x1e\x00\x00\x007}\x00\x00U\x00\x00\x00V}\x00\x00"\x00\x00\x00\xac}\x00\x00\x12\x00\x00\x00\xcf}\x00\x00\x11\x00\x00\x00\xe2}\x00\x00\x0e\x00\x00\x00\xf4}\x00\x00\x0f\x00\x00\x00\x03~\x00\x00\x0b\x00\x00\x00\x13~\x00\x00\x11\x00\x00\x00\x1f~\x00\x00\x15\x00\x00\x001~\x00\x00$\x00\x00\x00G~\x00\x00\x0c\x00\x00\x00l~\x00\x000\x00\x00\x00y~\x00\x00\x18\x00\x00\x00\xaa~\x00\x00\x12\x00\x00\x00\xc3~\x00\x00-\x00\x00\x00\xd6~\x00\x00&\x00\x00\x00\x04\x7f\x00\x00\x1e\x00\x00\x00+\x7f\x00\x00\x0b\x00\x00\x00J\x7f\x00\x00\x13\x00\x00\x00V\x7f\x00\x001\x00\x00\x00j\x7f\x00\x00\r\x00\x00\x00\x9c\x7f\x00\x00\x12\x00\x00\x00\xaa\x7f\x00\x00+\x00\x00\x00\xbd\x7f\x00\x00\x08\x00\x00\x00\xe9\x7f\x00\x00\x0b\x00\x00\x00\xf2\x7f\x00\x00\r\x00\x00\x00\xfe\x7f\x00\x00\x14\x00\x00\x00\x0c\x80\x00\x00\x11\x00\x00\x00!\x80\x00\x00\x1a\x00\x00\x003\x80\x00\x00\x10\x00\x00\x00N\x80\x00\x00\x08\x00\x00\x00_\x80\x00\x00\x08\x00\x00\x00h\x80\x00\x00\x07\x00\x00\x00q\x80\x00\x00\x13\x00\x00\x00y\x80\x00\x00\x18\x00\x00\x00\x8d\x80\x00\x00\x1e\x00\x00\x00\xa6\x80\x00\x00\x05\x00\x00\x00\xc5\x80\x00\x00\t\x00\x00\x00\xcb\x80\x00\x00\x11\x00\x00\x00\xd5\x80\x00\x00\t\x00\x00\x00\xe7\x80\x00\x00\x17\x00\x00\x00\xf1\x80\x00\x00\x03\x00\x00\x00\t\x81\x00\x00/\x00\x00\x00\r\x81\x00\x00-\x00\x00\x00=\x81\x00\x00;\x00\x00\x00k\x81\x00\x00\x1b\x00\x00\x00\xa7\x81\x00\x00-\x00\x00\x00\xc3\x81\x00\x00M\x02\x00\x00\xf1\x81\x00\x00\xa3\x01\x00\x00?\x84\x00\x00\x8c\x02\x00\x00\xe3\x85\x00\x00?\x00\x00\x00p\x88\x00\x00K\x00\x00\x00\xb0\x88\x00\x004\x00\x00\x00\xfc\x88\x00\x00\x8f\x00\x00\x001\x89\x00\x00j\x00\x00\x00\xc1\x89\x00\x00K\x00\x00\x00,\x8a\x00\x00/\x00\x00\x00x\x8a\x00\x00\xd5\x00\x00\x00\xa8\x8a\x00\x00\x7f\x00\x00\x00~\x8b\x00\x00\xcd\x00\x00\x00\xfe\x8b\x00\x00\xa4\x01\x00\x00\xcc\x8c\x00\x00.\x00\x00\x00q\x8e\x00\x00T\x00\x00\x00\xa0\x8e\x00\x00\x01\x00\x00\x00\xf5\x8e\x00\x00M\x00\x00\x00\xf7\x8e\x00\x00e\x00\x00\x00E\x8f\x00\x00\n\x00\x00\x00\xab\x8f\x00\x00\x16\x00\x00\x00\xb6\x8f\x00\x00\x10\x00\x00\x00\xcd\x8f\x00\x00\x18\x00\x00\x00\xde\x8f\x00\x00/\x00\x00\x00\xf7\x8f\x00\x007\x00\x00\x00\'\x90\x00\x00H\x00\x00\x00_\x90\x00\x00<\x00\x00\x00\xa8\x90\x00\x00\x0e\x00\x00\x00\xe5\x90\x00\x003\x00\x00\x00\xf4\x90\x00\x00}\x00\x00\x00(\x91\x00\x00\x98\x00\x00\x00\xa6\x91\x00\x00$\x00\x00\x00?\x92\x00\x00\x1b\x00\x00\x00d\x92\x00\x00M\x00\x00\x00\x80\x92\x00\x00"\x00\x00\x00\xce\x92\x00\x00r\x00\x00\x00\xf1\x92\x00\x00\t\x00\x00\x00d\x93\x00\x00\x10\x00\x00\x00n\x93\x00\x00\x10\x00\x00\x00\x7f\x93\x00\x00\x10\x00\x00\x00\x90\x93\x00\x00\x05\x00\x00\x00\xa1\x93\x00\x00^\x00\x00\x00\xa7\x93\x00\x00\t\x00\x00\x00\x06\x94\x00\x00_\x01\x00\x00\x10\x94\x00\x00\'\x00\x00\x00p\x95\x00\x00!\x00\x00\x00\x98\x95\x00\x00\x13\x00\x00\x00\xba\x95\x00\x00\x05\x00\x00\x00\xce\x95\x00\x00\x11\x00\x00\x00\xd4\x95\x00\x00\x12\x00\x00\x00\xe6\x95\x00\x00\t\x00\x00\x00\xf9\x95\x00\x00\x08\x00\x00\x00\x03\x96\x00\x00\x14\x00\x00\x00\x0c\x96\x00\x00\x1c\x00\x00\x00!\x96\x00\x00\x06\x00\x00\x00>\x96\x00\x00\x15\x00\x00\x00E\x96\x00\x00\x1b\x00\x00\x00[\x96\x00\x00O\x00\x00\x00w\x96\x00\x00\x07\x00\x00\x00\xc7\x96\x00\x003\x00\x00\x00\xcf\x96\x00\x00\x16\x00\x00\x00\x03\x97\x00\x003\x00\x00\x00\x1a\x97\x00\x00\x06\x00\x00\x00N\x97\x00\x00)\x00\x00\x00U\x97\x00\x00\x07\x00\x00\x00\x7f\x97\x00\x008\x00\x00\x00\x87\x97\x00\x00;\x00\x00\x00\xc0\x97\x00\x001\x00\x00\x00\xfc\x97\x00\x00\x13\x00\x00\x00.\x98\x00\x00%\x00\x00\x00B\x98\x00\x00\'\x00\x00\x00h\x98\x00\x00\x16\x00\x00\x00\x90\x98\x00\x00/\x00\x00\x00\xa7\x98\x00\x00\x14\x00\x00\x00\xd7\x98\x00\x00\x15\x00\x00\x00\xec\x98\x00\x00=\x00\x00\x00\x02\x99\x00\x00!\x00\x00\x00@\x99\x00\x00 \x00\x00\x00b\x99\x00\x005\x00\x00\x00\x83\x99\x00\x00\x1d\x00\x00\x00\xb9\x99\x00\x00g\x00\x00\x00\xd7\x99\x00\x00-\x00\x00\x00?\x9a\x00\x00\x10\x00\x00\x00m\x9a\x00\x00\x1c\x00\x00\x00~\x9a\x00\x00\x1c\x00\x00\x00\x9b\x9a\x00\x00\x16\x00\x00\x00\xb8\x9a\x00\x00\x15\x00\x00\x00\xcf\x9a\x00\x00\n\x00\x00\x00\xe5\x9a\x00\x00\x1d\x00\x00\x00\xf0\x9a\x00\x00\x17\x00\x00\x00\x0e\x9b\x00\x00S\x00\x00\x00&\x9b\x00\x00\x1d\x00\x00\x00z\x9b\x00\x00\x1c\x00\x00\x00\x98\x9b\x00\x00V\x00\x00\x00\xb5\x9b\x00\x00\x18\x00\x00\x00\x0c\x9c\x00\x00\x0e\x00\x00\x00%\x9c\x00\x00#\x00\x00\x004\x9c\x00\x00\x1b\x00\x00\x00X\x9c\x00\x00&\x00\x00\x00t\x9c\x00\x00E\x00\x00\x00\x9b\x9c\x00\x00\x0b\x00\x00\x00\xe1\x9c\x00\x00\'\x00\x00\x00\xed\x9c\x00\x00\x16\x00\x00\x00\x15\x9d\x00\x00\x0e\x00\x00\x00,\x9d\x00\x00\n\x00\x00\x00;\x9d\x00\x00\x13\x00\x00\x00F\x9d\x00\x00\x12\x00\x00\x00Z\x9d\x00\x00\x10\x00\x00\x00m\x9d\x00\x00<\x00\x00\x00~\x9d\x00\x00\x19\x00\x00\x00\xbb\x9d\x00\x00\x0f\x00\x00\x00\xd5\x9d\x00\x00\x13\x00\x00\x00\xe5\x9d\x00\x00#\x00\x00\x00\xf9\x9d\x00\x00W\x00\x00\x00\x1d\x9e\x00\x00!\x00\x00\x00u\x9e\x00\x00}\x00\x00\x00\x97\x9e\x00\x00"\x00\x00\x00\x15\x9f\x00\x00"\x00\x00\x008\x9f\x00\x00$\x00\x00\x00[\x9f\x00\x00#\x00\x00\x00\x80\x9f\x00\x00\x1e\x00\x00\x00\xa4\x9f\x00\x00\x0b\x00\x00\x00\xc3\x9f\x00\x00\x0f\x00\x00\x00\xcf\x9f\x00\x00\x1f\x00\x00\x00\xdf\x9f\x00\x00\x05\x00\x00\x00\xff\x9f\x00\x002\x00\x00\x00\x05\xa0\x00\x00\x06\x00\x00\x008\xa0\x00\x00\x8f\x00\x00\x00?\xa0\x00\x00\x14\x00\x00\x00\xcf\xa0\x00\x00 \x00\x00\x00\xe4\xa0\x00\x00$\x00\x00\x00\x05\xa1\x00\x00\x1b\x00\x00\x00*\xa1\x00\x00!\x00\x00\x00F\xa1\x00\x002\x00\x00\x00h\xa1\x00\x00\x10\x00\x00\x00\x9b\xa1\x00\x00\x18\x00\x00\x00\xac\xa1\x00\x00#\x00\x00\x00\xc5\xa1\x00\x00\x01\x00\x00\x00\xe9\xa1\x00\x00\x05\x00\x00\x00\xeb\xa1\x00\x00\x18\x00\x00\x00\xf1\xa1\x00\x00\x18\x00\x00\x00\n\xa2\x00\x00\x1b\x00\x00\x00#\xa2\x00\x00\x19\x00\x00\x00?\xa2\x00\x00 \x00\x00\x00Y\xa2\x00\x00\x13\x00\x00\x00z\xa2\x00\x00-\x00\x00\x00\x8e\xa2\x00\x00V\x00\x00\x00\xbc\xa2\x00\x00\x06\x00\x00\x00\x13\xa3\x00\x00,\x00\x00\x00\x1a\xa3\x00\x00\x15\x00\x00\x00G\xa3\x00\x00)\x00\x00\x00]\xa3\x00\x00$\x00\x00\x00\x87\xa3\x00\x00,\x00\x00\x00\xac\xa3\x00\x00:\x00\x00\x00\xd9\xa3\x00\x00/\x00\x00\x00\x14\xa4\x00\x00)\x00\x00\x00D\xa4\x00\x00&\x00\x00\x00n\xa4\x00\x00\n\x00\x00\x00\x95\xa4\x00\x00\x17\x00\x00\x00\xa0\xa4\x00\x00\x1a\x00\x00\x00\xb8\xa4\x00\x00$\x00\x00\x00\xd3\xa4\x00\x00\x11\x00\x00\x00\xf8\xa4\x00\x00\x06\x00\x00\x00\n\xa5\x00\x00\x1d\x00\x00\x00\x11\xa5\x00\x00\x10\x00\x00\x00/\xa5\x00\x00\x1f\x00\x00\x00@\xa5\x00\x00\x18\x00\x00\x00`\xa5\x00\x00\x17\x00\x00\x00y\xa5\x00\x00\x0c\x00\x00\x00\x91\xa5\x00\x00\x10\x00\x00\x00\x9e\xa5\x00\x00!\x00\x00\x00\xaf\xa5\x00\x00\x17\x00\x00\x00\xd1\xa5\x00\x00\x1d\x00\x00\x00\xe9\xa5\x00\x00\x07\x00\x00\x00\x07\xa6\x00\x00\x0b\x00\x00\x00\x0f\xa6\x00\x00/\x00\x00\x00\x1b\xa6\x00\x00\x06\x00\x00\x00K\xa6\x00\x00\xc3\x00\x00\x00R\xa6\x00\x00"\x01\x00\x00\x16\xa7\x00\x00^\x00\x00\x009\xa8\x00\x001\x00\x00\x00\x98\xa8\x00\x00\x03\x00\x00\x00\xca\xa8\x00\x00\x07\x00\x00\x00\xce\xa8\x00\x00\x08\x00\x00\x00\xd6\xa8\x00\x00\t\x00\x00\x00\xdf\xa8\x00\x004\x00\x00\x00\xe9\xa8\x00\x00!\x00\x00\x00\x1e\xa9\x00\x00\x1e\x00\x00\x00@\xa9\x00\x00\n\x00\x00\x00_\xa9\x00\x00\x12\x00\x00\x00j\xa9\x00\x00\x16\x00\x00\x00}\xa9\x00\x00\x06\x00\x00\x00\x94\xa9\x00\x00\xe2\x01\x00\x00\x9b\xa9\x00\x00\x8f\x00\x00\x00~\xab\x00\x00r\x00\x00\x00\x0e\xac\x00\x00\x16\x00\x00\x00\x81\xac\x00\x00\x12\x00\x00\x00\x98\xac\x00\x00\xc7\x00\x00\x00\xab\xac\x00\x00*\x00\x00\x00s\xad\x00\x00\x19\x00\x00\x00\x9e\xad\x00\x00\x15\x00\x00\x00\xb8\xad\x00\x00\x15\x00\x00\x00\xce\xad\x00\x000\x00\x00\x00\xe4\xad\x00\x00\x12\x00\x00\x00\x15\xae\x00\x00\x1f\x00\x00\x00(\xae\x00\x00#\x00\x00\x00H\xae\x00\x00\x07\x00\x00\x00l\xae\x00\x00"\x00\x00\x00t\xae\x00\x00\t\x00\x00\x00\x97\xae\x00\x00\t\x00\x00\x00\xa1\xae\x00\x00\x12\x00\x00\x00\xab\xae\x00\x009\x00\x00\x00\xbe\xae\x00\x00\n\x00\x00\x00\xf8\xae\x00\x00<\x00\x00\x00\x03\xaf\x00\x00\n\x00\x00\x00@\xaf\x00\x003\x00\x00\x00K\xaf\x00\x009\x00\x00\x00\x7f\xaf\x00\x00\r\x00\x00\x00\xb9\xaf\x00\x001\x00\x00\x00\xc7\xaf\x00\x00i\x00\x00\x00\xf9\xaf\x00\x00\x11\x00\x00\x00c\xb0\x00\x00\t\x00\x00\x00u\xb0\x00\x00|\x00\x00\x00\x7f\xb0\x00\x00\x17\x00\x00\x00\xfc\xb0\x00\x00e\x00\x00\x00\x14\xb1\x00\x00y\x00\x00\x00z\xb1\x00\x00\x04\x00\x00\x00\xf4\xb1\x00\x00\n\x00\x00\x00\xf9\xb1\x00\x006\x00\x00\x00\x04\xb2\x00\x00\x11\x00\x00\x00;\xb2\x00\x00\x16\x00\x00\x00M\xb2\x00\x00\x17\x00\x00\x00d\xb2\x00\x00\x13\x00\x00\x00|\xb2\x00\x00\x1b\x00\x00\x00\x90\xb2\x00\x00(\x00\x00\x00\xac\xb2\x00\x00\x19\x00\x00\x00\xd5\xb2\x00\x00\x0c\x00\x00\x00\xef\xb2\x00\x00"\x00\x00\x00\xfc\xb2\x00\x00 \x00\x00\x00\x1f\xb3\x00\x00\x07\x00\x00\x00@\xb3\x00\x00_\x00\x00\x00H\xb3\x00\x00\x15\x00\x00\x00\xa8\xb3\x00\x00\xf6\x00\x00\x00\xbe\xb3\x00\x00\x1e\x00\x00\x00\xb5\xb4\x00\x00\x0b\x00\x00\x00\xd4\xb4\x00\x00\x08\x00\x00\x00\xe0\xb4\x00\x00\x1d\x00\x00\x00\xe9\xb4\x00\x00\x1b\x00\x00\x00\x07\xb5\x00\x00H\x00\x00\x00#\xb5\x00\x00\x11\x00\x00\x00l\xb5\x00\x00=\x00\x00\x00~\xb5\x00\x00K\x00\x00\x00\xbc\xb5\x00\x00\x93\x00\x00\x00\x08\xb6\x00\x00\x11\x00\x00\x00\x9c\xb6\x00\x00\x19\x00\x00\x00\xae\xb6\x00\x00\x19\x00\x00\x00\xc8\xb6\x00\x00\x12\x00\x00\x00\xe2\xb6\x00\x00J\x00\x00\x00\xf5\xb6\x00\x00\x18\x00\x00\x00@\xb7\x00\x00\x04\x00\x00\x00Y\xb7\x00\x00:\x00\x00\x00^\xb7\x00\x00J\x00\x00\x00\x99\xb7\x00\x001\x00\x00\x00\xe4\xb7\x00\x00r\x00\x00\x00\x16\xb8\x00\x00\x12\x00\x00\x00\x89\xb8\x00\x00G\x00\x00\x00\x9c\xb8\x00\x00w\x00\x00\x00\xe4\xb8\x00\x00Z\x00\x00\x00\\\xb9\x00\x00\x10\x00\x00\x00\xb7\xb9\x00\x00;\x00\x00\x00\xc8\xb9\x00\x00\r\x00\x00\x00\x04\xba\x00\x00\xc8\x00\x00\x00\x12\xba\x00\x00\x08\x00\x00\x00\xdb\xba\x00\x00\t\x00\x00\x00\xe4\xba\x00\x00\x0b\x00\x00\x00\xee\xba\x00\x00 \x00\x00\x00\xfa\xba\x00\x00!\x00\x00\x00\x1b\xbb\x00\x00\x19\x00\x00\x00=\xbb\x00\x00\x13\x00\x00\x00W\xbb\x00\x00 \x00\x00\x00k\xbb\x00\x00\x14\x00\x00\x00\x8c\xbb\x00\x00-\x00\x00\x00\xa1\xbb\x00\x00-\x00\x00\x00\xcf\xbb\x00\x002\x00\x00\x00\xfd\xbb\x00\x00+\x00\x00\x000\xbc\x00\x008\x00\x00\x00\\\xbc\x00\x00\x0f\x00\x00\x00\x95\xbc\x00\x00\x1d\x00\x00\x00\xa5\xbc\x00\x00G\x00\x00\x00\xc3\xbc\x00\x001\x00\x00\x00\x0b\xbd\x00\x00\x95\x00\x00\x00=\xbd\x00\x00N\x00\x00\x00\xd3\xbd\x00\x00\x10\x00\x00\x00"\xbe\x00\x00\x1f\x00\x00\x003\xbe\x00\x007\x00\x00\x00S\xbe\x00\x00\x08\x00\x00\x00\x8b\xbe\x00\x00\x0c\x00\x00\x00\x94\xbe\x00\x00\x13\x00\x00\x00\xa1\xbe\x00\x004\x00\x00\x00\xb5\xbe\x00\x00=\x00\x00\x00\xea\xbe\x00\x00\r\x00\x00\x00(\xbf\x00\x00\\\x00\x00\x006\xbf\x00\x00~\x00\x00\x00\x93\xbf\x00\x00C\x00\x00\x00\x12\xc0\x00\x000\x00\x00\x00V\xc0\x00\x00\x15\x00\x00\x00\x87\xc0\x00\x00\x1b\x00\x00\x00\x9d\xc0\x00\x00\x1d\x00\x00\x00\xb9\xc0\x00\x000\x00\x00\x00\xd7\xc0\x00\x00\x06\x00\x00\x00\x08\xc1\x00\x00\x11\x00\x00\x00\x0f\xc1\x00\x00\r\x00\x00\x00!\xc1\x00\x00\x07\x00\x00\x00/\xc1\x00\x001\x00\x00\x007\xc1\x00\x00\x18\x00\x00\x00i\xc1\x00\x00(\x00\x00\x00\x82\xc1\x00\x00$\x00\x00\x00\xab\xc1\x00\x00&\x00\x00\x00\xd0\xc1\x00\x00\x11\x00\x00\x00\xf7\xc1\x00\x00`\x00\x00\x00\t\xc2\x00\x00\x10\x00\x00\x00j\xc2\x00\x00\x1c\x00\x00\x00{\xc2\x00\x00\x16\x00\x00\x00\x98\xc2\x00\x00\x12\x00\x00\x00\xaf\xc2\x00\x00\x15\x00\x00\x00\xc2\xc2\x00\x00\x95\x00\x00\x00\xd8\xc2\x00\x00n\x00\x00\x00n\xc3\x00\x00?\x00\x00\x00\xdd\xc3\x00\x002\x00\x00\x00\x1d\xc4\x00\x00@\x00\x00\x00P\xc4\x00\x00m\x00\x00\x00\x91\xc4\x00\x00\x0c\x00\x00\x00\xff\xc4\x00\x00\x18\x00\x00\x00\x0c\xc5\x00\x00\x1d\x00\x00\x00%\xc5\x00\x00\x1c\x00\x00\x00C\xc5\x00\x00\x1c\x01\x00\x00`\xc5\x00\x00y\x00\x00\x00}\xc6\x00\x00\x88\x00\x00\x00\xf7\xc6\x00\x00\xc5\x00\x00\x00\x80\xc7\x00\x00]\x01\x00\x00F\xc8\x00\x00M\x00\x00\x00\xa4\xc9\x00\x00V\x01\x00\x00\xf2\xc9\x00\x00%\x00\x00\x00I\xcb\x00\x00\x06\x00\x00\x00o\xcb\x00\x00\x1f\x00\x00\x00v\xcb\x00\x00\x18\x00\x00\x00\x96\xcb\x00\x00\x0b\x00\x00\x00\xaf\xcb\x00\x00(\x00\x00\x00\xbb\xcb\x00\x00\x07\x00\x00\x00\xe4\xcb\x00\x00\x15\x00\x00\x00\xec\xcb\x00\x00\x1e\x00\x00\x00\x02\xcc\x00\x00\t\x00\x00\x00!\xcc\x00\x00\x89\x00\x00\x00+\xcc\x00\x00\x04\x00\x00\x00\xb5\xcc\x00\x00\t\x00\x00\x00\xba\xcc\x00\x00=\x00\x00\x00\xc4\xcc\x00\x00\x1f\x00\x00\x00\x02\xcd\x00\x00<\x00\x00\x00"\xcd\x00\x00~\x00\x00\x00_\xcd\x00\x00l\x00\x00\x00\xde\xcd\x00\x00\x1a\x00\x00\x00K\xce\x00\x00\x1a\x00\x00\x00f\xce\x00\x00z\x00\x00\x00\x81\xce\x00\x00\x98\x00\x00\x00\xfc\xce\x00\x00-\x00\x00\x00\x95\xcf\x00\x00#\x00\x00\x00\xc3\xcf\x00\x00%\x00\x00\x00\xe7\xcf\x00\x00\x89\x00\x00\x00\r\xd0\x00\x00*\x00\x00\x00\x97\xd0\x00\x00)\x00\x00\x00\xc2\xd0\x00\x00^\x00\x00\x00\xec\xd0\x00\x00s\x00\x00\x00K\xd1\x00\x00\x1f\x00\x00\x00\xbf\xd1\x00\x00z\x00\x00\x00\xdf\xd1\x00\x005\x00\x00\x00Z\xd2\x00\x00W\x00\x00\x00\x90\xd2\x00\x00\x0f\x00\x00\x00\xe8\xd2\x00\x00\x07\x00\x00\x00\xf8\xd2\x00\x00\x1f\x00\x00\x00\x00\xd3\x00\x00\x06\x00\x00\x00 \xd3\x00\x008\x00\x00\x00\'\xd3\x00\x00!\x00\x00\x00`\xd3\x00\x00,\x00\x00\x00\x82\xd3\x00\x00/\x00\x00\x00\xaf\xd3\x00\x00%\x00\x00\x00\xdf\xd3\x00\x00\r\x00\x00\x00\x05\xd4\x00\x00\x0b\x00\x00\x00\x13\xd4\x00\x00\x1b\x00\x00\x00\x1f\xd4\x00\x00\x0e\x00\x00\x00;\xd4\x00\x00\x12\x00\x00\x00J\xd4\x00\x00\x12\x00\x00\x00]\xd4\x00\x00\n\x00\x00\x00p\xd4\x00\x00m\x00\x00\x00{\xd4\x00\x00\x1d\x01\x00\x00\xe9\xd4\x00\x00[\x00\x00\x00\x07\xd6\x00\x00a\x00\x00\x00c\xd6\x00\x00\x1b\x00\x00\x00\xc5\xd6\x00\x00!\x00\x00\x00\xe1\xd6\x00\x00;\x00\x00\x00\x03\xd7\x00\x000\x00\x00\x00?\xd7\x00\x00\xbc\x00\x00\x00p\xd7\x00\x00:\x00\x00\x00-\xd8\x00\x00\x15\x00\x00\x00h\xd8\x00\x00i\x00\x00\x00~\xd8\x00\x00N\x00\x00\x00\xe8\xd8\x00\x00\x1c\x00\x00\x007\xd9\x00\x007\x00\x00\x00T\xd9\x00\x00\x07\x00\x00\x00\x8c\xd9\x00\x00\x19\x00\x00\x00\x94\xd9\x00\x00\x0c\x00\x00\x00\xae\xd9\x00\x00\r\x00\x00\x00\xbb\xd9\x00\x00\'\x00\x00\x00\xc9\xd9\x00\x00,\x00\x00\x00\xf1\xd9\x00\x00q\x00\x00\x00\x1e\xda\x00\x00n\x00\x00\x00\x90\xda\x00\x001\x00\x00\x00\xff\xda\x00\x006\x00\x00\x001\xdb\x00\x002\x00\x00\x00h\xdb\x00\x00\xf3\x00\x00\x00\x9b\xdb\x00\x00\n\x00\x00\x00\x8f\xdc\x00\x00\t\x00\x00\x00\x9a\xdc\x00\x00\x0e\x00\x00\x00\xa4\xdc\x00\x00\x00\tBaen file detected. Re-parsing...\x00\tBook Designer file detected.\x00\tConverting to BBeB...\x00\tFailed links:\x00\tParsing HTML...\x00\n%prog [options] ISBN\n\nFetch a cover image for the book identified by ISBN from LibraryThing.com\n\x00\n%prog [options] key\n\nFetch metadata for books from isndb.com. You can specify either the \nbooks ISBN ID or its title and author. If you specify the title and author,\nthen more than one book may be returned.\n\nkey is the account key you generate after signing up for a free account from isbndb.com.\n\n\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%%prog [options] ARG\n\n%%prog parses an online source of articles, like an RSS or ATOM feed and \nfetches the article contents organized in a nice hierarchy.\n\nARG can be one of:\n\nfile name - %%prog will try to load a recipe from the file\n\nbuiltin recipe title - %%prog will load the builtin recipe and use it to fetch the feed. For e.g. Newsweek or "The BBC" or "The New York Times"\n\nrecipe as a string - %%prog will load the recipe directly from the string arg.\n\nAvailable builtin recipes are:\n%s\n\x00%prog URL\n\nWhere URL is for example http://google.com\x00%prog [options] file.lrs\nCompile an LRS file into an LRF file.\x00%prog [options] mybook.lrf\n\n\nShow/edit the metadata in an LRF file.\n\n\x00%prog [options] mybook.pdf\n\n\n%prog converts mybook.pdf to mybook.lrf\x00%prog [options] mybook.rtf\n\n\n%prog converts mybook.rtf to mybook.lrf\x00%prog [options] mybook.txt\n\n\n%prog converts mybook.txt to mybook.lrf\x00%prog [options] myebook.mobi\x00%prog book.lrf\nConvert an LRF file into an LRS (XML UTF-8 encoded) file\x00%s has no available formats.\x00%sUsage%s: %s\n\x00&Access Key;\x00&Add feed\x00&Add tag:\x00&Author(s): \x00&Bottom Margin:\x00&Compact database\x00&Disable chapter detection\x00&Feed title:\x00&Force page break before tag:\x00&Header format:\x00&Left Margin:\x00&Location of books database (library1.db)\x00&Max. number of articles per feed:\x00&Metadata from file name\x00&Monospace:\x00&Oldest article:\x00&Page break before tag:\x00&Password:\x00&Preprocess:\x00&Priority for conversion jobs:\x00&Profile:\x00&Publisher: \x00&Rating:\x00&Regular expression:\x00&Remove recipe\x00&Remove tags:\x00&Right Margin:\x00&Search:\x00&Series:\x00&Serif:\x00&Show header\x00&Show password\x00&Stop selected job\x00&Test\x00&Title: \x00&Top Margin:\x00&Username:\x00&Word spacing:\x00...\x00<b>Changes will only take affect after a restart.\x00<b>Could not fetch cover.</b><br/>\x00<b>No matches</b> for the search phrase <i>%s</i> were found.\x00<br>Must be a directory.\x00<font color="gray">No help available</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Create a basic news recipe, by adding RSS feeds to it. <br />For most feeds, you will have to use the "Advanced mode" to further customize the fetch process.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">For help visit <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">libprs500</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - HTML0 files from Book Designer</li>\x00<li><b>pdftohtml</b> - HTML files that are the output of the program pdftohtml</li>\x00<ol><li><b>baen</b> - Books from BAEN Publishers</li>\x00<p>An invalid database already exists at %s, delete it before trying to move the existing database.<br>Error: %s\x00<p>Books with the same title as the following already exist in the database. Add them anyway?<ul>\x00<p>Cannot upload books to device there is no more free space available \x00<p>Could not create recipe. Error:<br>%s\x00<p>Enter your username and password for <b>LibraryThing.com</b>. <br/>If you do not have one, you can <a href=\'http://www.librarything.com\'>register</a> for free!.</p>\x00<p>Negate this match. That is, only return results that <b>do not</b> match this query.\x00<p>Please enter your username and password for %s<br>If you do not have one, please subscribe to get access to the articles.<br/> Click OK to proceed.\x00<p>Set a regular expression pattern to use when trying to guess ebook metadata from filenames. <p>A <a href="http://docs.python.org/lib/re-syntax.html">reference</a> on the syntax of regular expressions is available.<p>Use the <b>Test</b> functionality below to test your regular expression on a few sample filenames.\x00<p>There was an error reading from file: <br /><b>\x00<span style="color:red; font-weight:bold">Latest version: <a href="%s">%s</a></span>\x00A\x00A custom recipe named %s already exists. Do you want to replace it?\x00A regular expression. <a> tags whoose href matches will be ignored. Defaults to %default\x00A&pplied tags\x00A&vailable tags\x00Active Jobs\x00Add Ta&gs: \x00Add a custom news source\x00Add a directory to the frequently used directories list\x00Add a header to all the pages with title and author.\x00Add a new format for this book to the database\x00Add books\x00Add books from a single directory\x00Add books recursively (Multiple books per directory, assumes every ebook file is a different book)\x00Add books recursively (One book per directory, assumes every ebook file is the same book in a different format)\x00Add custom news source\x00Add feed to recipe\x00Add tag to available tags and apply it to current book\x00Add/Update &recipe\x00Adjust the look of the generated LRF file by specifying things like font sizes and the spacing between words.\x00Advanced\x00Advanced Search\x00Advanced search\x00Already exists\x00Alt+S\x00An error occurred while processing a table: %s. Ignoring table markup.\x00Any\x00Any link that matches this regular expression will be ignored. This option can be specified multiple times, in which case as long as any regexp matches a link, it will be ignored.By default, no links are ignored. If both --filter-regexp and --match-regexp are specified, then --filter-regexp is applied first.\x00Apply tag to current book\x00Article download failed: %s\x00Article downloaded: %s\x00Author\x00Author S&ort: \x00Author So&rt:\x00Author(s)\x00Authors:\x00Available Formats\x00Available user recipes\x00Back\x00Bad table:\n%s\x00Base &font size:\x00Base directory into which URL is saved. Default is %default\x00Basic\x00Be more verbose while processing.\x00Be more verbose.\x00Be verbose while processing\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 add link %s to TOC\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 read from: %s\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\x00Compacting database. This may take a while.\x00Compacting...\x00Configuration\x00Configure\x00Configure Viewer\x00Convert %s to LRF\x00Convert E-books\x00Convert LRS to LRS, useful for debugging.\x00Convert individually\x00Convert to LRF\x00Convert to LRS\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\x00Could not process image: %s\n%s\x00Could not read cover image: %s\x00Cover saved to\x00Created by \x00Creating XML...\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\x00Device database corrupted\x00Do not download CSS stylesheets.\x00Don\'t know what this is for\x00Dont show the progress bar\x00Double click to <b>edit</b> me<br><br>\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:\x00Failed to parse link %s %s\x00Failed to process opf file\x00Feed &URL:\x00Feed must have a URL\x00Feed must have a title\x00Feeds downloaded to %s\x00Feeds in recipe\x00Fetch\x00Fetch cover image from server\x00Fetch metadata\x00Fetch metadata from server\x00Fetch news\x00Fetch news from \x00Fetching feed\x00Fetching feeds...\x00Fetching metadata for <b>%1</b>\x00Fetching news from \x00Fetching of recipe failed: \x00Fewer\x00File &name:\x00Fine tune the detection of chapter and section headings.\x00Finished\x00For help with writing advanced news recipes, please visit <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Force a page break before an element having the specified attribute. The format for this option is tagname regexp,attribute name,attribute value regexp. For example to match all heading tags that have the attribute class="chapter" you would use "h\\d,class,chapter". Default is %default\x00Force a page break before tags whoose names match this regular expression.\x00Force page break before &attribute:\x00Form\x00Format\x00Formats\x00Forward\x00Free unused diskspace from the database\x00Frequently used directories\x00Got feeds from index page\x00Header\x00Help on item\x00Hyphenate\x00IS&BN:\x00If html2lrf does not find any page breaks in the html file and cannot detect chapter headings, it will automatically insert page-breaks before the tags whose names match this regular expression. Defaults to %default. You can disable it by setting the regexp to "$". The purpose of this option is to try to ensure that there are no really long pages as this degrades the page turn performance of the LRF. Thus this option is ignored if the current page has only a few elements.\x00If the tag you want is not in the available list, you can add it here. Accepts a comma separated list of tags.\x00If there is a cover graphic detected in the source file, use that instead of the specified cover.\x00Ignore &colors\x00Ignore &tables\x00Increase the font size by 2 * FONT_DELTA pts and the line spacing by FONT_DELTA pts. FONT_DELTA can be a fraction.If FONT_DELTA is negative, the font size is decreased.\x00Insert &blank lines between paragraphs\x00Invalid database\x00Invalid database location\x00Invalid database location \x00Invalid database location.<br>Cannot write to \x00Invalid input\x00Invalid regular expression\x00Invalid regular expression: %s\x00Job\x00Job killed by user\x00Jobs:\x00LRF Viewer\x00LRS written to \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.\x00Maximum number of levels to recurse i.e. depth of links to follow. Default %default\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:\x00Minimum interval in seconds between consecutive fetches. Default is %default s\x00Minimum paragraph indent (the indent of the first line of a paragraph) in pts. Default: %default\x00More\x00Negate\x00News fetched. Uploading to device.\x00Next Page\x00Next match\x00No available formats\x00No book selected\x00No books selected\x00No file to convert specified.\x00No filename specified.\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\x00OEB ebook created in\x00Only links that match this regular expression will be followed. This option can be specified multiple times, in which case as long as a link matches any one regexp, it will be followed. By default all links are followed.\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 LRS file\x00Output directory. Defaults to current directory.\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\x00Parsing LRF...\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.\x00Path to output file\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\x00Print generated HTML to stdout and quit.\x00Processing %s\x00Profile of the target device for which this LRF is being generated. The profile determines things like the resolution and screen size of the target device. Default: %s Supported profiles: \x00Progress\x00Publisher\x00Rating\x00Rating of this book. 0-5 stars\x00Raw MOBI HTML saved in\x00Reader\n%s available\x00Recipe &title:\x00Recipe source code (python)\x00Regular &expression\x00Regular expression group name (?P<authors>)\x00Regular expression group name (?P<series>)\x00Regular expression group name (?P<series_index>)\x00Regular expression group name (?P<title>)\x00Remove a directory from the frequently used directories list\x00Remove books\x00Remove feed from recipe\x00Remove the selected formats for this book from the database.\x00Remove unused series (Series that have no books)\x00Render HTML tables as blocks of text instead of actual tables. This is neccessary if the HTML contains very large or complex tables.\x00Render all content as black on white instead of the colors specified by the HTML or CSS.\x00Replace recipe?\x00Reset Quick Search\x00Right margin of page. Default is %default px.\x00Running time\x00S&ans-serif:\x00Save to disk\x00Save to disk in a single directory\x00Search (For Advanced Search click the button to the left)\x00Search criteria\x00Search the list of books by title or author<br><br>Words separated by spaces are ANDed\x00Search the list of books by title, author, publisher, tags and comments<br><br>Words separated by spaces are ANDed\x00Select the book that most closely matches your copy from the list below\x00Select visible &columns in library view\x00Send to device\x00Send to main memory\x00Send to storage card\x00Separate paragraphs by blank lines.\x00Series\x00Series index.\x00Series index:\x00Series:\x00Server error. Try again later.\x00Set book ID\x00Set conversion defaults\x00Set sort key for the author\x00Set sort key for the title\x00Set the author\x00Set the author(s). Multiple authors should be set as a comma separated list. Default: %default\x00Set the authors\x00Set the book title\x00Set the category\x00Set the comment\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.\x00Show detailed output information. Useful for debugging\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 character encoding of the source file. If the output LRF file contains strange characters, try changing this option. A common encoding for files from windows computers is cp-1252. Another common choice is utf-8. The default is to try and guess the encoding.\x00Specify the page settings like margins and the screen size of the target device.\x00Specify trutype font families for serif, sans-serif and monospace fonts. These fonts will be embedded in the LRF file. Note that custom fonts lead to slower page turns. Each family specification is of the form: "path to fonts directory, family" For example: --serif-family "%s, Times New Roman"\n \x00Starting download [%d thread(s)]...\x00Status\x00Switch to Advanced mode\x00Switch to Basic mode\x00Ta&gs: \x00Table has cell that is too large\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 ISBN ID of the book you want metadata for.\x00The author whoose book to search for.\x00The category this book belongs to. E.g.: History\x00The character encoding for the websites you are trying to download. The default is to try and guess the encoding.\x00The directory in which to store the downloaded feeds. Defaults to the current directory.\x00The feed %s must have a URL\x00The feed must have a title\x00The maximum number of files to download. This only applies to files from <a href> tags. Default is %default\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 publisher of the book to search for.\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.\x00The title of the book to search for.\x00There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot.\x00This feed has already been added to the recipe\x00Timeout in seconds to wait for a response from the server. Default: %default s\x00Timestamp\x00Title\x00Title based detection\x00Title:\x00Top margin of page. Default is %default px.\x00Trying to download cover...\x00Unable to process image %s. Error: %s\x00Unable to process interlaced PNG %s\x00Unapply (remove) tag from current book\x00Unavailable\x00Unknown\x00Unknown News Source\x00Unknown feed\x00Untitled Article\x00Untitled article\x00Usage:\x00Usage: %prog [options] mybook.epub\n \n \n%prog converts mybook.epub to mybook.lrf\x00Usage: %prog [options] mybook.html\n\n\n%prog converts mybook.html to mybook.lrf. \n%prog follows all links in mybook.html that point \nto local files recursively. Thus, you can use it to \nconvert a whole tree of HTML files.\x00Usage: %prog [options] mybook.lit\n\n\n%prog converts mybook.lit to mybook.lrf\x00Usage: %prog [options] mybook.mobi|prc\n\n\n%prog converts mybook.mobi to mybook.lrf\x00Usage: %s file.lit\x00Usage: pdf-meta file.pdf\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.\x00Verbose processing\x00Very verbose output, useful for debugging.\x00View\x00View specific format\x00Waiting\x00Working\x00Written preprocessed HTML to \x00You do not have permission to read the file: \x00You have to save the website %s as an html file first and then run html2lrf on it.\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.\x00any2lrf [options] myfile\n\nConvert any ebook format into LRF. Supported formats are:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a RAR or\nZIP archive, looking for an ebook inside the archive.\n \x00contains\x00libprs500\x00mybook.epub\x00Project-Id-Version: es\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2008-04-04 09:07+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\tBaen Datei erkannt. Analysiere erneut...\x00\tBook Designer Datei erkannt.\x00\tKonvertiere in BBeB...\x00\tFehlgeschlagene Verkn\xc3\xbcpfungen:\x00\tAnalysiere HTML...\x00\n%prog [options] ISBN\n\nUmschlagbild des Buches mit der angegebenen ISBN von LibraryThing.com abrufen\n\x00\n%prog [options] key\n\nRufe Metadaten der B\xc3\xbccher von isndb.com ab. Sie k\xc3\xb6nnen entweder die\nISBN oder den Titel und den Autor des Buches angeben. Wenn Sie Titel und Autor angeben,\nkann es sein, dass mehrere B\xc3\xbccher gefunden werden.\n\nkey steht f\xc3\xbcr den Konto-Schl\xc3\xbcssel, der nach der kostenfreien Registrierung bei isbndb.com erstellt werden kann.\n\n\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%%prog [options] ARG\n\n%%prog analysiert eine Online-Quelle von Artikeln, z.B. einen RSS oder ATOM Feed und \nruft die Artikelinhalte hierarchisch organisiert ab.\n\nARG kann eines der folgenden sein:\n\ndateiname - %%prog versucht ein Rezept aus der Datei zu laden\n\ninstalliertes Rezept - %%prog l\xc3\xa4dt ein installiertes Rezept und benutzt es, um den Feed abzurufen. Z.B. f\xc3\xbcr Newsweek or "The BBC" or "The New York Times"\n\nRezept als eine Reihung - %%prog l\xc3\xa4dt das Rezept direkt nach der angegebenen Reihung.\n\nVerf\xc3\xbcgbare installierte Rezepte:\n%s\n\x00%prog URL\n\nURL ist z.B. http://google.com\x00%prog [options] datei.lrs\nErstellt eine LRF Datei aus einer LRS Datei.\x00%prog [options] dateiname.lrf\n\n\nZeigt/ver\xc3\xa4ndert die Metadaten in einer LRF Datei.\n\n\x00%prog [options] dateiname.pdf\n\n\n%prog konvertiert dateiname.pdf in dateiname.lrf\x00%prog [options] dateiname.rtf\n\n\n%prog konvertiert dateiname.rtf in dateiname.lrf\x00%prog [options] dateiname.txt\n\n\n%prog konvertiert dateiname.txt in dateiname.lrf\x00%prog [options] dateiname.mobi\x00%prog dateiname.lrf\nKonvertiert eine LRF Datei in eine LRS (XML UTF-8 kodierte) Datei\x00%s hat keine verf\xc3\xbcgbaren Formate.\x00%sBenutzung%s: %s\n\x00Clave de &acceso;\x00Feed &anf\xc3\xbcgen\x00Ajoute mot-clef\x00&Autor(es):\x00Margen &Inferior:\x00Datenbank verdi&chten\x00&Desactivar detecci\xc3\xb3n de cap\xc3\xadtulos\x00&Feed Titel:\x00&Fuerza un salto de p\xc3\xa1gina delante de la marca:\x00&Formato del encabezado:\x00Margen &Izquierdo:\x00&Ubicaci\xc3\xb3n de la base de datos (library1.db)\x00&Maximale Anzahl der Artikel pro feed:\x00&Meta-Daten aus dem Dateinamen\x00&Monospace:\x00\xc3\x84<ester Artikel:\x00Inserta un salto de &p\xc3\xa1gina delante de la marca:\x00&Contrase\xc3\xb1a:\x00&Preprocesamiento:\x00&Priorit\xc3\xa9 pour les travaux de conversion :\x00&Perfil:\x00&Editorial:\x00&Valoraci\xc3\xb3n:\x00Expresi\xc3\xb3n &Regular:\x00Rezept entfe&rnen\x00&Supprime des mots-clefs :\x00Margen &Derecho:\x00&Buscar:\x00&Series:\x00&Serif:\x00&Mostrar encabezado\x00&Affiche le mot de passe\x00Ausgew\xc3\xa4hlten Auftrag &stoppen\x00&Test\x00&T\xc3\xadtulo:\x00Margen &Superior:\x00&Usuario:\x00&Espaciado de palabras:\x00...\x00<b>Los cambios no se aplicaran hasta reiniciar.\x00<b>No se puede descargar la portada.</b><br/>\x00<b>No </b>se han encontrado coincidencias para "<i>%s</i>".\x00<br>Debe ser un directorio.\x00<font color="gray">Ayuda no disponible</font>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"> Erstellen Sie ein einfaches Nachrichten Rezept, indem Sie RSS Feeds hinzuf\xc3\xbcgen. <br />Die meisten Feeds sind komplexer, so dass ihr Abruf einer weitergehenden Konfiguration bedarf. Dazu m\xc3\xbcssen Sie den "Erweiterten Modus" verwenden.</p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'DejaVu Sans\'; font-size:10pt; font-weight:400; font-style:normal;">\n<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:\'Sans Serif\'; font-size:9pt;"></p></body></html>\x00<html><head><meta name="qrichtext" content="1" /><style type="text/css">\np, li { white-space: pre-wrap; }\n</style></head><body style=" font-family:\'Sans Serif\'; font-size:9pt; font-weight:400; font-style:normal;">\n<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Hilfe gibt es online bei <a href="http://libprs500.kovidgoyal.net/user_manual"><span style=" text-decoration: underline; color:#0000ff;">libprs500.kovidgoyal.net</span></a><br /><br /><span style=" font-weight:600;">libprs500</span>: %1 by <span style=" font-weight:600;">Kovid Goyal</span> %2<br />%3</p></body></html>\x00<li><b>book-designer</b> - Archivos HTML0 de Book Designer</li>\x00<li><b>pdftohtml</b> - Archivos HTML creados con el programa pdftohtml</li>\x00<ol><li><b>baen</b> - Libros de BAEN Publishers</li>\x00<p>Une base de donn\xc3\xa9es invalide existe d\xc3\xa9j\xc3\xa0 ici : %s, spprimez la avant d\'essayer de d\xc3\xa9placer la base de donn\xc3\xa9es existante.<br>Erreur : %s\x00<p>Des livres ayant le m\xc3\xaame titre existent d\xc3\xa9j\xc3\xa0 dans la base de donn\xc3\xa9es. Les ajouter quand m\xc3\xaame ?<ul>\x00<p>No se pueden guardar los libros porque no hay espacio en el dispositivo \x00<p>Konnte Rezept nicht erstellen. Fehler:<br>%s\x00<p>Veuillez saisir votre nom d\'utilisateur et votre mot de passe de <b>LibraryThing.com</b>. <br/>Si vous n\'en avez pas, vous pouvez <a href=\'http://www.librarything.com\'>y cr\xc3\xa9er un compte </a> gratuitement !</p>\x00<p>Diesen Treffer ausblenden. Das hei\xc3\x9ft, es werden nur Ergebnisse angezeigt, die <b>nicht</b> dieser Suchanfrage entsprechen. \x00<p>Geben Sie Ihren Benutzernamen und Ihr Passwort f\xc3\xbcr %s an. <br>Insofern Sie dies nicht besitzen, melden Sie sich bitte an, um auf die Artikel zugriefen zu k\xc3\xb6nnen. <br/> Klicken Sie OK, um fortzufahren.\x00<p>Ein Muster von regul\xc3\xa4ren Ausdr\xc3\xbccken festlegen, die zum Auslesen der Meta-Daten von eBooks aus deren Dateinamen verwendet werden sollen. <p>Zur Unterst\xc3\xbctzung gibt es eine englische <a href="http://docs.python.org/lib/re-syntax.html">Referenz</a> der Syntax von regul\xc3\xa4ren Ausdr\xc3\xbccken. <p>Benutzen Sie die <b>Test</b>-Funktionalit\xc3\xa4t unten zur \xc3\x9cberpr\xc3\xbcfung der regul\xc3\xa4ren Ausdr\xc3\xbccke bei einigen Beispiel-Dateinamen.\x00<p>Hubo un error leyendo el archivo: <br /><b>\x00<span style="color:red; font-weight:bold">Letzte Version: <a href="%s">%s</a></span>\x00A\x00Es gibt schon ein erstelltes Rezept mit dem Namen %s. Soll es ersetzt werden?\x00Expresi\xc3\xb3n regular. Las marcas <a> que tengan href coincidentes, son ignoradas. Por defecto: %default\x00Mots-clefs\x00Mots-clefs disponibles\x00Trebajos activos\x00A\xc3\xb1a&dir las etiquetas: \x00Neue individuelle Nachrichtenquelle hinzuf\xc3\xbcgen\x00A\xc3\xb1adir directorio a la lista de directorios frecuentes\x00A\xc3\xb1adir el encabezado en todas las p\xc3\xa1ginas, poniendo t\xc3\xad\xc2\xadtulo y autor.\x00A\xc3\xb1adir un nuevo formato para este libro en la base de datos\x00A\xc3\xb1adir libros\x00B\xc3\xbccher aus einem einzelnen Verzeichnis hinzuf\xc3\xbcgen\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Mehrere B\xc3\xbccher pro Verzeichnis, setzt voraus, dass jede eBook Datei ein anderes Buch enth\xc3\xa4lt)\x00B\xc3\xbccher rekursiv hinzuf\xc3\xbcgen (Ein Buch pro Verzeichnis, setzt voraus, dass jede eBook Datei das gleiche Buch in einem unterschiedlichen Format enth\xc3\xa4lt)\x00Eigene Nachrichtenquelle hinzuf\xc3\xbcgen\x00Feed zum Rezept hinzuf\xc3\xbcgen\x00Ajoute le mot-clef \xc3\xa0 la liste des mots-clefs et l\'applique au livre en cours\x00&Rezept hinzuf\xc3\xbcgen/aktualisieren \x00Mejorar la apariencia del archivo LRF generado, especificando el tama\xc3\xb1o de fuente y el espaciado entre palabras.\x00Erweitert\x00Erweiterte Suche\x00Erweiterte Suche\x00Gibts hier schon\x00Alt+S\x00Ein Fehler trat w\xc3\xa4hrend der Bearbeitung einer Tabelle auf: %s. Tabellenformat wird ignoriert.\x00Irgendein\x00Jeder Link, der diesem Regul\xc3\xa4ren Ausdruck entspricht, wird ignoriert. Diese Option kann mehrmals angegeben werden, somit werden Links ignoriert, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden keine Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben sind, wird --filter-regexp zuerst angewendet.\x00Applique le mot-clef au livre en cours.\x00Laden der Artikel schlug fehl: %s\x00Artikel geladen: %s\x00Autor\x00&Ordenar autores:\x00O&rd&en por autor:\x00Autor(es)\x00Autoren:\x00Formatos disponibles\x00Verf\xc3\xbcgbare Benutzer-Rezepte\x00Atr\xc3\xa1s\x00Schlechte Tabelle:\n%s\x00Tama\xc3\xb1o de la &fuente base:\x00Grundverzeichnis, in das die URL gespeichert wird. Voreinstellung ist %default \x00Einfach\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\x00Mehr W\xc3\xb6rter benutzen!\x00Mehr W\xc3\xb6rter bei der weiteren Verarbeitung angeben.\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\x00Konnte Link %s nicht zu TOC hinzuf\xc3\xbcgen\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\x00Lesen nicht m\xc3\xb6glich von: %s\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\x00Verdichte Datenbank. Das kann dauern...\x00Verdichte Datenbank...\x00Configuraci\xc3\xb3n\x00Configurar\x00Configurar el visor\x00Convertir %s a LRF\x00Convertir Ebooks\x00Konvertierung von LRS in LRS, hilfreich bei der Fehlersuche.\x00Convertir individualmente\x00Convertir a LRF\x00Zu LRS konvertieren\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\x00Konnte Bild nicht verarbeiten: %s\n%s\x00Konnte Umschlagbild nicht lesen: %s\x00Umschlagbild gespeichert unter\x00Creado por \x00Erstelle XML...\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\x00Ger\xc3\xa4tedatenbank ist besch\xc3\xa4digt\x00Lade CSS Stylesheets nicht herunter.\x00No s\xc3\xa9 para qu\xc3\xa9 sirve esto\x00Fortschrittsbalken nicht anzeigen\x00Doppelklick erm\xc3\xb6glicht <b>Bearbeitung</b><br><br>\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:\x00Fehlschlag bei der Analysierung von %s %s\x00Verarbeitung der OPF Datei schlug fehl\x00Feed &URL:\x00Feed ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00Feeds wurden nach %s heruntergeladen\x00Feeds des Rezepts\x00Buscar\x00Buscar portada en el servidor\x00Buscar metadatos\x00Buscar metadatos en el servidor\x00Descargar noticias (RSS)\x00Nachrichten abrufen von\x00Rufe Feed ab\x00Rufe Feeds ab...\x00Buscando metadatos para <b>%1</b>\x00Rufe Nachrichten ab von\x00Abruf des Rezepts misslungen:\x00Weniger\x00Datei&name:\x00Afinar la detecci\xc3\xb3n de cap\xc3\xadtulos y secciones.\x00Fertig\x00Wenn Sie Hilfe zur Erstellung Erweiterter Nachrichten Rezepte ben\xc3\xb6tigen, besuchen Sie die englischsprachige Seite <a href="http://libprs500.kovidgoyal.net/user_manual/news.html">User Recipes</a>\x00Fuerza un salto de p\xc3\xa1gina antes de un elemento con un atributo concreto. El formato de esta opci\xc3\xb3n es regexp_marca,nom_atribut,tegexp_valor_atribut. Por ejemplo, "h\\d,class,chapter", coincide con todas las marcas de encabezado que tienen el atributo class="chapter". Por defecto: %default\x00Fuerza un salto de p\xc3\xa1gina antes de las marcas cuyo nombre coincida con la expresi\xc3\xb3n regular.\x00Fuerza un salto de p\xc3\xa1gina delante del &atributo:\x00Art\x00Formato\x00Formatos\x00Siguiente\x00Freier unbenutzter Festplattenspeicher der Datenbank\x00Directorios usados con frecuencia\x00Feeds der Index Seite erhalten\x00Encabezado\x00Ayuda con el \xc3\xadtem\x00Partici\xc3\xb3n de palabras\x00IS&BN:\x00Si html2lrf no encuentra saltos de p\xc3\xa1gina en el archivo html y no puede detectar los encabezados de los cap\xc3\xadtulos, inserta autom\xc3\xa1ticamente un salto de p\xc3\xa1gina delante de las marcas que cuyo nombre coincida con la expresi\xc3\xb3n regular. Por defecto: %default. Esta opci\xc3\xb3n se inhabilita estableciendo la regexp a "$".El prop\xc3\xb3sito es evitar p\xc3\xa1ginas muy largas, que relentizan al cambio de p\xc3\xa1gina en el archivo LRF. Esta opci\xc3\xb3n se ignora si la p\xc3\xa1gina actual tiene pocos elementos.\x00Ist das gew\xc3\xbcnschte Etikett nicht in der Liste, kann es hier hinzugef\xc3\xbcgt werden. Akzeptiert eine durch Kommata getrennte Liste von Etiketten. \x00Si se detecta un gr\xc3\xa1fico para la portada en el archivo de origen, utilizarla en lugar de la portada especificada.\x00Farben nicht bea&chten\x00Ignora las &tablas\x00Aumenta el tama\xc3\xb1o de la fuente en 2 * FONT_DELTA puntos y el espacio de l\xc3\xad\xc2\xadnea en FONT_DELTA puntos. FONT_DELTA puede ser una fracci\xc3\xb3n. Si es un valor negativo, el tama\xc3\xb1o de la fuente disminuye.\x00Inserta l\xc3\xadneas en &blanco entre p\xc3\xa1rrafos\x00Base de donn\xc3\xa9es invalide\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida\x00Ubicaci\xc3\xb3n no v\xc3\xa1lida.<br>Imposible escribir en \x00Ung\xc3\xbcltige Eingabe\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck\x00Ung\xc3\xbcltiger regul\xc3\xa4rer Ausdruck: %s\x00Trabajo\x00Auftrag durch Benutzer abgebrochen\x00Trabajos:\x00Visor LRF\x00LRS gespeichert in\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.\x00Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt werden. Voreinstellung %default\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:\x00Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. Voreinstellung ist %default s\x00Mindest-Zeileneinzug von Paragraphen (Zeileneinzug der ersten Zeile eines Paragraphen) in Punkt. Voreinstellung: %default\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\x00Keine Datei zur Konvertierung angegeben.\x00Kein Dateiname angegeben.\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\x00OEB eBook erstellt in\x00Nur Links, die diesem Regul\xc3\xa4ren Ausdruck entsprechen, werden verfolgt. Diese Option kann mehrmals angegeben werden, somit werden Links verfolgt, solange sie einem Regul\xc3\xa4ren Ausdruck entsprechen. In der Voreinstellung werden alle Links verfolgt.\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)\x00Ausgabe LRS Datei\x00Ausgabeverzeichnis. Voreinstellung ist akutelles Verzeichnis.\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\x00Analysieren 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.\x00Pfad zur Zieldatei\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\x00Gebe erstellte HTML auf stdout aus und beende das Programm.\x00Verarbeite %s\x00Perfil del dispositivo para el cual se genera el archivo LRF. Este perfil determina, entre otras cosas, la resoluci\xc3\xb3n y el tama\xc3\xb1o de la pantalla del dispositivo. Por defecto: %s Perfiles soportados:\x00Progreso\x00Editorial\x00Valoraci\xc3\xb3n\x00Valora este libro: 0-5 estrellas\x00Original MOBI HTML gespeichert in\x00Sony Reader\n%s disponible\x00&Titel des Rezepts:\x00Source Code (Python) des Rezepts\x00R&egul\xc3\xa4rer Ausdruck\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<authors>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<series_index>)\x00Regul\xc3\xa4rer Ausdruck Gruppenname (?P<title>)\x00Eliminar directorio a la lista de directorios frecuentes\x00Suprimir libros\x00Feed aus dem Rezept entfernen\x00Elimina los formatos seleccionados para este libro de la base de datos.\x00Unbenutzte Serien entfernen (Serien ohne B\xc3\xbccher)\x00Renderizar las tablas HTML como bloques de texto en lugar de las tablas actuales. Activar si el archivo HTML contiene tablas muy grandes o complejas.\x00Inhalt schwarz-wei\xc3\x9f rendern anstatt in den in HTML oder CSS angegeben Farben.\x00Rezept ersetzen?\x00Reinicializar b\xc3\xbasqueda r\xc3\xa1pida\x00Margen derecho de la p\xc3\xa1gina. Por defecto: %default px.\x00Laufzeit\x00S&ans-serif:\x00Guardar en el disco\x00Auf Festplatte in ein einziges Verzeichnis speichern\x00Suche (Zur erweiterten Suche die Schaltfl\xc3\xa4che links klicken)\x00Suchkriterien\x00Busca libros por t\xc3\xadtulo o autor. <br><br>Los espacios entre palabras se sustituyen por AND.\x00Buscar libros por t\xc3\xadtulo, autor, editorial, etiquetas y comentaris<br><br>Los espacios entre parlabras se sustituyen por AND.\x00Seleccionar el libro que m\xc3\xa1s se aproxime al listado mostrado abajo\x00Si&chtbare Spalten in Bibliothek-Ansicht w\xc3\xa4hlen\x00Enviar al dispositivo\x00Enviar a la memoria interna\x00Envia a la targeta de memoria\x00Separa los p\xc3\xa1rrafos mediante l\xc3\xadneas en blanco.\x00Series\x00\xc3\x8dndice de serie.\x00Serien Index:\x00Serien:\x00Erreur Serveur. Veuillez essayer ult\xc3\xa9rieurement.\x00Insertar el ID del libro\x00Fijar valores de conversi\xc3\xb3n por defecto\x00Insertar la clave de orden por autor\x00Insertar la clave de orden por t\xc3\xadtulo\x00Insertar el autor\x00Insertar autor(es). Si indica m\xc3\xa1s de un autor, sep\xc3\xa1relos mediante comas. Por defecto: %default\x00Gebe Autoren ein\x00Insertar el nombre del libro\x00Insertar categor\xc3\xad\xc2\xada.\x00Gebe Kommentar ein\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.\x00Zeige detailierte Ausgabeinformation. Hilfreich zur Fehlersuche.\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.\x00Geben Sie die Zeichenkodierung der Ausgangsdatei an. Sollte die ausgegebene LRF Datei seltsame Zeichen enthalten, \xc3\xa4ndern Sie diese Einstellung. Eine gebr\xc3\xa4uchliche Kodierung von Dateien, die von Windows Computern stammen, ist cp-1252. Eine andere gebr\xc3\xa4uchliche Alternative ist utf-8. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Configuraci\xc3\xb3n de p\xc3\xa1gina del dispositivo: m\xc3\xa1rgenes y tama\xc3\xb1o de la pantalla\x00Especificar fuentes truetype para las familias serif, sans-serif y monoespaciadas. Las fuentes se insertan en el archivo LRF. Tener en cuenta que a\xc3\xb1adir fuentes personalizadas relentiza el cambio de p\xc3\xa1gina. Para especificar cada una de las familias se utiliza: "ruta a la carpeta de fuents, familia" ( --serif-family "%s, Times New Roman")\n\x00Starte Download von [%d Thread(s)]...\x00Estado\x00In erweiterten Modus umschalten\x00Zum Basis Modus wechseln\x00Etique&tas:\x00Tabelle enth\xc3\xa4lt Zelle, die zu gro\xc3\x9f ist\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\x00Die ISBN des Buches, f\xc3\xbcr das Sie Metadaten abrufen m\xc3\xb6chten.\x00Der Autor des gesuchten Buches.\x00Categoria a la que pertenece el libro. Por ejemplo, Historia\x00Zeichenkodierung f\xc3\xbcr Webseiten, die zu laden versucht werden. In der Voreinstellung wird versucht, die Kodierung zu erraten. \x00Das Verzeichnis, in dem die geladenen Feeds gespeichert werden. Voreinstellung auf das aktuelle Verzeichnis.\x00Feed %s ben\xc3\xb6tigt eine URL\x00Feed ben\xc3\xb6tigt einen Titel\x00H\xc3\xb6chstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus <a href> Tags zu. Voreinstellung ist %default\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\x00Der Herausgeber des gesuchten Buches.\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.\x00Der Titel des gesuchten Buches.\x00Hubo un error de comunicaci\xc3\xb3n con el dispositivo. Desconecte, vuelva a conectar el dispositivo y reinicie la aplicaci\xc3\xb3n.\x00Dieser Feed wurde schon zu diesem Rezept hinzugef\xc3\xbcgt\x00Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: %default s\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...\x00Konnte Bild %s nicht verarbeiten. Fehler: %s\x00Konnte verschachteltes PNG %s nicht verarbeiten\x00Enl\xc3\xa8ve le mot-clef du livre en cours\x00No disponible\x00Desconocido\x00Nachrichtenquelle unbekannt\x00Feed unbekannt\x00Artikel ohne Titel\x00Artikel ohne Titel\x00Benutzung:\x00Benutzung: %prog [options] dateiname.epub\n \n \n%prog konvertiert dateiname.epub in dateiname.lrf\x00Benutzung: %prog [options] dateiname.html\n\n\n%prog konvertiert dateiname.html in dateiname.lrf. \n%prog folgt allen Hyperlinks in dateiname.html, die rekursiv auf \nlokale Dateien verweisen. Somit k\xc3\xb6nnen Sie es verwenden,\num einen ganzen Verzeichnisbaum von HTML Dateien zu konvertieren.\x00Benutzung: %prog [options] dateiname.lit\n\n\n%prog konvertiert dateiname.lit in dateiname.lrf\x00Benutzung: %prog [options] dateiname.mobi|prc\n\n\n%prog konvertiert dateiname.mobi in dateiname.lrf\x00Benutzung: %s dateiname.lit\x00Benutzung: pdf-meta dateiname.pdf\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.\x00Mit mehr W\xc3\xb6rtern fortfahren\x00Ausf\xc3\xbchrliche Ausgabe, hilfreich zur Fehlerbeseitigung.\x00Mostrar\x00Spezielles Format ansehen\x00En espera...\x00Procesando...\x00Vorverarbeitetes HTML gespeichert unter\x00No tienes permiso de lectura en el archivo: \x00Sichern Sie die Website %s zuerst als HTML Datei und benutzen Sie dann html2lrf mit der gespeicherten HTML Datei.\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.\x00any2lrf [options] dateiname\n\nKonvertiert verschiedene eBook Formate in LRF Dateien. Unterst\xc3\xbctzte Formate:\nLIT, RTF, TXT, HTML, EPUB, MOBI, PRC und PDF. any2lrf verarbeitet auch RAR oder\nZIP Archive, indem es nach einem eBook im Archiv sucht.\n\x00beinhaltet\x00libprs500\x00dateiname.epub\x00'} \ No newline at end of file diff --git a/src/libprs500/translations/sl.po b/src/libprs500/translations/sl.po deleted file mode 100644 index 45b6f56c87..0000000000 --- a/src/libprs500/translations/sl.po +++ /dev/null @@ -1,2411 +0,0 @@ -# Translation template file.. -# Copyright (C) 2007 Kovid Goyal -# Kovid Goyal <kovid@kovidgoyal.net>, 2007. -# -msgid "" -msgstr "" -"Project-Id-Version: libprs500 0.4.17\n" -"POT-Creation-Date: 2008-04-04 09:07+PDT\n" -"PO-Revision-Date: 2007-11-08 14:39+PST\n" -"Last-Translator: Automatically generated\n" -"Language-Team: sl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Generated-By: pygettext.py 1.5\n" - -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:85 -msgid "%sUsage%s: %s\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/__init__.py:122 -msgid "Created by " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:88 -msgid "Set the title. Default: filename." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:90 -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:91 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:630 -msgid "Unknown" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:93 -msgid "Set the comment." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:95 -msgid "Set the category" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:97 -msgid "Sort key for the title" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:99 -msgid "Sort key for the author" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:101 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:16 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:341 -msgid "Publisher" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:103 -msgid "Path to file containing image to be used as cover" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:105 -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:108 -msgid "Output file name. Default is derived from input filename" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:110 -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:113 -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:115 -msgid "Enable autorotation of images that are wider than the screen width." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:118 -msgid "Set the space between words in pts. Default is %default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:120 -msgid "Separate paragraphs by blank lines." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:122 -msgid "Add a header to all the pages with title and author." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:124 -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:126 -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:128 -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:130 -msgid "" -"Minimum paragraph indent (the indent of the first line of a paragraph) in " -"pts. Default: %default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:132 -msgid "" -"Increase the font size by 2 * FONT_DELTA pts and the line spacing by " -"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:137 -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:144 -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:150 -msgid "Left margin of page. Default is %default px." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:152 -msgid "Right margin of page. Default is %default px." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:154 -msgid "Top margin of page. Default is %default px." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:156 -msgid "Bottom margin of page. Default is %default px." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:160 -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:164 -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:169 -msgid "" -"Prevent the automatic insertion of page breaks before detected chapters." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:173 -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:176 -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:186 -msgid "" -"Force a page break before tags whoose names match this regular expression." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:188 -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:191 -msgid "Preprocess Baen HTML files to improve generated LRF." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:193 -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:195 -msgid "Use this option on html0 files from Book Designer." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:198 -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" -" " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:207 -msgid "The serif family of fonts to embed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:210 -msgid "The sans-serif family of fonts to embed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:213 -msgid "The monospace family of fonts to embed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:217 -msgid "Be verbose while processing" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:219 -msgid "Convert to LRS" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:221 -msgid "" -"Minimize memory usage at the cost of longer processing times. Use this " -"option if you are on a memory constrained machine." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/__init__.py:223 -msgid "" -"Specify the character encoding of the source file. If the output LRF file " -"contains strange characters, try changing this option. A common encoding for " -"files from windows computers is cp-1252. Another common choice is utf-8. The " -"default is to try and guess the encoding." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:140 -msgid "" -"any2lrf [options] myfile\n" -"\n" -"Convert any ebook format into LRF. Supported formats are:\n" -"LIT, RTF, TXT, HTML, EPUB, MOBI, PRC and PDF. any2lrf will also process a " -"RAR or\n" -"ZIP archive, looking for an ebook inside the archive.\n" -" " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/any/convert_from.py:155 -msgid "No file to convert specified." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/epub/convert_from.py:17 -msgid "" -"Usage: %prog [options] mybook.epub\n" -" \n" -" \n" -"%prog converts mybook.epub to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:20 -msgid "Options to control the behavior of feeds2disk" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:22 -msgid "Options to control the behavior of html2lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/feeds/convert_from.py:44 -msgid "Fetching of recipe failed: " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:302 -msgid "\tBook Designer file detected." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:304 -msgid "\tParsing HTML..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:326 -msgid "\tBaen file detected. Re-parsing..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:339 -msgid "Written preprocessed HTML to " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:350 -msgid "Processing %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:364 -msgid "\tConverting to BBeB..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:502 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:509 -msgid "Could not parse file: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:521 -msgid "Failed to parse link %s %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:564 -msgid "Cannot add link %s to TOC" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:906 -msgid "Unable to process image %s. Error: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:944 -msgid "Unable to process interlaced PNG %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:959 -msgid "" -"Could not process image: %s\n" -"%s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1649 -msgid "An error occurred while processing a table: %s. Ignoring table markup." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1651 -msgid "" -"Bad table:\n" -"%s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1673 -msgid "Table has cell that is too large" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1701 -msgid "" -"You have to save the website %s as an html file first and then run html2lrf " -"on it." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1741 -msgid "Could not read cover image: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1744 -msgid "Cannot read from: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1873 -msgid "Failed to process opf file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/html/convert_from.py:1879 -msgid "" -"Usage: %prog [options] mybook.html\n" -"\n" -"\n" -"%prog converts mybook.html to mybook.lrf. \n" -"%prog follows all links in mybook.html that point \n" -"to local files recursively. Thus, you can use it to \n" -"convert a whole tree of HTML files." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lit/convert_from.py:19 -msgid "" -"Usage: %prog [options] mybook.lit\n" -"\n" -"\n" -"%prog converts mybook.lit to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:254 -msgid "" -"%prog [options] file.lrs\n" -"Compile an LRS file into an LRF file." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:255 -msgid "Path to output file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:257 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:113 -msgid "Verbose processing" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/lrs/convert_from.py:259 -msgid "Convert LRS to LRS, useful for debugging." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:541 -msgid "" -"%prog [options] mybook.lrf\n" -"\n" -"\n" -"Show/edit the metadata in an LRF file.\n" -"\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:548 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:18 -msgid "Set the book title" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:550 -msgid "Set sort key for the title" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:552 -msgid "Set the author" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:554 -msgid "Set sort key for the author" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:556 -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:22 -msgid "The category this book belongs to. E.g.: History" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:559 -msgid "Path to a graphic that will be set as this files' thumbnail" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:562 -msgid "Path to a txt file containing the comment to be stored in the lrf file." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:566 -msgid "Extract thumbnail from LRF file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:568 -msgid "Set book ID" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/meta.py:570 -msgid "Don't know what this is for" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/mobi/convert_from.py:43 -msgid "" -"Usage: %prog [options] mybook.mobi|prc\n" -"\n" -"\n" -"%prog converts mybook.mobi to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:132 -msgid "" -"%prog book.lrf\n" -"Convert an LRF file into an LRS (XML UTF-8 encoded) file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:133 -msgid "Output LRS file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:151 -msgid "Parsing LRF..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:154 -msgid "Creating XML..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/parser.py:156 -msgid "LRS written to " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/convert_from.py:47 -msgid "" -"%prog [options] mybook.pdf\n" -"\n" -"\n" -"%prog converts mybook.pdf to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:402 -msgid "" -"Path to output directory in which to create the HTML file. Defaults to " -"current directory." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:404 -msgid "Be more verbose." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/pdf/reflow.py:416 -msgid "You must specify a single PDF file." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/rtf/convert_from.py:20 -msgid "" -"%prog [options] mybook.rtf\n" -"\n" -"\n" -"%prog converts mybook.rtf to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:17 -msgid "" -"%prog [options] mybook.txt\n" -"\n" -"\n" -"%prog converts mybook.txt to mybook.lrf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/lrf/txt/convert_from.py:22 -msgid "Print generated HTML to stdout and quit." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:20 -msgid "Set the authors" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/__init__.py:24 -msgid "Set the comment" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 -msgid "Usage:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/epub.py:100 -msgid "mybook.epub" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:95 -msgid "" -"\n" -"%prog [options] key\n" -"\n" -"Fetch metadata for books from isndb.com. You can specify either the \n" -"books ISBN ID or its title and author. If you specify the title and author,\n" -"then more than one book may be returned.\n" -"\n" -"key is the account key you generate after signing up for a free account from " -"isbndb.com.\n" -"\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:106 -msgid "The ISBN ID of the book you want metadata for." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:108 -msgid "The author whoose book to search for." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:110 -msgid "The title of the book to search for." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/isbndb.py:112 -msgid "The publisher of the book to search for." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:46 -msgid "" -"Could not fetch cover as server is experiencing high load. Please try again " -"later." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:47 -msgid " not found." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:50 -msgid "Server error. Try again later." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/library_thing.py:59 -msgid "" -"\n" -"%prog [options] ISBN\n" -"\n" -"Fetch a cover image for the book identified by ISBN from LibraryThing.com\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:746 -msgid "Usage: %s file.lit" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/lit.py:753 -msgid "Cover saved to" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:39 -msgid "Usage: pdf-meta file.pdf" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/metadata/pdf.py:40 -msgid "No filename specified." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:297 -msgid "%prog [options] myebook.mobi" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:299 -msgid "Output directory. Defaults to current directory." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:318 -msgid "Raw MOBI HTML saved in" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/ebooks/mobi/reader.py:320 -msgid "OEB ebook created in" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/choose_format_ui.py:42 -msgid "Choose Format" -msgstr "" - -#: /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" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -msgid "<br>Must be a directory." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -msgid "Invalid database location " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:89 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 -msgid "Invalid database location" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:92 -msgid "Invalid database location.<br>Cannot write to " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 -msgid "Compacting database. This may take a while." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config.py:104 -msgid "Compacting..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:216 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:279 -msgid "Configuration" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:220 -msgid "Basic" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:224 -msgid "Advanced" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:226 -msgid "&Location of books database (library1.db)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:227 -msgid "Browse for the new database location" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:238 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:610 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:320 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:329 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:331 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:335 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:144 -#: /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:235 -#: /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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:188 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:189 -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:190 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:272 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:278 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:280 -msgid "..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:229 -msgid "Use &Roman numerals for series number" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:230 -msgid "Default network &timeout:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:231 -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:232 -msgid " seconds" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:233 -msgid "&Priority for conversion jobs:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:234 -msgid "Frequently used directories" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:235 -msgid "Add a directory to the frequently used directories list" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:237 -msgid "Remove a directory from the frequently used directories list" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:239 -msgid "Select visible &columns in library view" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:240 -msgid "Free unused diskspace from the database" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:241 -msgid "&Compact database" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/config_ui.py:242 -msgid "&Metadata from file name" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/conversion_error_ui.py:37 -msgid "ERROR" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:101 -msgid "Cannot connect" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/fetch_metadata.py:102 -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." -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 "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/job_view_ui.py:30 -msgid "Details of job" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:39 -msgid "Active Jobs" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/jobs_ui.py:40 -msgid "&Stop selected job" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:81 -msgid "No available formats" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:82 -msgid "Cannot convert %s as this book has no supported formats" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:86 -msgid "Choose the format to convert into LRF" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:94 -msgid "Convert %s to LRF" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:97 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:149 -msgid "Set conversion defaults" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:163 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:43 -msgid "Cannot read" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:164 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:44 -msgid "You do not have permission to read the file: " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:172 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:52 -msgid "Error reading file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:173 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:53 -msgid "<p>There was an error reading from file: <br /><b>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:179 -msgid " is not a valid picture" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:245 -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:246 -msgid "<ol><li><b>baen</b> - Books from BAEN Publishers</li>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:247 -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:248 -msgid "<li><b>book-designer</b> - HTML0 files from Book Designer</li>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:281 -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:281 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:592 -msgid "Metadata" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:282 -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:282 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:596 -msgid "Look & Feel" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:283 -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:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:600 -msgid "Page Setup" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 -msgid "Fine tune the detection of chapter and section headings." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:284 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:604 -msgid "Chapter Detection" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:292 -msgid "<font color=\"gray\">No help available</font>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single.py:396 -msgid "Bulk convert ebooks to LRF" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:587 -msgid "Convert to LRF" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:588 -msgid "Category" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:606 -msgid "Options" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:607 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:332 -msgid "Book Cover" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:608 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:333 -msgid "Change &cover image:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:609 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:334 -msgid "Browse for an image to use as the cover of this book." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:611 -msgid "Use cover from &source file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:612 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:300 -msgid "&Title: " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:613 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:301 -msgid "Change the title of this book" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:614 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:129 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:302 -msgid "&Author(s): " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:615 -#: /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" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:616 -msgid "Author So&rt:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:618 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:137 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:310 -msgid "&Publisher: " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:619 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:138 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:311 -msgid "Change the publisher of this book" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:620 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:312 -msgid "Ta&gs: " -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." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:622 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:143 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:316 -msgid "&Series:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:623 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:624 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:144 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_bulk_ui.py:145 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:317 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:318 -msgid "List of known series. You can add new series." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:625 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:626 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:321 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:322 -msgid "Series index." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:627 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:323 -msgid "Book " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:628 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:325 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:223 -msgid "Comments" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:629 -msgid "Base &font size:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:630 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:637 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:639 -msgid " pts" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:631 -msgid "Embedded Fonts" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:632 -msgid "&Serif:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:633 -msgid "S&ans-serif:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:634 -msgid "&Monospace:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:635 -msgid "Source en&coding:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:636 -msgid "Minimum &indent:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:638 -msgid "&Word spacing:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:640 -msgid "Enable auto &rotation of images" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:641 -msgid "Insert &blank lines between paragraphs" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:642 -msgid "Ignore &tables" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:643 -msgid "Ignore &colors" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:644 -msgid "&Preprocess:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:645 -msgid "Header" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:646 -msgid "&Show header" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:647 -msgid "&Header format:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:648 -msgid "Override<br>CSS" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:649 -msgid "&Profile:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:650 -msgid "&Left Margin:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:651 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:653 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:655 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:657 -msgid " px" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:652 -msgid "&Right Margin:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:654 -msgid "&Top Margin:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:656 -msgid "&Bottom Margin:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:658 -msgid "Title based detection" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:659 -msgid "&Disable chapter detection" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:660 -msgid "&Regular expression:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:661 -msgid "Tag based detection" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:662 -msgid "&Page break before tag:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:663 -msgid "&Force page break before tag:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:664 -msgid "Force page break before &attribute:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/lrf_single_ui.py:665 -msgid "Help on item" -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" -"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>" -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." -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 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:308 -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:224 -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:254 -msgid "<b>Could not fetch cover.</b><br/>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:254 -msgid "Could not fetch cover" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 -msgid "Cannot fetch cover" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single.py:260 -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" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/metadata_single_ui.py:338 -msgid "Change password" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:61 -msgid "Password needed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:63 -msgid "&Username:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:64 -msgid "&Password:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/password_ui.py:65 -msgid "&Show password" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:14 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:336 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:700 -msgid "Title" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:15 -msgid "Author" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:17 -msgid "Tag" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:18 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:343 -msgid "Series" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:19 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:634 -msgid "Format" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search.py:20 -msgid "Any" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:40 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:110 -msgid "Form" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:41 -msgid "contains" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:42 -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." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_item_ui.py:44 -msgid "Negate" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:80 -msgid "Advanced Search" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:81 -msgid "Match a&ll of the following criteria" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:82 -msgid "Match a&ny of the following criteria" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:83 -msgid "Search criteria" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:84 -msgid "More" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/search_ui.py:85 -msgid "Fewer" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:141 -msgid "Tag Editor" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:142 -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." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:145 -msgid "Apply tag to current book" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:147 -msgid "A&pplied tags" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:148 -msgid "Unapply (remove) tag from current book" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/tag_editor_ui.py:150 -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." -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.py:48 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:58 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:222 -msgid "Switch to Advanced mode" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:53 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:61 -msgid "Switch to Basic mode" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:71 -msgid "Feed must have a title" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:72 -msgid "The feed must have a title" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:76 -msgid "Feed must have a URL" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:77 -msgid "The feed %s must have a URL" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:82 -msgid "Already exists" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:83 -msgid "This feed has already been added to the recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:133 -msgid "Invalid input" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:125 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:134 -msgid "<p>Could not create recipe. Error:<br>%s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:140 -msgid "Replace recipe?" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles.py:141 -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:218 -msgid "Add custom news source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:219 -msgid "Available user recipes" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:220 -msgid "Add/Update &recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:221 -msgid "&Remove recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:223 -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 mode\" to further customize the fetch process.</p></" -"body></html>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:227 -msgid "Recipe &title:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:228 -msgid "&Oldest article:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:229 -msgid "The oldest article to download" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:230 -msgid " days" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:231 -msgid "&Max. number of articles per feed:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:232 -msgid "Maximum number of articles to download per feed." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:233 -msgid "Feeds in recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:234 -msgid "Remove feed from recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:236 -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:239 -msgid "Add feed to recipe" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:237 -msgid "&Feed title:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:238 -msgid "Feed &URL:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:240 -msgid "&Add feed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/dialogs/user_profiles_ui.py:241 -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:242 -msgid "Recipe source code (python)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:111 -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:112 -msgid "Regular &expression" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:113 -msgid "&Test" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:114 -msgid "File &name:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:115 -msgid "Test" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:116 -msgid "Title:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:117 -msgid "Regular expression group name (?P<title>)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:118 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:121 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:124 -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:127 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:41 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:45 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:50 -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:55 -msgid "No match" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:119 -msgid "Authors:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:120 -msgid "Regular expression group name (?P<authors>)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:122 -msgid "Series:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:123 -msgid "Regular expression group name (?P<series>)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:125 -msgid "Series index:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/filename_pattern_ui.py:126 -msgid "Regular expression group name (?P<series_index>)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:279 -msgid "Job" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:280 -msgid "Status" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:281 -msgid "Progress" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:282 -msgid "Running time" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 -msgid "Error" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:310 -msgid "Finished" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 -msgid "Waiting" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:312 -msgid "Working" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:315 -msgid "Unavailable" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:343 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:347 -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:351 -msgid "Cannot kill job" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:344 -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:348 -msgid "Cannot kill already completed jobs." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/jobs.py:352 -msgid "Cannot kill waiting jobs." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:212 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:218 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:222 -msgid "None" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:213 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:342 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:640 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:704 -msgid "Tags" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:219 -msgid "Formats" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:228 -msgid "Book <font face=\"serif\">%s</font> of %s." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:328 -msgid "Double click to <b>edit</b> me<br><br>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:337 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:701 -msgid "Author(s)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:338 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:702 -msgid "Size (MB)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:339 -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:703 -msgid "Date" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:340 -msgid "Rating" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:635 -msgid "Path" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:639 -msgid "Timestamp" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/library.py:739 -msgid "Search (For Advanced Search click the button to the left)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:51 -msgid "Configure Viewer" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:52 -msgid "Use white background" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:53 -msgid "Hyphenate" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/config_ui.py:54 -msgid "<b>Changes will only take affect after a restart." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 -msgid "<b>No matches</b> for the search phrase <i>%s</i> were found." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main.py:152 -msgid "No matches found" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:184 -msgid "LRF Viewer" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:191 -msgid "Parsing LRF file" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:192 -msgid "Next Page" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:193 -msgid "Previous Page" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:194 -msgid "Back" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:195 -msgid "Forward" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:196 -msgid "Next match" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:197 -msgid "Open ebook" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/lrf_renderer/main_ui.py:198 -msgid "Configure" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:72 -msgid "Error communicating with device" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:102 -msgid "Send to main memory" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:103 -msgid "Send to storage card" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:106 -msgid "Edit metadata individually" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:107 -msgid "Edit metadata in bulk" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:110 -msgid "Add books from a single directory" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:111 -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:112 -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:126 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:289 -msgid "Save to disk" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:127 -msgid "Save to disk in a single directory" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:130 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:292 -msgid "View" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:131 -msgid "View specific format" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:146 -msgid "Convert individually" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:147 -msgid "Bulk convert" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:260 -msgid "Device database corrupted" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:261 -msgid "" -"\n" -" <p>The database of books on the reader is corrupted. Try the " -"following:\n" -" <ol>\n" -" <li>Unplug the reader. Wait for it to finish regenerating " -"the database (i.e. wait till it is ready to be used). Plug it back in. Now " -"it should work with %(app)s. If not try the next step.</li>\n" -" <li>Quit %(app)s. Find the file media.xml in the reader's " -"main memory. Delete it. Unplug the reader. Wait for it to regenerate the " -"file. Re-connect it and start %(app)s.</li>\n" -" </ol>\n" -" " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:313 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:379 -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:316 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:382 -msgid "Duplicates found!" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:412 -msgid "No space on device" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:413 -msgid "<p>Cannot upload books to device there is no more free space available " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 -msgid "Cannot edit metadata" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:482 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:501 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 -msgid "No books selected" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:587 -msgid "Cannot save to disk" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:626 -msgid "Fetch news from " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:628 -msgid "Fetching news from " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:638 -msgid "News fetched. Uploading to device." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:648 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:707 -msgid "Cannot convert" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 -msgid "No book selected" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:767 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:784 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:798 -msgid "Cannot view" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:773 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:803 -msgid "Choose the format to view" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:799 -msgid "%s has no available formats." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 -msgid "Cannot configure" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:828 -msgid "Cannot configure while there are running jobs." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:863 -msgid "Invalid database" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:864 -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:872 -msgid "Could not move database" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:922 -msgid "Error talking to device" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main.py:923 -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.py:1003 -msgid "" -"<span style=\"color:red; font-weight:bold\">Latest version: <a href=\"%s\">%" -"s</a></span>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:266 -msgid "libprs500" -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" -"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>" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:271 -msgid "Advanced search" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:273 -msgid "Alt+S" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:274 -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" -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" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:277 -msgid "Reset Quick Search" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:281 -msgid "Add books" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:282 -msgid "A" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:283 -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:284 -msgid "Remove books" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:285 -msgid "Del" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:286 -msgid "Edit meta information" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:287 -msgid "E" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:288 -msgid "Send to device" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:290 -msgid "Fetch news" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/main_ui.py:291 -msgid "Convert E-books" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:32 -msgid "Add a custom news source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/news.py:53 -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:79 -msgid "Custom news sources" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:87 -msgid "Jobs:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/status.py:96 -msgid "Click to see list of active jobs." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:34 -msgid "Invalid regular expression" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:35 -msgid "Invalid regular expression: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:86 -msgid "Library" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:87 -msgid "" -"Reader\n" -"%s available" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/gui2/widgets.py:88 -msgid "" -"Card\n" -"%s available" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/parallel.py:114 -msgid "Job killed by user" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:56 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:77 -msgid "Unknown feed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:95 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/__init__.py:115 -msgid "Untitled article" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:15 -msgid "" -"%%prog [options] ARG\n" -"\n" -"%%prog parses an online source of articles, like an RSS or ATOM feed and \n" -"fetches the article contents organized in a nice hierarchy.\n" -"\n" -"ARG can be one of:\n" -"\n" -"file name - %%prog will try to load a recipe from the file\n" -"\n" -"builtin recipe title - %%prog will load the builtin recipe and use it to " -"fetch the feed. For e.g. Newsweek or \"The BBC\" or \"The New York Times\"\n" -"\n" -"recipe as a string - %%prog will load the recipe directly from the string " -"arg.\n" -"\n" -"Available builtin recipes are:\n" -"%s\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:37 -msgid "Options to control web2disk (used to fetch websites linked from feeds)" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:40 -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." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:44 -msgid "Be more verbose while processing." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:46 -msgid "" -"The title for this recipe. Used as the title for any ebooks created from the " -"downloaded feeds." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:47 -msgid "Username for sites that require a login to access content." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:48 -msgid "Password for sites that require a login to access content." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:51 -msgid "" -"Number of levels of links to follow on webpages that are linked to from " -"feeds. Defaul %default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:53 -msgid "" -"The directory in which to store the downloaded feeds. Defaults to the " -"current directory." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:55 -msgid "Dont show the progress bar" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:57 -msgid "Very verbose output, useful for debugging." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:59 -msgid "" -"Useful for recipe development. Forces max_articles_per_feed to 2 and " -"downloads at most 2 feeds." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:84 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/main.py:88 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:567 -msgid "Fetching feeds..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:33 -msgid "Unknown News Source" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:468 -msgid "Download finished" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:470 -msgid "Failed to download the following articles:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:472 -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:478 -msgid " from " -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:476 -msgid "Failed to download parts of the following articles:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:480 -msgid "\tFailed links:" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:549 -msgid "Could not fetch article. Run with --debug to see the reason" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:571 -msgid "Got feeds from index page" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:575 -msgid "Trying to download cover..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:625 -msgid "Starting download [%d thread(s)]..." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:639 -msgid "Feeds downloaded to %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:648 -msgid "Could not download cover: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:653 -msgid "Downloading cover from %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:688 -msgid "Untitled Article" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:729 -msgid "" -"\n" -"Downloaded article %s from %s\n" -"%s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:735 -msgid "Article downloaded: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:741 -msgid "Failed to download article: %s from %s\n" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:746 -msgid "Article download failed: %s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/feeds/news.py:761 -msgid "Fetching feed" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:373 -msgid "" -"%prog URL\n" -"\n" -"Where URL is for example http://google.com" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:376 -msgid "Base directory into which URL is saved. Default is %default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:379 -msgid "" -"Timeout in seconds to wait for a response from the server. Default: %default " -"s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:382 -msgid "" -"Maximum number of levels to recurse i.e. depth of links to follow. Default %" -"default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:385 -msgid "" -"The maximum number of files to download. This only applies to files from <a " -"href> tags. Default is %default" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:387 -msgid "" -"Minimum interval in seconds between consecutive fetches. Default is %default " -"s" -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:389 -msgid "" -"The character encoding for the websites you are trying to download. The " -"default is to try and guess the encoding." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:391 -msgid "" -"Only links that match this regular expression will be followed. This option " -"can be specified multiple times, in which case as long as a link matches any " -"one regexp, it will be followed. By default all links are followed." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:393 -msgid "" -"Any link that matches this regular expression will be ignored. This option " -"can be specified multiple times, in which case as long as any regexp matches " -"a link, it will be ignored.By default, no links are ignored. If both --" -"filter-regexp and --match-regexp are specified, then --filter-regexp is " -"applied first." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:395 -msgid "Do not download CSS stylesheets." -msgstr "" - -#: /home/kovid/work/libprs500/src/libprs500/web/fetch/simple.py:396 -msgid "Show detailed output information. Useful for debugging" -msgstr "" diff --git a/upload.py b/upload.py index e87725a292..ded8edba36 100644 --- a/upload.py +++ b/upload.py @@ -7,21 +7,21 @@ from functools import partial #from pyvix.vix import Host, VIX_SERVICEPROVIDER_VMWARE_WORKSTATION import pysvn -from libprs500 import __version__, __appname__ +from calibre import __version__, __appname__ -PREFIX = "/var/www/vhosts/kovidgoyal.net/subdomains/libprs500" +PREFIX = "/var/www/calibre.kovidgoyal.net" DOWNLOADS = PREFIX+"/httpdocs/downloads" DOCS = PREFIX+"/httpdocs/apidocs" USER_MANUAL = PREFIX+'/httpdocs/user_manual' -HTML2LRF = "src/libprs500/ebooks/lrf/html/demo" -TXT2LRF = "src/libprs500/ebooks/lrf/txt/demo" +HTML2LRF = "src/calibre/ebooks/lrf/html/demo" +TXT2LRF = "src/calibre/ebooks/lrf/txt/demo" check_call = partial(_check_call, shell=True) #h = Host(hostType=VIX_SERVICEPROVIDER_VMWARE_WORKSTATION) def tag_release(): print 'Tagging release' - base = 'https://kovid@svn.kovidgoyal.net/code/libprs500' + base = 'https://kovid@svn.kovidgoyal.net/code/calibre' tag = base + '/tags/'+__version__ client = pysvn.Client() client.exception_style = 1 @@ -88,19 +88,19 @@ def upload_demo(): '''--serif-family "/usr/share/fonts/corefonts, Times New Roman" ''' '''--mono-family "/usr/share/fonts/corefonts, Andale Mono" ''' ''''''%(HTML2LRF,)) - check_call('cd src/libprs500/ebooks/lrf/html/demo/ && zip -j /tmp/html-demo.zip * /tmp/html2lrf.lrf') + check_call('cd src/calibre/ebooks/lrf/html/demo/ && zip -j /tmp/html-demo.zip * /tmp/html2lrf.lrf') check_call('''scp /tmp/html-demo.zip castalia:%s/'''%(DOWNLOADS,)) check_call('''txt2lrf -t 'Demonstration of txt2lrf' -a 'Kovid Goyal' ''' '''--header -o /tmp/txt2lrf.lrf %s/demo.txt'''%(TXT2LRF,) ) - check_call('cd src/libprs500/ebooks/lrf/txt/demo/ && zip -j /tmp/txt-demo.zip * /tmp/txt2lrf.lrf') + check_call('cd src/calibre/ebooks/lrf/txt/demo/ && zip -j /tmp/txt-demo.zip * /tmp/txt2lrf.lrf') check_call('''scp /tmp/txt-demo.zip castalia:%s/'''%(DOWNLOADS,)) def upload_installers(): exe, dmg = installer_name('exe'), installer_name('dmg') if exe and os.path.exists(exe): - check_call('''ssh castalia rm -f %s/libprs500\*.exe'''%(DOWNLOADS,)) + check_call('''ssh castalia rm -f %s/calibre\*.exe'''%(DOWNLOADS,)) check_call('''scp %s castalia:%s/'''%(exe, DOWNLOADS)) - check_call('''ssh castalia rm -f %s/libprs500\*.dmg'''%(DOWNLOADS,)) + check_call('''ssh castalia rm -f %s/calibre\*.dmg'''%(DOWNLOADS,)) if dmg and os.path.exists(dmg): check_call('''scp %s castalia:%s/'''%(dmg, DOWNLOADS)) check_call('''ssh castalia chmod a+r %s/\*'''%(DOWNLOADS,)) @@ -114,7 +114,7 @@ def upload_docs(): def upload_user_manual(): cwd = os.getcwdu() - os.chdir('src/libprs500/manual') + os.chdir('src/calibre/manual') try: check_call('make clean html') check_call('ssh castalia rm -rf %s/\\*'%USER_MANUAL) @@ -131,7 +131,7 @@ def main(): check_call("sudo python setup.py develop", shell=True) check_call('sudo rm src/%s/gui2/images_rc.pyc'%__appname__, shell=True) check_call('make', shell=True) - check_call('svn commit -m "Updated translations" src/libprs500/translations') + check_call('svn commit -m "Updated translations" src/calibre/translations') tag_release() upload_demo() build_installers() diff --git a/windows_installer.py b/windows_installer.py index 5cec01b95b..b6484b510b 100644 --- a/windows_installer.py +++ b/windows_installer.py @@ -7,8 +7,8 @@ from distutils.core import setup from distutils.filelist import FileList import py2exe, glob from py2exe.build_exe import py2exe as build_exe -from libprs500 import __version__ as VERSION -from libprs500 import __appname__ as APPNAME +from calibre import __version__ as VERSION +from calibre import __appname__ as APPNAME PY2EXE_DIR = os.path.join('build','py2exe') if os.path.exists(PY2EXE_DIR): @@ -39,7 +39,7 @@ Var MUI_TEMP !define PRODUCT_NAME "%(name)s" !define XPUI_BRANDINGTEXT "${PRODUCT_NAME} created by Kovid Goyal" !define PRODUCT_VERSION "%(version)s" -!define WEBSITE "https://libprs500.kovidgoyal.net" +!define WEBSITE "https://calibre.kovidgoyal.net" !define DEVCON "C:\devcon\i386\devcon.exe" !define PY2EXE_DIR "%(py2exe_dir)s" !define LIBUSB_DIR "C:\libusb" @@ -150,11 +150,11 @@ Section "Main" "secmain" ;Create shortcuts WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${WEBSITE}" CreateDirectory "$SMPROGRAMS\$STARTMENU_FOLDER" - CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\libprs500.lnk" "$INSTDIR\${PRODUCT_NAME}.exe" + CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\calibre.lnk" "$INSTDIR\${PRODUCT_NAME}.exe" CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\lrfviewer.lnk" "$INSTDIR\lrfviewer.exe" CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url" CreateShortCut "$SMPROGRAMS\$STARTMENU_FOLDER\Uninstall.lnk" "$INSTDIR\Uninstall.exe" - CreateShortCut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\libprs500.exe" + CreateShortCut "$DESKTOP\${PRODUCT_NAME}.lnk" "$INSTDIR\calibre.exe" !insertmacro MUI_STARTMENU_WRITE_END @@ -287,7 +287,7 @@ r'''<?xml version='1.0' encoding='windows-1252'?> Privileged </Condition> <Property Id='ARPNOMODIFY'>1</Property> - <Property Id='ARPURLINFOABOUT'>http://libprs500.kovidgoyal.net</Property> + <Property Id='ARPURLINFOABOUT'>http://calibre.kovidgoyal.net</Property> <Property Id='ARPPRODUCTICON'>appicon.ico</Property> <Media Id='1' Cabinet='%(appname)s.cab' EmbedCab='yes' /> <Directory Id='TARGETDIR' Name='SourceDir'> @@ -459,7 +459,7 @@ def main(): 'win32file', 'pythoncom', 'rtf2xml', 'lxml', 'lxml._elementpath', 'genshi', 'path', 'pydoc', 'IPython.Extensions.*', - 'libprs500.web.feeds.recipes.*', 'pydoc', + 'calibre.web.feeds.recipes.*', 'pydoc', ], 'packages' : ['PIL'], 'excludes' : ["Tkconstants", "Tkinter", "tcl",