diff --git a/Changelog.yaml b/Changelog.yaml
index 1baa99006b..f2eee7dbef 100644
--- a/Changelog.yaml
+++ b/Changelog.yaml
@@ -4,6 +4,73 @@
# for important features/bug fixes.
# Also, each release can have new and improved recipes.
+- version: 0.6.25
+ date: 2009-12-04
+
+ new features:
+
+ - title: "Adroid devices: Allow user to customize the directory for sending books"
+ description: >
+ Now the user can choose what directory on the device calibre will send
+ books to. This allows calibre to support different reading software on Android devices
+ apart from just WordPlayer.
+ tickets: [3392]
+
+ - title: "LIT Input: Handle LIT files that are really TXT files"
+ description: >
+ Some poorly created LIT files are really just one big block of text. Now calibre
+ will automatically convert that TXT into paragraphs based on blank lines. This
+ will prevent errors when trying to convert the LIT files to EPUB.
+
+ - title: Device support for Motorola Droid (windows and linux)
+
+ - title: Various improvements to metadata reading for eReader and PML books
+
+ - title: Allow adding of multiple empty books at once
+
+ - title: "Device drivers: Allow one driver to handle devices from multiple vendors. Also allow device interface plugins to override the USB device detection code"
+
+ - title: "calibre-debug: Remove --develop-from option as it is no longer needed"
+
+ bug fixes:
+ - title: "Content server: Fix password protected access from Adroid devices"
+ tickets: [3952]
+
+ - title: "calibredb with output format stanza once again escapes URLs"
+ tickets: [4084]
+
+ - title: Implement work around for a CSS bug in Adobe Digital Editions that causes it to crash
+ description: >
+ If the CSS contains the declaration font-size: medium instead of font-size: normal
+ Adobe Digital Editions will crash. calibre will now automatically replace medium with
+ normal.
+
+ - title: "PML Output: Only create \\a and \\U tags for supported characters."
+
+ - title: "PML Input: Allow for images in top-level bookname_image and images directories"
+
+ - title: Allow sending of MOBI files to the PocketBook 360
+ tickets: [4118]
+
+ - title: "JetBook driver: Don't incorrectly nest folders when uploading books by the same author"
+ tickets: [4120]
+
+ - title: Speed up download of the free Economist recipe
+
+ - title: "FB2 Input: Workaround for unescaped amerpsands"
+
+ new recipes:
+ - title: Money Control
+ author: kwetal
+
+ - title: Vrij Nederland
+ author: kwetal
+
+ improved recipes:
+ - Times Online
+ - Endgadget
+ - Business Week
+
- version: 0.6.25
date: 2009-11-30
diff --git a/resources/recipes/times_online.recipe b/resources/recipes/times_online.recipe
index 786598dd46..98c26e6a66 100644
--- a/resources/recipes/times_online.recipe
+++ b/resources/recipes/times_online.recipe
@@ -11,7 +11,7 @@ from calibre.ebooks.BeautifulSoup import Tag
class Timesonline(BasicNewsRecipe):
title = 'The Times Online'
- __author__ = 'Darko Miletic'
+ __author__ = 'Darko Miletic and Sujata Raman'
description = 'UK news'
publisher = 'timesonline.co.uk'
category = 'news, politics, UK'
@@ -20,21 +20,43 @@ class Timesonline(BasicNewsRecipe):
no_stylesheets = True
use_embedded_content = False
simultaneous_downloads = 1
- encoding = 'cp1252'
+ encoding = 'ISO-8859-1'
lang = 'en-UK'
+ remove_javascript = True
language = 'en'
+ recursions = 9
+ match_regexps = [r'http://www.timesonline.co.uk/.*page=[2-9]']
-
- html2lrf_options = [
- '--comment', description
- , '--category', category
- , '--publisher', publisher
+ keep_only_tags = [
+ dict(name='div', attrs= {'id':['region-column1and2-layout2']}),
+ {'class' : ['subheading']},
+ dict(name='div', attrs= {'id':['dynamic-image-holder']}),
+ dict(name='div', attrs= {'class':['article-author']}),
+ dict(name='div', attrs= {'id':['related-article-links']}),
]
- html2epub_options = 'publisher="' + publisher + '"\ncomments="' + description + '"\ntags="' + category + '"'
+ remove_tags = [
+ dict(name=['embed','object','form','iframe']),
+ dict(name='span', attrs = {'class':'float-left padding-left-8 padding-top-2'}),
+ dict(name='div', attrs= {'id':['region-footer','region-column2-layout2','grid-column4','login-status','comment-sort-order']}),
+ dict(name='div', attrs= {'class': ['debate-quote-container','clear','your-comment','float-left related-attachements-container','float-left padding-bottom-5 padding-top-8','puff-top']}),
+ dict(name='span', attrs = {'id': ['comment-count']}),
+ dict(name='ul',attrs = {'id': 'read-all-comments'}),
+ dict(name='a', attrs = {'class':'reg-bold'}),
+ ]
- remove_tags = [dict(name=['embed','object'])]
- remove_tags_after = dict(name='div', attrs={'class':'bg-666'})
+
+ extra_css = '''
+ .small{font-family :Arial,Helvetica,sans-serif; font-size:x-small;}
+ .byline{font-family :Arial,Helvetica,sans-serif; font-size:x-small; background:#F8F1D8;}
+ .color-666{font-family :Arial,Helvetica,sans-serif; font-size:x-small; color:#666666; }
+ h1{font-family:Georgia,Times New Roman,Times,serif;font-size:large; }
+ .color-999 {color:#999999;}
+ .x-small {font-size:x-small;}
+ #related-article-links{font-family :Arial,Helvetica,sans-serif; font-size:small;}
+ h2{color:#333333;font-family :Georgia,Times New Roman,Times,serif; font-size:small;}
+ p{font-family :Arial,Helvetica,sans-serif; font-size:small;}
+ '''
feeds = [
(u'Top stories from Times Online', u'http://www.timesonline.co.uk/tol/feeds/rss/topstories.xml' ),
@@ -49,18 +71,32 @@ class Timesonline(BasicNewsRecipe):
('Literary Supplement', 'http://www.timesonline.co.uk/tol/feeds/rss/thetls.xml'),
]
- def print_version(self, url):
- return url + '?print=yes'
+ def get_cover_url(self):
+ cover_url = None
+ index = 'http://www.timesonline.co.uk/tol/newspapers/'
+ soup = self.index_to_soup(index)
+ link_item = soup.find(name = 'div',attrs ={'class': "float-left margin-right-15"})
+ if link_item:
+ cover_url = 'http://www.timesonline.co.uk' + link_item.img['src']
+ print cover_url
+ return cover_url
def get_article_url(self, article):
return article.get('guid', None)
+
def preprocess_html(self, soup):
soup.html['xml:lang'] = self.lang
soup.html['lang'] = self.lang
mlang = Tag(soup,'meta',[("http-equiv","Content-Language"),("content",self.lang)])
- mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=UTF-8")])
+ mcharset = Tag(soup,'meta',[("http-equiv","Content-Type"),("content","text/html; charset=ISO-8859-1")])
soup.head.insert(0,mlang)
soup.head.insert(1,mcharset)
return self.adeify_images(soup)
+ def postprocess_html(self,soup,first):
+ for tag in soup.findAll(text = ['Previous Page','Next Page']):
+ tag.extract()
+ return soup
+
+
diff --git a/src/calibre/constants.py b/src/calibre/constants.py
index 7b964189b2..489fbc2982 100644
--- a/src/calibre/constants.py
+++ b/src/calibre/constants.py
@@ -2,7 +2,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = 'calibre'
-__version__ = '0.6.25'
+__version__ = '0.6.26'
__author__ = "Kovid Goyal "
import re
diff --git a/src/calibre/customize/builtins.py b/src/calibre/customize/builtins.py
index 948d4c9b7d..a8ad352b9b 100644
--- a/src/calibre/customize/builtins.py
+++ b/src/calibre/customize/builtins.py
@@ -54,11 +54,11 @@ class PML2PMLZ(FileTypePlugin):
name = 'PML to PMLZ'
author = 'John Schember'
description = textwrap.dedent(_('''\
-Create a PMLZ archive containging the PML file \
-and all images in the directory pmlname_img or images \
-file containing all linked files. This plugin is run \
-every time you add an PML file to the library.\
-'''))
+ Create a PMLZ archive containing the PML file \
+ and all images in the directory pmlname_img or images \
+ file containing all linked files. This plugin is run \
+ every time you add an PML file to the library.\
+ '''))
version = numeric_version
file_types = set(['pml'])
supported_platforms = ['windows', 'osx', 'linux']
@@ -66,18 +66,20 @@ every time you add an PML file to the library.\
def run(self, pmlfile):
import zipfile
- from calibre.ptempfile import PersistentTemporaryFile
+ from calibre.ptempfile import TemporaryDirectory
- name = os.path.join(tdir, '_plugin_pml2pmlz.pmlz')
- pmlz = zipfile.ZipFile(name, 'w')
- pmlz.write(pmlfile)
+ with TemporaryDirectory('_plugin_pml2pmlz') as tdir:
+ name = os.path.join(tdir, '_plugin_pml2pmlz.pmlz')
+ pmlz = zipfile.ZipFile(name, 'w')
+ pmlz.write(pmlfile)
- pml_img = os.path.basename(pmlfile)[0] + '_img'
- img_dir = pml_img if os.path.exists(pml_img) else 'images' if os.path.exists(images) else ''
- if img_dir:
- for image in glob.glob(os.path.join(img_dir, '*.png')):
- pmlz.write(image)
- pmlz.close()
+ pml_img = os.path.basename(pmlfile)[0] + '_img'
+ img_dir = pml_img if os.path.exists(pml_img) else 'images' if \
+ os.path.exists('images') else ''
+ if img_dir:
+ for image in glob.glob(os.path.join(img_dir, '*.png')):
+ pmlz.write(image)
+ pmlz.close()
return name
diff --git a/src/calibre/ebooks/oeb/base.py b/src/calibre/ebooks/oeb/base.py
index 20c8a3429f..b37f51c6b5 100644
--- a/src/calibre/ebooks/oeb/base.py
+++ b/src/calibre/ebooks/oeb/base.py
@@ -780,6 +780,8 @@ class Manifest(object):
# In particular, it causes tostring to insert xmlns
# declarations, which messes up the coercing logic
idx = data.find(' -1:
pre = data[:idx]
data = data[idx:]
diff --git a/src/calibre/ebooks/oeb/transforms/flatcss.py b/src/calibre/ebooks/oeb/transforms/flatcss.py
index fb32a1ccf9..4d21c33c83 100644
--- a/src/calibre/ebooks/oeb/transforms/flatcss.py
+++ b/src/calibre/ebooks/oeb/transforms/flatcss.py
@@ -229,6 +229,8 @@ class CSSFlattener(object):
if 'bgcolor' in node.attrib:
cssdict['background-color'] = node.attrib['bgcolor']
del node.attrib['bgcolor']
+ if cssdict.get('font-weight', '').lower() == 'medium':
+ cssdict['font-weight'] = 'normal' # ADE chokes on font-weight medium
if not self.context.disable_font_rescaling:
_sbase = self.sbase if self.sbase is not None else \
self.context.source.fbase
diff --git a/src/calibre/gui2/convert/gui_conversion.py b/src/calibre/gui2/convert/gui_conversion.py
index c740fb5c1c..54b3e17de4 100644
--- a/src/calibre/gui2/convert/gui_conversion.py
+++ b/src/calibre/gui2/convert/gui_conversion.py
@@ -9,10 +9,12 @@ from calibre.utils.logging import Log
from calibre.customize.conversion import OptionRecommendation, DummyReporter
def gui_convert(input, output, recommendations, notification=DummyReporter(),
- abort_after_input_dump=False):
+ abort_after_input_dump=False, log=None):
recommendations = list(recommendations)
recommendations.append(('verbose', 2, OptionRecommendation.HIGH))
- plumber = Plumber(input, output, Log(), report_progress=notification,
+ if log is None:
+ log = Log()
+ plumber = Plumber(input, output, log, report_progress=notification,
abort_after_input_dump=abort_after_input_dump)
plumber.merge_ui_recommendations(recommendations)
diff --git a/src/calibre/manual/faq.rst b/src/calibre/manual/faq.rst
index 13091df61c..5f342afc49 100644
--- a/src/calibre/manual/faq.rst
+++ b/src/calibre/manual/faq.rst
@@ -196,7 +196,15 @@ When you first run |app|, it will ask you for a folder in which to store your bo
Why doesn't |app| let me store books in my own directory structure?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-The whole point of |app|'s library management features is that they provide a search and sort based interface for locating books that is *much* more efficient than any possible directory scheme you could come up with for your collection. Indeed, once you become comfortable using |app|'s interface to find, sort and browse your collection, you wont ever feel the need to hunt through the files on your disk to find a book again. By managing books in its own directory struture of Author -> Title -> Book files, |app| is able to achieve a high level of reliability and standardization.
+The whole point of |app|'s library management features is that they provide a search and sort based interface for locating books that is *much* more efficient than any possible directory scheme you could come up with for your collection. Indeed, once you become comfortable using |app|'s interface to find, sort and browse your collection, you wont ever feel the need to hunt through the files on your disk to find a book again. By managing books in its own directory struture of Author -> Title -> Book files, |app| is able to achieve a high level of reliability and standardization. To illustrate why a search/tagging based interface is superior to folders, consider the following. Suppose your book collection is nicely sorted into folders with the following scheme::
+
+ Genre -> Author -> Series -> ReadStatus
+
+Now this makes it very easy to find for example all science fiction books by Isaac Asimov in the Foundation series. But suppose you want to find all unread science fiction books. There's no easy way to do this with this folder scheme, you would instead need a folder scheme that looks like::
+
+ ReadStatus -> Genre -> Author -> Series
+
+In |app|, you would instead use tags to mark genre and read status and then just use a simple search query like ``tag:scifi and not tag:read``. |app| even has a nice graphical interface, so you don't need to learn its search language instead you can just click on tags to include or exclude them from the search.
Why doesn't |app| have a column for foo?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -234,7 +242,7 @@ If you are reasonably proficient with computers, you can teach |app| to download
Otherwise, you can register a request for a particular news site by adding a comment `here `_.
Can I use web2disk to download an arbitrary website?
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``web2disk http://mywebsite.com``
Miscellaneous
diff --git a/src/calibre/translations/ar.po b/src/calibre/translations/ar.po
index 351e3d1795..2be8cdf906 100644
--- a/src/calibre/translations/ar.po
+++ b/src/calibre/translations/ar.po
@@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2009-11-30 20:45+0000\n"
-"PO-Revision-Date: 2009-11-30 22:00+0000\n"
+"POT-Creation-Date: 2009-12-02 22:46+0000\n"
+"PO-Revision-Date: 2009-12-03 00:18+0000\n"
"Last-Translator: Kovid Goyal \n"
"Language-Team: Arabic \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2009-12-01 04:38+0000\n"
+"X-Launchpad-Export-Date: 2009-12-03 04:38+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@@ -26,12 +26,12 @@ msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:53
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:58
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:199
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:730
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:733
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:745
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:748
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:187
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:410
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:64
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:67
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:69
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:322
#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1895
@@ -68,9 +68,9 @@ msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:778
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:49
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:51
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:889
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:894
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:954
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:893
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:898
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:958
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:139
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:105
@@ -108,8 +108,8 @@ msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:543
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:552
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:771
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:774
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:770
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:773
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:109
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:143
@@ -124,15 +124,15 @@ msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/library/database.py:913
#: /home/kovid/work/calibre/src/calibre/library/database2.py:702
#: /home/kovid/work/calibre/src/calibre/library/database2.py:714
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1114
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1151
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1485
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1487
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1598
-#: /home/kovid/work/calibre/src/calibre/library/server.py:649
-#: /home/kovid/work/calibre/src/calibre/library/server.py:721
-#: /home/kovid/work/calibre/src/calibre/library/server.py:768
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:105
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1115
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1152
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1486
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1488
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1599
+#: /home/kovid/work/calibre/src/calibre/library/server.py:645
+#: /home/kovid/work/calibre/src/calibre/library/server.py:717
+#: /home/kovid/work/calibre/src/calibre/library/server.py:764
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:45
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:63
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:77
@@ -383,6 +383,12 @@ msgstr "تعطيل الملحق المسمى"
msgid "Communicate with Android phones."
msgstr ""
+#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:25
+msgid ""
+"Comma separated list of directories to send e-books to on the device. The "
+"first one that exists will be used"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:19
msgid "Communicate with the BeBook eBook reader."
msgstr ""
@@ -444,7 +450,7 @@ msgstr ""
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/interface.py:21
+#: /home/kovid/work/calibre/src/calibre/devices/interface.py:22
msgid "Device Interface"
msgstr "واجهة الجهاز"
@@ -523,53 +529,53 @@ msgstr "يجري إرسال الميتاداتا إلى الجهاز..."
msgid "Communicate with the Sony PRS-600/700 eBook reader."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:285
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:357
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:293
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:365
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "لم يتمكن من كشف القرص %s. حاول إعادة التشغيل."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:425
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:433
msgid "Unable to detect the %s disk drive."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:518
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Could not find mount helper: %s."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:530
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
msgid ""
"Unable to detect the %s disk drive. Your kernel is probably exporting a "
"deprecated version of SYSFS."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:546
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:678
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:680
msgid "The reader has no storage card in this slot."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:674
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
msgid "Selected slot: %s is not supported."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:698
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
msgid "There is insufficient free space in main memory"
msgstr "لا توجد مساحة كافية في الذاكرة الرئيسية"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:700
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:715
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:717
msgid "There is insufficient free space on the storage card"
msgstr "لا توجد مساحة كافية في بطاقة التخزين"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:728
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:125
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1058
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1062
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1385
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1059
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1063
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1386
msgid "News"
msgstr "الأخبار"
@@ -577,23 +583,28 @@ msgstr "الأخبار"
msgid "Configure Device"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:16
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
msgid "settings for device drivers"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:17
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:20
msgid "Ordered list of formats the device will accept"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:22
msgid "Place files in sub directories if the device supports them"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:19
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:64
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:24
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:71
msgid "Read metadata from files on device"
msgstr ""
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:27
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:73
+msgid "Extra customization"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
@@ -1726,7 +1737,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1083
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1317
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
msgid "Cover"
msgstr "الغلاف"
@@ -1757,70 +1768,70 @@ msgstr ""
msgid "All articles"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1318
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
msgid "Title Page"
msgstr "صقحة العنوان"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1319
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr "المحتويات"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1320
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
msgid "Index"
msgstr "الفهرس"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
msgid "Glossary"
msgstr "المسرد"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
msgid "Acknowledgements"
msgstr "شكر وتقدير"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
msgid "Bibliography"
msgstr "ببليوغرافيا"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
msgid "Colophon"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
msgid "Copyright"
msgstr "حقوق المؤلف"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
msgid "Dedication"
msgstr "الإهداء"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
msgid "Epigraph"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
msgid "Foreword"
msgstr "افتتاحية"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
msgid "List of Illustrations"
msgstr "قائمة الرسوم"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1334
msgid "List of Tables"
msgstr "قائمة الجداول"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1335
msgid "Notes"
msgstr "الملاحظات"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1336
msgid "Preface"
msgstr "افتتاحية"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1337
msgid "Main Text"
msgstr "النصّ الرئيسي"
@@ -2418,7 +2429,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input_ui.py:28
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output_ui.py:28
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:110
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:115
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:165
#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:44
@@ -2434,7 +2445,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:67
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:59
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:67
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:35
#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:96
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:107
@@ -2531,11 +2542,11 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:52
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:53
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:116
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:170
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:44
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:61
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:62
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:69
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:70
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:496
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:509
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:510
@@ -2635,10 +2646,9 @@ msgid ""
"By default, if the output base font size is zero and/or no font size key "
"is specified, calibre will use the values from the current Output Profile. "
"
\n"
-"See the User Manual for a discussion of how font size rescaling "
-"works.
"
+"See the User Manual "
+"for a discussion of how font size rescaling works.
"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:103
@@ -2651,15 +2661,15 @@ msgid "&Base font size:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:105
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:114
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
msgid "Font size &key:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:106
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:110
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:112
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:113
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:120
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:125
@@ -2698,55 +2708,62 @@ msgstr ""
msgid "Control the look and feel of the output"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:111
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
msgid "&Disable font size rescaling"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:112
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
msgid "Base &font size:"
msgstr "حجم الخط& الأساسي:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:115
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
msgid "Wizard to help you choose an appropriate font size key"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:117
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
msgid "Line &height:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
msgid "Input character &encoding:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:128
msgid "Remove &spacing between paragraphs"
msgstr "حذف الفراغات& بين الفقرات"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:129
msgid "Indent size:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:130
+msgid ""
+"When calibre removes inter paragraph spacing, it automatically sets a "
+"paragraph indent, to ensure that paragraphs can be easily distinguished. "
+"This option controls the width of that indent."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:131
msgid " em"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:132
msgid "Insert &blank line"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:133
msgid "No text &justification"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:134
msgid "&Linearize tables"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:135
msgid "&Transliterate unicode characters to ASCII."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:136
msgid "Extra &CSS"
msgstr ""
@@ -3042,7 +3059,7 @@ msgid "RB Output"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:77
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1411
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1416
msgid "Choose the format to view"
msgstr ""
@@ -3331,8 +3348,7 @@ msgid ""
"chapter.
Leaving attribute blank will match any attribute and "
"leaving value blank will match any value. Setting tag to * will match any "
"tag.
To learn more advanced usage of XPath see the XPath "
-"Tutorial."
+"href=\"http://calibre-ebook.com/user_manual/xpath.html\">XPath Tutorial."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:39
@@ -3463,9 +3479,9 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:598
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:605
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:697
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:811
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:818
msgid "No suitable formats"
msgstr ""
@@ -3478,63 +3494,63 @@ msgid ""
"Could not email the following books as no suitable formats were found:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:624
msgid "Failed to email books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:626
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
msgid "Failed to email the following books:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:630
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:629
msgid "Sent by email:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:656
msgid "News:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:658
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
msgid "Attached is the"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:669
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:668
msgid "Sent news to"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:699
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:813
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
msgid "Auto convert the following books before uploading to the device?"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:730
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:729
msgid "Sending news to device."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:782
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:781
msgid "Sending books to device."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:820
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
msgid ""
"Could not upload the following books to the device, as no suitable formats "
"were found. Convert the book(s) to a format supported by your device first."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:867
msgid "No space on device"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:869
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
msgid ""
"
Cannot upload books to device there is no more free space available "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:60
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:68
msgid "Select available formats and their order for this device"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:63
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:72
msgid "Use sub directories"
msgstr ""
@@ -3660,8 +3676,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:468
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:811
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:152
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1085
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:158
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1090
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:53
msgid "Error"
msgstr "خطأ"
@@ -3732,7 +3748,7 @@ msgid "Access log:"
msgstr "سجل النفاذ:"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:667
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:607
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:613
msgid "Failed to start content server"
msgstr "فشل في تشغيل خادم المحتوى"
@@ -4337,7 +4353,7 @@ msgid "Choose formats for "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:136
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:915
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:921
msgid "Books"
msgstr "كتب"
@@ -4709,8 +4725,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:95
msgid ""
-"See the User Manual for more help"
+"See the User Manual for more help"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor.py:62
@@ -5079,24 +5095,24 @@ msgstr ""
msgid "There are %d waiting jobs:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:210
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:213
msgid "Cannot kill job"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:212
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
msgid "Cannot kill jobs that communicate with the device"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:215
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
msgid "Job has already run"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:243
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:242
msgid "Unavailable"
msgstr "غير متوفر"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:254
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:253
msgid " - Jobs"
msgstr ""
@@ -5215,485 +5231,52 @@ msgstr "فتح الكتب الإلكترونية"
msgid "Configure"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:57
-msgid "Save single format to disk..."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:136
-msgid "Search (For Advanced Search click the button to the left)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:153
-msgid "Error communicating with device"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:170
-msgid "&Restore"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:172
-msgid "&Donate to support calibre"
-msgstr "تبرع& لدعم كاليبر"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:177
-msgid "&Restart"
-msgstr "إعادة تشغيل&"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:216
-msgid "
For help see the: User Manual
"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:218
-msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:241
-msgid "Edit metadata individually"
-msgstr "تحرير الميتاداتا فردياً"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:243
-msgid "Edit metadata in bulk"
-msgstr "تحرير الميتاداتا جملةً"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:245
-msgid "Download metadata and covers"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:246
-msgid "Download only metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:247
-msgid "Download only covers"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:248
-msgid "Download only social metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:251
-msgid "Add books from a single directory"
-msgstr "إضافة كتب من دليل واحد"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:252
-msgid ""
-"Add books from directories, including sub-directories (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:255
-msgid ""
-"Add books from directories, including sub directories (Multiple books per "
-"directory, assumes every ebook file is a different book)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:258
-msgid "Add Empty book. (Book entry with no formats)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:298
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
-msgid "Save to disk"
-msgstr "حفظ إلى القرص"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:299
-msgid "Save to disk in a single directory"
-msgstr "حفظ إلى القرص في دليل واحد"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:300
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1513
-msgid "Save only %s format to disk"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:308
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
-msgid "View"
-msgstr "عرض"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:309
-msgid "View specific format"
-msgstr "عرض تهيئة معينة"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:335
-msgid "Convert individually"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:336
-msgid "Bulk convert"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:351
-msgid "Run welcome wizard"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:385
-msgid "Similar books..."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:445
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:446
-msgid "Bad database location"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:448
-#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
-msgid "Calibre Library"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:458
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1656
-msgid "Choose a location for your ebook library."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:650
-msgid "Browse by covers"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767
-msgid "Device: "
-msgstr "الجهاز: "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:769
-msgid " detected."
-msgstr " تم كشفه."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:792
-msgid "Connected "
-msgstr "متصل "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:804
-msgid "Device database corrupted"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:805
-msgid ""
-"\n"
-" The database of books on the reader is corrupted. Try the "
-"following:\n"
-"
\n"
-" - 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.
\n"
-" - 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.
\n"
-"
\n"
-" "
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:907
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:950
-msgid "Uploading books to device."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:916
-msgid "EPUB Books"
-msgstr "كتب EPUB"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:917
-msgid "LRF Books"
-msgstr "كتب LRF"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:918
-msgid "HTML Books"
-msgstr "كتب HTML"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:919
-msgid "LIT Books"
-msgstr "كتب LIT"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:920
-msgid "MOBI Books"
-msgstr "كتب MOBI"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:921
-msgid "Text books"
-msgstr "كتب نصّية"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922
-msgid "PDF Books"
-msgstr "كتب PDF"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923
-msgid "Comics"
-msgstr "الرسومات"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:924
-msgid "Archives"
-msgstr "أرشيفات"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:959
-msgid "Failed to read metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:960
-msgid "Failed to read metadata from the following"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:979
-msgid ""
-"The selected books will be permanently deleted and the files removed "
-"from your computer. Are you sure?"
-msgstr "الكتب المختارة سوف تحذف تماماً من حاسوبك. هل أنت متأكّد؟"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1006
-msgid "Deleting books from device."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1038
-msgid "Cannot download metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1039
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1096
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1129
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1154
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1266
-msgid "No books selected"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1054
-msgid "social metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "covers"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1058
-msgid "Downloading %s for %d book(s)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1080
-msgid "Failed to download some metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1081
-msgid "Failed to download metadata for the following:"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1084
-msgid "Failed to download metadata:"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1095
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1128
-msgid "Cannot edit metadata"
-msgstr "لا يمكن تحرير الميتاداتا"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1153
-msgid "Cannot save to disk"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1156
-msgid "Choose destination directory"
-msgstr "إختيار دليل الوجهة"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1183
-msgid "Error while saving"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1184
-msgid "There was an error while saving."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1191
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1192
-msgid "Could not save some books"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1193
-msgid "Click the show details button to see which ones."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1212
-msgid "Fetching news from "
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1225
-msgid " fetched."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1265
-msgid "Cannot convert"
-msgstr "لا يمكن تحويله"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1294
-msgid "Starting conversion of %d book(s)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1424
-msgid "No book selected"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1455
-msgid "Cannot view"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1423
-msgid "Cannot open folder"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1440
-msgid "Multiple Books Selected"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1441
-msgid ""
-"You are attempting to open %d books. Opening too many books at once can be "
-"slow and have a negative effect on the responsiveness of your computer. Once "
-"started the process cannot be stopped until complete. Do you wish to "
-"continue?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1456
-msgid "%s has no available formats."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1497
-msgid "Cannot configure"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1498
-msgid "Cannot configure while there are running jobs."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1541
-msgid "No detailed info available"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1542
-msgid "No detailed information is available for books on the device."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1594
-msgid "Error talking to device"
-msgstr "خطأ في الاتصال بالجهاز"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1595
-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:1618
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1636
-msgid "Conversion Error"
-msgstr "خطأ في التحويل"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1619
-msgid ""
-"Could not convert: %s
It is a DRMed book. You must "
-"first remove the DRM using third party tools."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1637
-msgid "Failed"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1665
-msgid "Invalid library location"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1666
-msgid "Could not access %s. Using %s as the library."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1714
-msgid ""
-"is the result of the efforts of many volunteers from all over the world. If "
-"you find it useful, please consider donating to support its development."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1739
-msgid "There are active jobs. Are you sure you want to quit?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1742
-msgid ""
-" is communicating with the device!
\n"
-" Quitting may cause corruption on the device.
\n"
-" Are you sure you want to quit?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1746
-msgid "WARNING: Active jobs"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1798
-msgid ""
-"will keep running in the system tray. To close it, choose Quit in the "
-"context menu of the system tray."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1817
-msgid ""
-"Latest version: %s"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1825
-msgid "Update available"
-msgstr "تحديث متوفر"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1826
-msgid ""
-"%s has been updated to version %s. See the new features. Visit the download page?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1844
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:25
msgid "Use the library located at the specified path."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1846
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:27
msgid "Start minimized to system tray."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1848
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:29
msgid "Log debugging information to console"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1850
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:31
msgid "Do not check for updates"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1898
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:79
msgid "If you are sure it is not running"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1900
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:81
msgid "Cannot Start "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1901
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:82
msgid "%s is already running."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1904
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:85
msgid "may be running in the system tray, in the"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1906
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:87
msgid "upper right region of the screen."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1908
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:89
msgid "lower right region of the screen."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1911
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:92
msgid "try rebooting your computer."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1913
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1925
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:94
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106
msgid "try deleting the file"
msgstr ""
@@ -5765,6 +5348,11 @@ msgstr "E"
msgid "Send to device"
msgstr "إرسال لجهاز"
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:304
+msgid "Save to disk"
+msgstr "حفظ إلى القرص"
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:355
msgid "S"
msgstr "S"
@@ -5785,6 +5373,11 @@ msgstr "تحويل الكتاب الإلكتروني"
msgid "C"
msgstr "C"
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:314
+msgid "View"
+msgstr "عرض"
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:361
msgid "V"
msgstr "V"
@@ -5886,44 +5479,467 @@ msgid "Publishers"
msgstr "الناشرون"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:63
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:186
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:182
msgid "Convert book %d of %d (%s)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:90
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:206
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:202
msgid "Could not convert some books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:91
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:207
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:203
msgid ""
"Could not convert %d of %d books, because no suitable source format was "
"found."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:120
msgid "Queueing books for bulk conversion"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:185
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:181
msgid "Queueing "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:241
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:237
msgid "Fetch news from "
msgstr "احصل على الأخبار من "
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:252
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:248
msgid "Convert existing"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:253
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:249
msgid ""
"The following books have already been converted to %s format. Do you wish to "
"reconvert them?"
msgstr ""
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:63
+msgid "Save single format to disk..."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:142
+msgid "Search (For Advanced Search click the button to the left)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:159
+msgid "Error communicating with device"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:176
+msgid "&Restore"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:178
+msgid "&Donate to support calibre"
+msgstr "تبرع& لدعم كاليبر"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:183
+msgid "&Restart"
+msgstr "إعادة تشغيل&"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:222
+msgid "
For help see the: User Manual
"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:224
+msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:247
+msgid "Edit metadata individually"
+msgstr "تحرير الميتاداتا فردياً"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:249
+msgid "Edit metadata in bulk"
+msgstr "تحرير الميتاداتا جملةً"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:251
+msgid "Download metadata and covers"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:252
+msgid "Download only metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:253
+msgid "Download only covers"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:254
+msgid "Download only social metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:257
+msgid "Add books from a single directory"
+msgstr "إضافة كتب من دليل واحد"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:258
+msgid ""
+"Add books from directories, including sub-directories (One book per "
+"directory, assumes every ebook file is the same book in a different format)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:261
+msgid ""
+"Add books from directories, including sub directories (Multiple books per "
+"directory, assumes every ebook file is a different book)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:264
+msgid "Add Empty book. (Book entry with no formats)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:305
+msgid "Save to disk in a single directory"
+msgstr "حفظ إلى القرص في دليل واحد"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:306
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1518
+msgid "Save only %s format to disk"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:315
+msgid "View specific format"
+msgstr "عرض تهيئة معينة"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:341
+msgid "Convert individually"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:342
+msgid "Bulk convert"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:357
+msgid "Run welcome wizard"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:391
+msgid "Similar books..."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:451
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:452
+msgid "Bad database location"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:454
+#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
+msgid "Calibre Library"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:464
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1661
+msgid "Choose a location for your ebook library."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:656
+msgid "Browse by covers"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:773
+msgid "Device: "
+msgstr "الجهاز: "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:775
+msgid " detected."
+msgstr " تم كشفه."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:798
+msgid "Connected "
+msgstr "متصل "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:810
+msgid "Device database corrupted"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:811
+msgid ""
+"\n"
+" The database of books on the reader is corrupted. Try the "
+"following:\n"
+"
\n"
+" - 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.
\n"
+" - 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.
\n"
+"
\n"
+" "
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:913
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:956
+msgid "Uploading books to device."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:922
+msgid "EPUB Books"
+msgstr "كتب EPUB"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:923
+msgid "LRF Books"
+msgstr "كتب LRF"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:924
+msgid "HTML Books"
+msgstr "كتب HTML"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:925
+msgid "LIT Books"
+msgstr "كتب LIT"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:926
+msgid "MOBI Books"
+msgstr "كتب MOBI"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:927
+msgid "Text books"
+msgstr "كتب نصّية"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:928
+msgid "PDF Books"
+msgstr "كتب PDF"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:929
+msgid "Comics"
+msgstr "الرسومات"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:930
+msgid "Archives"
+msgstr "أرشيفات"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:965
+msgid "Failed to read metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:966
+msgid "Failed to read metadata from the following"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:985
+msgid ""
+"The selected books will be permanently deleted and the files removed "
+"from your computer. Are you sure?"
+msgstr "الكتب المختارة سوف تحذف تماماً من حاسوبك. هل أنت متأكّد؟"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1012
+msgid "Deleting books from device."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1043
+msgid "Cannot download metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1044
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1101
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1134
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1159
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1271
+msgid "No books selected"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1059
+msgid "social metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "covers"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1063
+msgid "Downloading %s for %d book(s)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1085
+msgid "Failed to download some metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1086
+msgid "Failed to download metadata for the following:"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1089
+msgid "Failed to download metadata:"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1100
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1133
+msgid "Cannot edit metadata"
+msgstr "لا يمكن تحرير الميتاداتا"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1158
+msgid "Cannot save to disk"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1161
+msgid "Choose destination directory"
+msgstr "إختيار دليل الوجهة"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1188
+msgid "Error while saving"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1189
+msgid "There was an error while saving."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1196
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1197
+msgid "Could not save some books"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1198
+msgid "Click the show details button to see which ones."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1217
+msgid "Fetching news from "
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1230
+msgid " fetched."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1270
+msgid "Cannot convert"
+msgstr "لا يمكن تحويله"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1299
+msgid "Starting conversion of %d book(s)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1429
+msgid "No book selected"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1460
+msgid "Cannot view"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1428
+msgid "Cannot open folder"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1445
+msgid "Multiple Books Selected"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1446
+msgid ""
+"You are attempting to open %d books. Opening too many books at once can be "
+"slow and have a negative effect on the responsiveness of your computer. Once "
+"started the process cannot be stopped until complete. Do you wish to "
+"continue?"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1461
+msgid "%s has no available formats."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1502
+msgid "Cannot configure"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1503
+msgid "Cannot configure while there are running jobs."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1546
+msgid "No detailed info available"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1547
+msgid "No detailed information is available for books on the device."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1599
+msgid "Error talking to device"
+msgstr "خطأ في الاتصال بالجهاز"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1600
+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/ui.py:1623
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1641
+msgid "Conversion Error"
+msgstr "خطأ في التحويل"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1624
+msgid ""
+"Could not convert: %s
It is a DRMed book. You must "
+"first remove the DRM using third party tools."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1642
+msgid "Failed"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1670
+msgid "Invalid library location"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1671
+msgid "Could not access %s. Using %s as the library."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1719
+msgid ""
+"is the result of the efforts of many volunteers from all over the world. If "
+"you find it useful, please consider donating to support its development."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1744
+msgid "There are active jobs. Are you sure you want to quit?"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1747
+msgid ""
+" is communicating with the device!
\n"
+" Quitting may cause corruption on the device.
\n"
+" Are you sure you want to quit?"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1751
+msgid "WARNING: Active jobs"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1803
+msgid ""
+"will keep running in the system tray. To close it, choose Quit in the "
+"context menu of the system tray."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1822
+msgid ""
+"Latest version: %s"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1830
+msgid "Update available"
+msgstr "تحديث متوفر"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1831
+msgid ""
+"%s has been updated to version %s. See the new features. Visit the download page?"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:43
msgid "Edit bookmark"
msgstr ""
@@ -6414,14 +6430,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:49
msgid ""
"
Demo videos
Videos demonstrating the various features of calibre are "
-"available online."
+"available online."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:50
msgid ""
-"User Manual
A User Manual is also available online."
+"User Manual
A User Manual is also available online."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:44
@@ -6852,27 +6867,27 @@ msgid ""
"For help on an individual command: %%prog command --help\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1624
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1625
msgid "Migrating old database to ebook library in %s
"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1653
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1654
msgid "Copying %s"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1670
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1671
msgid "Compacting database"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1763
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1764
msgid "Checking SQL integrity..."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1800
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1801
msgid "Checking for missing files."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1824
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1823
msgid "Checked id"
msgstr ""
@@ -6990,7 +7005,7 @@ msgstr ""
msgid "Password to access your calibre library. Username is "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/server.py:860
+#: /home/kovid/work/calibre/src/calibre/library/server.py:856
msgid ""
"[options]\n"
"\n"
@@ -7067,47 +7082,47 @@ msgstr "انتهى"
msgid "Working..."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:93
msgid "Brazilian Portuguese"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
msgid "English (UK)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
msgid "Simplified Chinese"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
msgid "Chinese (HK)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
msgid "Traditional Chinese"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
msgid "English"
msgstr "الإنغليزي"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
msgid "English (AU)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
msgid "English (CA)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
msgid "English (IND)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
msgid "Dutch (NL)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
msgid "Dutch (BE)"
msgstr ""
@@ -7250,55 +7265,55 @@ msgstr "تم جدولته"
msgid "Custom"
msgstr "مخصّص"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:458
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:457
msgid ""
"%prog URL\n"
"\n"
"Where URL is for example http://google.com"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:461
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:460
msgid "Base directory into which URL is saved. Default is %default"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:464
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:463
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:467
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:466
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:470
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:469
msgid ""
"The maximum number of files to download. This only applies to files from tags. Default is %default"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:472
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
msgid ""
"Minimum interval in seconds between consecutive fetches. Default is %default "
"s"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:474
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
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:476
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
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:478
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
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 "
@@ -7307,11 +7322,11 @@ msgid ""
"applied first."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:479
msgid "Do not download CSS stylesheets."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:481
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
msgid "Show detailed output information. Useful for debugging"
msgstr ""
diff --git a/src/calibre/translations/calibre.pot b/src/calibre/translations/calibre.pot
index e37832dfcc..dbe83e5082 100644
--- a/src/calibre/translations/calibre.pot
+++ b/src/calibre/translations/calibre.pot
@@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: calibre 0.6.25\n"
-"POT-Creation-Date: 2009-12-02 15:27+MST\n"
-"PO-Revision-Date: 2009-12-02 15:27+MST\n"
+"Project-Id-Version: calibre 0.6.26\n"
+"POT-Creation-Date: 2009-12-04 13:21+MST\n"
+"PO-Revision-Date: 2009-12-04 13:21+MST\n"
"Last-Translator: Automatically generated\n"
"Language-Team: LANGUAGE\n"
"MIME-Version: 1.0\n"
@@ -39,8 +39,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:256
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:259
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/__init__.py:359
-#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/ereader.py:23
-#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/ereader.py:45
+#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/ereader.py:35
+#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/ereader.py:60
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/fb2.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/meta.py:36
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/meta.py:62
@@ -53,8 +53,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:894
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdb.py:39
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:28
-#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pml.py:18
-#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pml.py:40
+#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pml.py:22
+#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pml.py:48
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/topaz.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/txt.py:14
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:44
@@ -66,9 +66,9 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:778
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:49
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:51
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:893
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:898
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:958
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:895
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:900
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:960
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:139
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:105
@@ -118,7 +118,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/library.py:877
#: /home/kovid/work/calibre/src/calibre/gui2/library.py:1003
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:211
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:282
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:281
#: /home/kovid/work/calibre/src/calibre/library/database.py:913
#: /home/kovid/work/calibre/src/calibre/library/database2.py:702
#: /home/kovid/work/calibre/src/calibre/library/database2.py:714
@@ -155,55 +155,63 @@ msgstr ""
msgid "Metadata writer"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:13
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:14
msgid "Follow all local links in an HTML file and create a ZIP file containing all linked files. This plugin is run every time you add an HTML file to the library."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:48
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:49
msgid "Character encoding for the input HTML files. Common choices include: cp1252, latin1, iso-8859-1 and utf-8."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:56
+msgid " Create a PMLZ archive containing the PML file and all images in the directory pmlname_img or images file containing all linked files. This plugin is run every time you add an PML file to the library. "
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:87
+msgid "Character encoding for the input PML files. Should ways be: cp1252."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:94
msgid "Extract cover from comic files"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:77
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:89
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:99
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:109
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:120
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:130
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:140
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:150
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:160
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:170
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:181
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:192
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:204
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:225
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:236
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:246
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:256
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:115
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:127
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:137
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:147
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:158
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:168
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:178
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:188
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:198
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:208
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:219
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:230
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:242
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:263
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:274
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:284
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:294
msgid "Read metadata from %s files"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:215
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:253
msgid "Read metadata from ebooks in RAR archives"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:267
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:305
msgid "Read metadata from ebooks in ZIP archives"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:278
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:288
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:298
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:320
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:331
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:316
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:326
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:336
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:358
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:369
msgid "Set metadata in %s files"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:309
+#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:347
msgid "Set metadata from %s files"
msgstr ""
@@ -982,7 +990,7 @@ msgid "Normally, if the input file has no cover and you don't specify one, a def
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/fb2ml.py:126
-#: /home/kovid/work/calibre/src/calibre/ebooks/pml/pmlml.py:113
+#: /home/kovid/work/calibre/src/calibre/ebooks/pml/pmlml.py:114
#: /home/kovid/work/calibre/src/calibre/ebooks/rb/rbml.py:101
#: /home/kovid/work/calibre/src/calibre/ebooks/txt/txtml.py:77
msgid "Table of Contents:"
@@ -1511,7 +1519,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1083
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
msgid "Cover"
msgstr ""
@@ -1540,70 +1548,70 @@ msgstr ""
msgid "All articles"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
msgid "Title Page"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
msgid "Index"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
msgid "Glossary"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
msgid "Acknowledgements"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
msgid "Bibliography"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
msgid "Colophon"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
msgid "Copyright"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
msgid "Dedication"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
msgid "Epigraph"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1334
msgid "Foreword"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1335
msgid "List of Illustrations"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1334
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1336
msgid "List of Tables"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1335
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1337
msgid "Notes"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1336
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1338
msgid "Preface"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1337
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1339
msgid "Main Text"
msgstr ""
@@ -1663,11 +1671,11 @@ msgstr ""
msgid "Generate an Adobe \"page-map\" file if pagination information is available."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/ereader/reader132.py:119
+#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/ereader/reader132.py:126
msgid "Footnotes"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/ereader/reader132.py:128
+#: /home/kovid/work/calibre/src/calibre/ebooks/pdb/ereader/reader132.py:135
msgid "Sidebar"
msgstr ""
@@ -2753,7 +2761,7 @@ msgid "RB Output"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:77
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1416
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1420
msgid "Choose the format to view"
msgstr ""
@@ -3361,7 +3369,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:468
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:811
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:158
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1090
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1094
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:53
msgid "Error"
msgstr ""
@@ -3997,7 +4005,7 @@ msgid "Choose formats for "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:136
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:921
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:925
msgid "Books"
msgstr ""
@@ -4832,52 +4840,52 @@ msgstr ""
msgid "Configure"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:25
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:24
msgid "Use the library located at the specified path."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:27
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:26
msgid "Start minimized to system tray."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:29
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:28
msgid "Log debugging information to console"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:31
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:30
msgid "Do not check for updates"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:79
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:80
msgid "If you are sure it is not running"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:81
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:82
msgid "Cannot Start "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:82
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:83
msgid "%s is already running."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:85
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:86
msgid "may be running in the system tray, in the"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:87
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:88
msgid "upper right region of the screen."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:89
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:90
msgid "lower right region of the screen."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:92
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:93
msgid "try rebooting your computer."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:94
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:95
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:107
msgid "try deleting the file"
msgstr ""
@@ -5185,7 +5193,7 @@ msgid "Save to disk in a single directory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:306
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1518
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1522
msgid "Save only %s format to disk"
msgstr ""
@@ -5220,7 +5228,7 @@ msgid "Calibre Library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:464
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1661
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1665
msgid "Choose a location for your ebook library."
msgstr ""
@@ -5255,252 +5263,260 @@ msgid ""
" "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:913
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:956
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:872
+msgid "How many empty books?"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:873
+msgid "How many empty boks should be added?"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:917
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:960
msgid "Uploading books to device."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:922
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:926
msgid "EPUB Books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:923
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:927
msgid "LRF Books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:924
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:928
msgid "HTML Books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:925
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:929
msgid "LIT Books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:926
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:930
msgid "MOBI Books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:927
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:931
msgid "Text books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:928
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:932
msgid "PDF Books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:929
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:933
msgid "Comics"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:930
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:934
msgid "Archives"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:965
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:969
msgid "Failed to read metadata"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:966
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:970
msgid "Failed to read metadata from the following"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:985
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:989
msgid "The selected books will be permanently deleted and the files removed from your computer. Are you sure?"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1012
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1016
msgid "Deleting books from device."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1043
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1047
msgid "Cannot download metadata"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1044
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1101
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1134
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1159
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1271
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1048
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1105
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1138
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1163
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1275
msgid "No books selected"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1059
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1063
msgid "social metadata"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1065
msgid "covers"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1065
msgid "metadata"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1063
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1067
msgid "Downloading %s for %d book(s)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1085
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1089
msgid "Failed to download some metadata"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1086
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1090
msgid "Failed to download metadata for the following:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1089
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1093
msgid "Failed to download metadata:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1100
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1133
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1104
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1137
msgid "Cannot edit metadata"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1158
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1162
msgid "Cannot save to disk"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1161
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1165
msgid "Choose destination directory"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1188
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1192
msgid "Error while saving"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1189
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1193
msgid "There was an error while saving."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1196
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1197
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1200
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1201
msgid "Could not save some books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1198
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1202
msgid "Click the show details button to see which ones."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1217
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1221
msgid "Fetching news from "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1230
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1234
msgid " fetched."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1270
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1274
msgid "Cannot convert"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1299
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1303
msgid "Starting conversion of %d book(s)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1429
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1414
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1433
msgid "No book selected"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1460
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1414
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1464
msgid "Cannot view"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1428
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1432
msgid "Cannot open folder"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1445
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1449
msgid "Multiple Books Selected"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1446
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1450
msgid "You are attempting to open %d books. Opening too many books at once can be slow and have a negative effect on the responsiveness of your computer. Once started the process cannot be stopped until complete. Do you wish to continue?"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1461
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1465
msgid "%s has no available formats."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1502
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1506
msgid "Cannot configure"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1503
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1507
msgid "Cannot configure while there are running jobs."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1546
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1550
msgid "No detailed info available"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1547
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1551
msgid "No detailed information is available for books on the device."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1599
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1603
msgid "Error talking to device"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1600
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1604
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/ui.py:1623
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1641
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1627
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1645
msgid "Conversion Error"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1624
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1628
msgid "Could not convert: %s
It is a DRMed book. You must first remove the DRM using third party tools."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1642
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1646
msgid "Failed"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1670
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1674
msgid "Invalid library location"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1671
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1675
msgid "Could not access %s. Using %s as the library."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1719
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1723
msgid "is the result of the efforts of many volunteers from all over the world. If you find it useful, please consider donating to support its development."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1744
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1748
msgid "There are active jobs. Are you sure you want to quit?"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1747
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1751
msgid ""
" is communicating with the device!
\n"
" Quitting may cause corruption on the device.
\n"
" Are you sure you want to quit?"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1751
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1755
msgid "WARNING: Active jobs"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1803
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1807
msgid "will keep running in the system tray. To close it, choose Quit in the context menu of the system tray."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1822
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1826
msgid "Latest version: %s"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1830
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1834
msgid "Update available"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1831
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1835
msgid "%s has been updated to version %s. See the new features. Visit the download page?"
msgstr ""
@@ -6153,68 +6169,68 @@ msgstr ""
msgid "The maximum number of matches to return per OPDS query. This affects Stanza, WordPlayer, etc. integration."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:120
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:121
msgid "Path to the calibre library. Default is to use the path stored in the settings."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:201
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:200
msgid ""
"%prog list [options]\n"
"\n"
"List the books available in the calibre database.\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:209
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:208
msgid ""
"The fields to display when listing books in the database. Should be a comma separated list of fields.\n"
"Available fields: %s\n"
"Default: %%default. The special field \"all\" can be used to select all fields. Only has effect in the text output format."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:211
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:210
msgid ""
"The field by which to sort the results.\n"
"Available fields: %s\n"
"Default: %%default"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:213
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:212
msgid "Sort results in ascending order"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:215
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:214
msgid "Filter the results by the search query. For the format of the search query, please see the search related documentation in the User Manual. Default is to do no filtering."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:217
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:216
msgid "The maximum width of a single line in the output. Defaults to detecting screen size."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:218
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:217
msgid "The string used to separate fields. Default is a space."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:219
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:218
msgid "The prefix for all file paths. Default is the absolute path to the library folder."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:222
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:221
msgid "The format in which to output the data. Available choices: %s. Defaults is text."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:235
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:234
msgid "Invalid fields. Available fields:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:242
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:241
msgid "Invalid sort field. Available fields:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:313
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:312
msgid "The following books were not added as they already exist in the database (see --duplicates option):"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:336
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:335
msgid ""
"%prog add [options] file1 file2 file3 ...\n"
"\n"
@@ -6222,49 +6238,49 @@ msgid ""
"the directory related options below.\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:345
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:344
msgid "Assume that each directory has only a single logical book and that all files in it are different e-book formats of that book"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:347
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:346
msgid "Process directories recursively"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:349
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:348
msgid "Add books to database even if they already exist. Comparison is done based on book titles."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:359
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:358
msgid "You must specify at least one file to add"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:375
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:374
msgid ""
"%prog remove ids\n"
"\n"
"Remove the books identified by ids from the database. ids should be a comma separated list of id numbers (you can get id numbers by using the list command). For example, 23,34,57-85\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:390
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:389
msgid "You must specify at least one book to remove"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:409
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:408
msgid ""
"%prog add_format [options] id ebook_file\n"
"\n"
"Add the ebook in ebook_file to the available formats for the logical book identified by id. You can get id by using the list command. If the format already exists, it is replaced.\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:424
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:423
msgid "You must specify an id and an ebook file"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:429
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:428
msgid "ebook file must have an extension"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:437
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:436
msgid ""
"\n"
"%prog remove_format [options] id fmt\n"
@@ -6272,11 +6288,11 @@ msgid ""
"Remove the format fmt from the logical book identified by id. You can get id by using the list command. fmt should be a file extension like LRF or TXT or EPUB. If the logical book does not have fmt available, do nothing.\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:454
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:453
msgid "You must specify an id and a format"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:472
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:471
msgid ""
"\n"
"%prog show_metadata [options] id\n"
@@ -6285,15 +6301,15 @@ msgid ""
"id is an id number from the list command.\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:480
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:479
msgid "Print metadata in OPF form (XML)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:489
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:488
msgid "You must specify an id"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:502
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:501
msgid ""
"\n"
"%prog set_metadata [options] id /path/to/metadata.opf\n"
@@ -6304,11 +6320,11 @@ msgid ""
"show_metadata command.\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:518
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:517
msgid "You must specify an id and a metadata file"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:538
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:537
msgid ""
"%prog export [options] ids\n"
"\n"
@@ -6317,27 +6333,27 @@ msgid ""
"an opf file). You can get id numbers from the list command.\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:546
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:545
msgid "Export all books in database, ignoring the list of ids."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:548
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:547
msgid "Export books to the specified directory. Default is"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:550
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:549
msgid "Export all books into a single directory"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:557
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:556
msgid "Specifying this switch will turn this behavior off."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:580
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:579
msgid "You must specify some ids or the %s option"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/cli.py:592
+#: /home/kovid/work/calibre/src/calibre/library/cli.py:591
msgid ""
"%%prog command [options] [arguments]\n"
"\n"
diff --git a/src/calibre/translations/de.po b/src/calibre/translations/de.po
index 628a6779e8..9e6c846130 100644
--- a/src/calibre/translations/de.po
+++ b/src/calibre/translations/de.po
@@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-30 20:45+0000\n"
-"PO-Revision-Date: 2009-11-30 22:02+0000\n"
-"Last-Translator: Kovid Goyal \n"
+"POT-Creation-Date: 2009-12-02 22:46+0000\n"
+"PO-Revision-Date: 2009-12-02 21:31+0000\n"
+"Last-Translator: S. Dorscht \n"
"Language-Team: American English \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2009-12-01 04:39+0000\n"
+"X-Launchpad-Export-Date: 2009-12-03 04:39+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Generated-By: pygettext.py 1.5\n"
@@ -27,12 +27,12 @@ msgstr "Macht absolut gar nichts"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:53
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:58
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:199
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:730
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:733
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:745
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:748
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:187
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:410
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:64
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:67
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:69
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:322
#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1895
@@ -69,9 +69,9 @@ msgstr "Macht absolut gar nichts"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:778
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:49
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:51
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:889
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:894
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:954
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:893
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:898
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:958
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:139
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:105
@@ -109,8 +109,8 @@ msgstr "Macht absolut gar nichts"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:543
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:552
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:771
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:774
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:770
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:773
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:109
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:143
@@ -125,15 +125,15 @@ msgstr "Macht absolut gar nichts"
#: /home/kovid/work/calibre/src/calibre/library/database.py:913
#: /home/kovid/work/calibre/src/calibre/library/database2.py:702
#: /home/kovid/work/calibre/src/calibre/library/database2.py:714
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1114
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1151
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1485
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1487
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1598
-#: /home/kovid/work/calibre/src/calibre/library/server.py:649
-#: /home/kovid/work/calibre/src/calibre/library/server.py:721
-#: /home/kovid/work/calibre/src/calibre/library/server.py:768
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:105
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1115
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1152
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1486
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1488
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1599
+#: /home/kovid/work/calibre/src/calibre/library/server.py:645
+#: /home/kovid/work/calibre/src/calibre/library/server.py:717
+#: /home/kovid/work/calibre/src/calibre/library/server.py:764
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:45
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:63
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:77
@@ -411,6 +411,12 @@ msgstr "Gewähltes Plugin ausschalten"
msgid "Communicate with Android phones."
msgstr "Kommunikation mit Android-Telefonen."
+#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:25
+msgid ""
+"Comma separated list of directories to send e-books to on the device. The "
+"first one that exists will be used"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:19
msgid "Communicate with the BeBook eBook reader."
msgstr "Kommunikation mit dem BeBook eBook Reader."
@@ -472,7 +478,7 @@ msgstr "Kommunikation mit dem ESlick eBook Reader."
msgid "Communicate with the IRex Iliad eBook reader."
msgstr "Kommunikation mit dem IRex Iliad eBook Reader."
-#: /home/kovid/work/calibre/src/calibre/devices/interface.py:21
+#: /home/kovid/work/calibre/src/calibre/devices/interface.py:22
msgid "Device Interface"
msgstr "Geräte-Schnittstellen"
@@ -528,7 +534,7 @@ msgstr "Die Liste der Bücher auf dem Gerät beziehen ..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
msgid "Communicate with the Sony PRS-300/505/500 eBook reader."
-msgstr ""
+msgstr "Kommunikation mit dem Sony PRS-300/505/500 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:18
@@ -551,21 +557,21 @@ msgstr "Metadaten ans Gerät senden ..."
msgid "Communicate with the Sony PRS-600/700 eBook reader."
msgstr "Kommunikation mit dem Sony PRS-600/700 eBook Reader."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:285
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:357
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:293
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:365
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
"Das Laufwerk %s konnte nicht gefunden werden. Versuchen Sie einen Neustart."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:425
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:433
msgid "Unable to detect the %s disk drive."
msgstr "Das %s-Laufwerk konnte nicht erkannt werden."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:518
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Could not find mount helper: %s."
msgstr "Mount Helper konnte nicht gefunden werden: %s."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:530
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
msgid ""
"Unable to detect the %s disk drive. Your kernel is probably exporting a "
"deprecated version of SYSFS."
@@ -573,34 +579,34 @@ msgstr ""
"%s Festplatte konnte nicht erkannt werden. Ihr Kernel exportiert "
"möglicherweise eine abgelehnte Version von SYSFS."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:546
msgid "Unable to mount main memory (Error code: %d)"
msgstr "Hauptspeicher konnte nicht eingehängt werden (Fehler-Code: %d)"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:678
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:680
msgid "The reader has no storage card in this slot."
msgstr "Das Gerät hat keine Speicherkarte in diesem Laufwerk."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:674
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
msgid "Selected slot: %s is not supported."
msgstr "Gewählter Slot: %s wird nicht unterstützt."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:698
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
msgid "There is insufficient free space in main memory"
msgstr "Nicht genügend freier Spreicherplatz im Hauptspeicher"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:700
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:715
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:717
msgid "There is insufficient free space on the storage card"
msgstr "Nicht genügend freier Speicherplatz auf der Speicherkarte"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:728
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:125
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1058
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1062
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1385
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1059
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1063
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1386
msgid "News"
msgstr "Nachrichten"
@@ -608,24 +614,29 @@ msgstr "Nachrichten"
msgid "Configure Device"
msgstr "Gerät konfigurieren"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:16
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
msgid "settings for device drivers"
msgstr "Einstellungen der Geräte-Treiber"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:17
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:20
msgid "Ordered list of formats the device will accept"
msgstr "Geordnete Liste der Formate, die das Gerät akzeptiert"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:22
msgid "Place files in sub directories if the device supports them"
msgstr ""
"Dateien in Unterverzeichnissen speichern soweit das Gerät dies unterstützt"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:19
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:64
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:24
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:71
msgid "Read metadata from files on device"
msgstr "Metadaten aus Dateien auf dem Gerät lesen"
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:27
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:73
+msgid "Extra customization"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Kommunikation mit einem eBook Reader."
@@ -2011,7 +2022,7 @@ msgstr ""
"abrufen\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1083
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1317
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
msgid "Cover"
msgstr "Umschlagbild"
@@ -2044,70 +2055,70 @@ msgstr "Komprimierung der Datei Inhalte ausschalten."
msgid "All articles"
msgstr "Alle Artikel"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1318
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
msgid "Title Page"
msgstr "Titelseite"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1319
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr "Inhaltsverzeichnis"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1320
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
msgid "Index"
msgstr "Index"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
msgid "Glossary"
msgstr "Glossar"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
msgid "Acknowledgements"
msgstr "Danksagung"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
msgid "Bibliography"
msgstr "Literaturverzeichnis"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
msgid "Colophon"
msgstr "Schlussschrift"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
msgid "Copyright"
msgstr "Copyright"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
msgid "Dedication"
msgstr "Widmung"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
msgid "Epigraph"
msgstr "Epigraph"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
msgid "Foreword"
msgstr "Vorwort"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
msgid "List of Illustrations"
msgstr "Abbildungsverzeichnis"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1334
msgid "List of Tables"
msgstr "Tabellenverzeichnis"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1335
msgid "Notes"
msgstr "Anmerkungen"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1336
msgid "Preface"
msgstr "Vorwort"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1337
msgid "Main Text"
msgstr "Haupttext"
@@ -2829,7 +2840,7 @@ msgstr "Eingabe"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input_ui.py:28
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output_ui.py:28
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:110
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:115
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:165
#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:44
@@ -2845,7 +2856,7 @@ msgstr "Eingabe"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:67
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:59
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:67
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:35
#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:96
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:107
@@ -2947,11 +2958,11 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:52
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:53
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:116
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:170
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:44
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:61
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:62
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:69
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:70
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:496
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:509
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:510
@@ -3055,25 +3066,10 @@ msgid ""
"By default, if the output base font size is zero and/or no font size key "
"is specified, calibre will use the values from the current Output Profile. "
"
\n"
-"See the User Manual for a discussion of how font size rescaling "
-"works.
"
+"See the User Manual "
+"for a discussion of how font size rescaling works.
"
msgstr ""
-"Dieser Assistent hilft, die richtige Schriftgröße für Ihre Bedürfnisse zu "
-"wählen. Geben Sie die Basis-Schriftgröße des Eingabe-Dokuments an und geben "
-"eine Eingabe-Schriftgröße an. Der Assistent zeigt durch den "
-"Schriftskalierungs-Algorithmus an, auf welche Schriftgröße sie abgebildet "
-"wird. Sie können den Algorithmus anpassen, indem Sie die Ausgabe-Basis-"
-"Schriftgröße und den Schriftschlüssel unten verändern. Wenn die Werte für "
-"Sie passend sind, klicken Sie auf OK.
\n"
-"Voreingestellt wird Calibre, falls die Ausgabe-Basis-Schriftgröße gleich "
-"null ist und/oder keine Schriftgrößenschlüssel angegeben wird, die Werte des "
-"aktuellen Ausgabe-Profils verwenden.
\n"
-"Sehen Sie sich das englischsprachige Benutzerhandbuch für eine Diskussion, wie die Schriftgrößen-"
-"Skalierung funktioniert, an.
"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:103
msgid "&Output document"
@@ -3085,15 +3081,15 @@ msgid "&Base font size:"
msgstr "&Basis-Schriftgröße:"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:105
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:114
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
msgid "Font size &key:"
msgstr "Schrift&größenschlüssel:"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:106
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:110
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:112
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:113
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:120
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:125
@@ -3132,57 +3128,64 @@ msgstr "Layout"
msgid "Control the look and feel of the output"
msgstr "Kontrolle des Layouts der Ausgabe"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:111
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
msgid "&Disable font size rescaling"
msgstr "Schriftgrößen&skalierung ausschalten"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:112
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
msgid "Base &font size:"
msgstr "Ausgangsschrift&größe:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:115
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
msgid "Wizard to help you choose an appropriate font size key"
msgstr ""
"Assistent, der Sie bei der Auswahl des richtigen Schriftgrößen-Schlüssels "
"unterstützt"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:117
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
msgid "Line &height:"
msgstr "Zeilen&höhe:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
msgid "Input character &encoding:"
msgstr "Eingabe-Z&eichenkodierung:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:128
msgid "Remove &spacing between paragraphs"
msgstr "&Abstand zwischen Paragrafen entfernen"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:129
msgid "Indent size:"
msgstr "Größe der Einrückung:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:130
+msgid ""
+"When calibre removes inter paragraph spacing, it automatically sets a "
+"paragraph indent, to ensure that paragraphs can be easily distinguished. "
+"This option controls the width of that indent."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:131
msgid " em"
msgstr " em"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:132
msgid "Insert &blank line"
msgstr "&Leerzeile einfügen"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:133
msgid "No text &justification"
msgstr "Kein &Blocksatz"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:134
msgid "&Linearize tables"
msgstr "Tabellen &linearisieren"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:135
msgid "&Transliterate unicode characters to ASCII."
msgstr "Unicode Zeichen in ASCII umse&tzen."
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:136
msgid "Extra &CSS"
msgstr "Extra &CSS"
@@ -3483,7 +3486,7 @@ msgid "RB Output"
msgstr "RB-Ausgabe"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:77
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1411
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1416
msgid "Choose the format to view"
msgstr "Format zur Vorschau wählen"
@@ -3788,16 +3791,8 @@ msgid ""
"chapter.
Leaving attribute blank will match any attribute and "
"leaving value blank will match any value. Setting tag to * will match any "
"tag.
To learn more advanced usage of XPath see the XPath "
-"Tutorial."
+"href=\"http://calibre-ebook.com/user_manual/xpath.html\">XPath Tutorial
."
msgstr ""
-"Um zum Beispiel alle h2 Tags, die class=\"chapter\" verwenden, zu finden, "
-"geben Sie Tag als h2, Attribut als class und Wert als "
-"chapter an.
Ein leeres Attribut findet alle Attribute und ein "
-"leerer Wert findet alle Werte. Ein Tag * findet alle Tags.
Um mehr "
-"über den Gebrauch von XPath zu lernen, besuchen Sie das XPath "
-"Tutorial."
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:39
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:130
@@ -3927,9 +3922,9 @@ msgstr "Sende eMail an"
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:598
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:605
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:697
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:811
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:818
msgid "No suitable formats"
msgstr "Keine geeigneten Formate"
@@ -3944,45 +3939,45 @@ msgid ""
msgstr ""
"Konnte die folgenden Bücher nicht versenden, da geeignete Formate fehlen:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:624
msgid "Failed to email books"
msgstr "Senden der Bücher schlug fehl"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:626
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
msgid "Failed to email the following books:"
msgstr "Senden der folgenden Bücher schlug fehl:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:630
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:629
msgid "Sent by email:"
msgstr "Per eMail versendet:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:656
msgid "News:"
msgstr "Nachrichten:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:658
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
msgid "Attached is the"
msgstr "Im Anhang ist"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:669
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:668
msgid "Sent news to"
msgstr "Nachrichten senden an"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:699
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:813
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
msgid "Auto convert the following books before uploading to the device?"
msgstr ""
"Die folgenden Bücher vor dem Laden auf das Gerät automatisch konvertieren?"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:730
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:729
msgid "Sending news to device."
msgstr "Sende Nachrichten an das Gerät."
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:782
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:781
msgid "Sending books to device."
msgstr "Sende Bücher an das Gerät."
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:820
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
msgid ""
"Could not upload the following books to the device, as no suitable formats "
"were found. Convert the book(s) to a format supported by your device first."
@@ -3991,22 +3986,22 @@ msgstr ""
"fehlen. Konvertieren Sie die Bücher zuerst in ein von Ihrem Gerät "
"unterstütztes Format."
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:867
msgid "No space on device"
msgstr "Gerätespeicher voll"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:869
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
msgid ""
"
Cannot upload books to device there is no more free space available "
msgstr ""
"
Es können keine Bücher mehr auf das Gerät geladen werden, da der "
"Gerätespeicher voll ist "
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:60
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:68
msgid "Select available formats and their order for this device"
msgstr "Verfügbare Formate und deren Reihenfolge für dieses Gerät wählen"
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:63
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:72
msgid "Use sub directories"
msgstr "Unterverzeichnisse verwenden"
@@ -4138,8 +4133,8 @@ msgstr "Neue eMail Adresse"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:468
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:811
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:152
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1085
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:158
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1090
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:53
msgid "Error"
msgstr "Fehler"
@@ -4214,7 +4209,7 @@ msgid "Access log:"
msgstr "Zugriffs-Protokolldatei:"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:667
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:607
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:613
msgid "Failed to start content server"
msgstr "Content Server konnte nicht gestartet werden"
@@ -4881,7 +4876,7 @@ msgid "Choose formats for "
msgstr "Formate wählen für "
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:136
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:915
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:921
msgid "Books"
msgstr "Bücher"
@@ -5267,12 +5262,9 @@ msgstr "Alle diese &unerwünschten Worte:"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:95
msgid ""
-"See the User Manual for more help"
+"See the User Manual for more help"
msgstr ""
-"Verwenden Sie das Benutzer Handbuch für weitere Hilfe"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor.py:62
msgid "Are your sure?"
@@ -5681,24 +5673,24 @@ msgstr "Unbekannter Auftrag"
msgid "There are %d waiting jobs:"
msgstr "Es gibt %d wartende Aufträge:"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:210
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:213
msgid "Cannot kill job"
msgstr "Kann Auftrag nicht abbrechen"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:212
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
msgid "Cannot kill jobs that communicate with the device"
msgstr "Kann Aufträge, die mit dem Gerät kommunizieren, nicht abbrechen"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:215
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
msgid "Job has already run"
msgstr "Auftrag wird schon ausgeführt"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:243
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:242
msgid "Unavailable"
msgstr "Nicht verfügbar"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:254
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:253
msgid " - Jobs"
msgstr " - Aufträge"
@@ -5819,534 +5811,52 @@ msgstr "eBook öffnen"
msgid "Configure"
msgstr "Konfigurieren"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:57
-msgid "Save single format to disk..."
-msgstr "Speichere einzelnes Format auf Festplatte..."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:136
-msgid "Search (For Advanced Search click the button to the left)"
-msgstr "Suche (Zur erweiterten Suche die Schaltfläche links klicken)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:153
-msgid "Error communicating with device"
-msgstr "Fehler bei der Kommunikation mit dem Gerät"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:170
-msgid "&Restore"
-msgstr "&Wiederherstellen"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:172
-msgid "&Donate to support calibre"
-msgstr "Spen&den Sie, um Calibre zu unterstützen"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:177
-msgid "&Restart"
-msgstr "&Neustart"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:216
-msgid "
For help see the: User Manual
"
-msgstr ""
-"
Hilfe finden Sie in der Bedienungsanleitung
"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:218
-msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
-msgstr "%s: %s von Kovid Goyal %%(version)s
%%(device)s
"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:241
-msgid "Edit metadata individually"
-msgstr "Metadaten einzeln bearbeiten"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:243
-msgid "Edit metadata in bulk"
-msgstr "Metadaten auf einmal bearbeiten"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:245
-msgid "Download metadata and covers"
-msgstr "Metadaten und Umschlagbilder laden"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:246
-msgid "Download only metadata"
-msgstr "Nur Metadaten laden"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:247
-msgid "Download only covers"
-msgstr "Nur Umschlagbilder laden"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:248
-msgid "Download only social metadata"
-msgstr "Nur soziale Metadaten laden"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:251
-msgid "Add books from a single directory"
-msgstr "Bücher aus einem einzelnen Verzeichnis hinzufügen"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:252
-msgid ""
-"Add books from directories, including sub-directories (One book per "
-"directory, assumes every ebook file is the same book in a different format)"
-msgstr ""
-"Bücher aus Verzeichnissen hinzufügen, inklusive Unterverzeichnissen (ein "
-"Buch pro Verzeichnis, jede eBook Datei im Verzeichnis ist dasselbe Buch in "
-"verschiedenen Formaten)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:255
-msgid ""
-"Add books from directories, including sub directories (Multiple books per "
-"directory, assumes every ebook file is a different book)"
-msgstr ""
-"Bücher aus Verzeichnissen hinzufügen, inklusive Unterverzeichnissen "
-"(verschiedene Bücher im Verzeichnis, jede eBook Datei ist ein anderes Buch)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:258
-msgid "Add Empty book. (Book entry with no formats)"
-msgstr "Leeres Buch hinzufügen. (Buch Eintrag ohne Formate)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:298
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
-msgid "Save to disk"
-msgstr "Auf Festplatte speichern"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:299
-msgid "Save to disk in a single directory"
-msgstr "Auf Festplatte in ein einziges Verzeichnis speichern"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:300
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1513
-msgid "Save only %s format to disk"
-msgstr "Nur das %s Format auf Festplatte speichern"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:308
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
-msgid "View"
-msgstr "Vorschau"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:309
-msgid "View specific format"
-msgstr "Spezielles Format ansehen"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:335
-msgid "Convert individually"
-msgstr "Einzeln konvertieren"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:336
-msgid "Bulk convert"
-msgstr "Auf einmal konvertieren"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:351
-msgid "Run welcome wizard"
-msgstr "Willkommens-Assistenten ausführen"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:385
-msgid "Similar books..."
-msgstr "Ähnliche Bücher..."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:445
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:446
-msgid "Bad database location"
-msgstr "Schlechter Datenbank Standort"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:448
-#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
-msgid "Calibre Library"
-msgstr "Calibre Bibliothek"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:458
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1656
-msgid "Choose a location for your ebook library."
-msgstr "Wählen Sie einen Speicherort für Ihre eBook Bibliothek."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:650
-msgid "Browse by covers"
-msgstr "Umschlagbilder durchsuchen"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767
-msgid "Device: "
-msgstr "Gerät: "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:769
-msgid " detected."
-msgstr " gefunden."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:792
-msgid "Connected "
-msgstr "Angeschlossen: "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:804
-msgid "Device database corrupted"
-msgstr "Gerätedatenbank ist beschädigt"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:805
-msgid ""
-"\n"
-" The database of books on the reader is corrupted. Try the "
-"following:\n"
-"
\n"
-" - 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.
\n"
-" - 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.
\n"
-"
\n"
-" "
-msgstr ""
-"\n"
-" Die Bücherdatenbank des Gerätes ist beschädigt. Versuchen "
-"Sie folgendes:\n"
-"
\n"
-" - Entfernen Sie das Gerät. Warten Sie, bis das Gerät die "
-"Datenbank wiederhergestellt hat (d.h. warten Sie, bis das Gerät wieder "
-"benutzt werden kann). Stecken Sie das Gerät wieder an. Nun sollte es mit "
-"%(app)s funktionieren. Falls nicht, versuchen Sie den nächsten "
-"Schritt.
\n"
-" - Schließen Sie %(app)s. Suchen Sie die Datei media.xml im "
-"Hauptspeicher des Gerätes. Löschen Sie sie. Entfernen Sie das Gerät. Warten "
-"Sie, bis das Gerät die Datei wiederhergestellt hat. Stecken Sie das Gerät "
-"wieder an und starten Sie %(app)s.
\n"
-"
\n"
-" "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:907
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:950
-msgid "Uploading books to device."
-msgstr "Lade Bücher auf das Gerät."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:916
-msgid "EPUB Books"
-msgstr "EPUB Bücher"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:917
-msgid "LRF Books"
-msgstr "LRF Bücher"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:918
-msgid "HTML Books"
-msgstr "HTML Bücher"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:919
-msgid "LIT Books"
-msgstr "LIT Bücher"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:920
-msgid "MOBI Books"
-msgstr "MOBI Bücher"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:921
-msgid "Text books"
-msgstr "Text Bücher"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922
-msgid "PDF Books"
-msgstr "PDF Bücher"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923
-msgid "Comics"
-msgstr "Comics"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:924
-msgid "Archives"
-msgstr "Archive"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:959
-msgid "Failed to read metadata"
-msgstr "Lesen der Metadaten schlug fehl"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:960
-msgid "Failed to read metadata from the following"
-msgstr "Lesen der Metadaten schlug fehl bei folgenden"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:979
-msgid ""
-"The selected books will be permanently deleted and the files removed "
-"from your computer. Are you sure?"
-msgstr ""
-"Die gewählten Bücher werden dauerhaft gelöscht und die Dateien vom "
-"Computer entfernt. Sicher?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1006
-msgid "Deleting books from device."
-msgstr "Lösche Bücher vom Gerät."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1038
-msgid "Cannot download metadata"
-msgstr "Konnte Metadaten nicht laden"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1039
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1096
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1129
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1154
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1266
-msgid "No books selected"
-msgstr "Keine Bücher ausgewählt"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1054
-msgid "social metadata"
-msgstr "soziale Metadaten"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "covers"
-msgstr "Umschlagbilder"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "metadata"
-msgstr "Metadaten"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1058
-msgid "Downloading %s for %d book(s)"
-msgstr "Lade %s für %d Bücher"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1080
-msgid "Failed to download some metadata"
-msgstr "Das Laden der Metadaten schlug teilweise fehl"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1081
-msgid "Failed to download metadata for the following:"
-msgstr "Das Laden der Metadaten schlug für folgende Bücher fehl:"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1084
-msgid "Failed to download metadata:"
-msgstr "Laden der Metadaten schlug fehl:"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1095
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1128
-msgid "Cannot edit metadata"
-msgstr "Kann Metadaten nicht bearbeiten"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1153
-msgid "Cannot save to disk"
-msgstr "Speichern auf Festplatte nicht möglich"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1156
-msgid "Choose destination directory"
-msgstr "Zielverzeichnis auswählen"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1183
-msgid "Error while saving"
-msgstr "Fehler während des Speicherns"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1184
-msgid "There was an error while saving."
-msgstr "Es gab einen Fehler während des Speicherns."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1191
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1192
-msgid "Could not save some books"
-msgstr "Konnte einige Bücher nicht speichern"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1193
-msgid "Click the show details button to see which ones."
-msgstr ""
-"Klicken Sie auf die Schaltfläche Details zeigen, um zu sehen, welche es gibt."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1212
-msgid "Fetching news from "
-msgstr "Rufe Nachrichten ab von "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1225
-msgid " fetched."
-msgstr " abgerufen."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1265
-msgid "Cannot convert"
-msgstr "Konvertierung nicht möglich"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1294
-msgid "Starting conversion of %d book(s)"
-msgstr "Starte Konvertierung von %d Büchern"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1424
-msgid "No book selected"
-msgstr "Kein Buch ausgewählt"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1455
-msgid "Cannot view"
-msgstr "Ansehen nicht möglich"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1423
-msgid "Cannot open folder"
-msgstr "Konnte Verzeichnis nicht öffnen"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1440
-msgid "Multiple Books Selected"
-msgstr "Mehrere Bücher ausgewählt"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1441
-msgid ""
-"You are attempting to open %d books. Opening too many books at once can be "
-"slow and have a negative effect on the responsiveness of your computer. Once "
-"started the process cannot be stopped until complete. Do you wish to "
-"continue?"
-msgstr ""
-"Sie versuchen %d Bücher zu öffnen. Das gleichzeitige Öffnen zu vieler Bücher "
-"kann lange dauern und einen negative Wirkung auf die Reaktionszeit Ihres "
-"Rechners haben. Einmal gestartet kann der Prozess nicht beendet werden, "
-"bevor er abgeschlossen ist. Möchten Sie fortfahren?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1456
-msgid "%s has no available formats."
-msgstr "%s hat keine verfügbaren Formate."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1497
-msgid "Cannot configure"
-msgstr "Konfiguration nicht möglich"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1498
-msgid "Cannot configure while there are running jobs."
-msgstr "Konfiguration nicht möglich während Aufträge abgearbeitet werden."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1541
-msgid "No detailed info available"
-msgstr "Es sind keine genaueren Informationen verfügbar"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1542
-msgid "No detailed information is available for books on the device."
-msgstr ""
-"Es sind keine weitere Informationen über Bücher auf dem Gerät verfügbar"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1594
-msgid "Error talking to device"
-msgstr "Fehler in der Kommunikation zum Gerät"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1595
-msgid ""
-"There was a temporary error talking to the device. Please unplug and "
-"reconnect the device and or reboot."
-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/calibre/src/calibre/gui2/main.py:1618
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1636
-msgid "Conversion Error"
-msgstr "Konvertierungsfehler"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1619
-msgid ""
-"Could not convert: %s
It is a DRMed book. You must "
-"first remove the DRM using third party tools."
-msgstr ""
-"
Konvertierung nicht erfolgreich: %s
Dies ist ein durch DRM geschütztes Buch. Sie müssen zuerst das DRM mit Hilfe "
-"anderer Programme entfernen."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1637
-msgid "Failed"
-msgstr "Misslungen"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1665
-msgid "Invalid library location"
-msgstr "Ungültiger Ort der Bibliothek"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1666
-msgid "Could not access %s. Using %s as the library."
-msgstr "Konnte nicht auf %s zugreifen. Verwende %s als Bibliothek."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1714
-msgid ""
-"is the result of the efforts of many volunteers from all over the world. If "
-"you find it useful, please consider donating to support its development."
-msgstr ""
-"beruht auf den Anstrengungen von vielen Freiwilligen aus der ganzen Welt. "
-"Falls Sie es nützlich finden, sollten Sie eine Spende zur Unterstützung "
-"seiner Entwicklung in Betracht ziehen."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1739
-msgid "There are active jobs. Are you sure you want to quit?"
-msgstr ""
-"Es bestehen aktive Aufträge. Sind Sie sicher, dass sie es beenden wollen?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1742
-msgid ""
-" is communicating with the device!
\n"
-" Quitting may cause corruption on the device.
\n"
-" Are you sure you want to quit?"
-msgstr ""
-" kommuniziert mit dem Gerät!
\n"
-" Das Beenden kann Beschädigungen auf dem Gerät "
-"verursachen.
\n"
-" Sind Sie sicher, dass sie beenden möchten?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1746
-msgid "WARNING: Active jobs"
-msgstr "WARNUNG: Aktive Aufträge"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1798
-msgid ""
-"will keep running in the system tray. To close it, choose Quit in the "
-"context menu of the system tray."
-msgstr ""
-"wird im System Tray weiter laufen. Zum Schließen wählen Sie Beenden "
-"im Kontextmenü des System Tray."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1817
-msgid ""
-"Latest version: %s"
-msgstr ""
-"Letzte Version: %s"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1825
-msgid "Update available"
-msgstr "Neue Version verfügbar"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1826
-msgid ""
-"%s has been updated to version %s. See the new features. Visit the download page?"
-msgstr ""
-"%s wurde auf Version %s aktualisiert. Sehen Sie sich die neuen Funktionen an. Möchten "
-"Sie die Download-Seite besuchen?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1844
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:25
msgid "Use the library located at the specified path."
msgstr "Die im angegebenen Pfad sich befindende Bibliothek verwenden"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1846
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:27
msgid "Start minimized to system tray."
msgstr "Minimiert im Systembereich der Kontrollleiste starten."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1848
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:29
msgid "Log debugging information to console"
msgstr "Informationen zur Fehlersuche in Konsole aufzeichnen"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1850
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:31
msgid "Do not check for updates"
msgstr "Nicht nach Updates suchen"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1898
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:79
msgid "If you are sure it is not running"
msgstr "Wenn Sie sicher sind, dass es nicht gestartet ist"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1900
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:81
msgid "Cannot Start "
msgstr "Start nicht möglich "
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1901
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:82
msgid "%s is already running."
msgstr "%s ist schon gestartet."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1904
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:85
msgid "may be running in the system tray, in the"
msgstr "kann im Systemtray gestartet sein, im"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1906
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:87
msgid "upper right region of the screen."
msgstr "oberen rechten Bereich des Bildschirms."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1908
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:89
msgid "lower right region of the screen."
msgstr "unteren rechten Bereich des Bildschirms."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1911
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:92
msgid "try rebooting your computer."
msgstr "Versuchen Sie Ihren Rechner neu zu starten."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1913
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1925
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:94
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106
msgid "try deleting the file"
msgstr "Versuche Sie die Datei zu löschen"
@@ -6421,6 +5931,11 @@ msgstr "E"
msgid "Send to device"
msgstr "An Reader übertragen"
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:304
+msgid "Save to disk"
+msgstr "Auf Festplatte speichern"
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:355
msgid "S"
msgstr "S"
@@ -6441,6 +5956,11 @@ msgstr "In eBooks umwandeln"
msgid "C"
msgstr "C"
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:314
+msgid "View"
+msgstr "Vorschau"
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:361
msgid "V"
msgstr "V"
@@ -6547,17 +6067,17 @@ msgid "Publishers"
msgstr "Herausgeber"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:63
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:186
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:182
msgid "Convert book %d of %d (%s)"
msgstr "Konvertiere Buch %d von %d (%s)"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:90
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:206
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:202
msgid "Could not convert some books"
msgstr "Konnte einige Bücher nicht konvertieren"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:91
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:207
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:203
msgid ""
"Could not convert %d of %d books, because no suitable source format was "
"found."
@@ -6565,23 +6085,23 @@ msgstr ""
"Konnte %d von %d Büchern nicht konvertieren, da keine brauchbaren "
"Ursprungsformate zur Verfügung standen."
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:120
msgid "Queueing books for bulk conversion"
msgstr "Bücher sammeln und zusammen konvertieren"
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:185
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:181
msgid "Queueing "
msgstr "Sammle "
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:241
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:237
msgid "Fetch news from "
msgstr "Nachrichten abrufen von "
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:252
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:248
msgid "Convert existing"
msgstr "Konvertiere bestehende"
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:253
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:249
msgid ""
"The following books have already been converted to %s format. Do you wish to "
"reconvert them?"
@@ -6589,6 +6109,478 @@ msgstr ""
"Die folgenden Bücher wurden schon in das %s Format konvertiert. Möchten Sie "
"sie erneut konvertieren?"
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:63
+msgid "Save single format to disk..."
+msgstr "Speichere einzelnes Format auf Festplatte..."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:142
+msgid "Search (For Advanced Search click the button to the left)"
+msgstr "Suche (Zur erweiterten Suche die Schaltfläche links klicken)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:159
+msgid "Error communicating with device"
+msgstr "Fehler bei der Kommunikation mit dem Gerät"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:176
+msgid "&Restore"
+msgstr "&Wiederherstellen"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:178
+msgid "&Donate to support calibre"
+msgstr "Spen&den Sie, um Calibre zu unterstützen"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:183
+msgid "&Restart"
+msgstr "&Neustart"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:222
+msgid "
For help see the: User Manual
"
+msgstr ""
+"
Hilfe finden Sie in der Bedienungsanleitung
"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:224
+msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
+msgstr "%s: %s von Kovid Goyal %%(version)s
%%(device)s"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:247
+msgid "Edit metadata individually"
+msgstr "Metadaten einzeln bearbeiten"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:249
+msgid "Edit metadata in bulk"
+msgstr "Metadaten auf einmal bearbeiten"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:251
+msgid "Download metadata and covers"
+msgstr "Metadaten und Umschlagbilder laden"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:252
+msgid "Download only metadata"
+msgstr "Nur Metadaten laden"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:253
+msgid "Download only covers"
+msgstr "Nur Umschlagbilder laden"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:254
+msgid "Download only social metadata"
+msgstr "Nur soziale Metadaten laden"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:257
+msgid "Add books from a single directory"
+msgstr "Bücher aus einem einzelnen Verzeichnis hinzufügen"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:258
+msgid ""
+"Add books from directories, including sub-directories (One book per "
+"directory, assumes every ebook file is the same book in a different format)"
+msgstr ""
+"Bücher aus Verzeichnissen hinzufügen, inklusive Unterverzeichnissen (ein "
+"Buch pro Verzeichnis, jede eBook Datei im Verzeichnis ist dasselbe Buch in "
+"verschiedenen Formaten)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:261
+msgid ""
+"Add books from directories, including sub directories (Multiple books per "
+"directory, assumes every ebook file is a different book)"
+msgstr ""
+"Bücher aus Verzeichnissen hinzufügen, inklusive Unterverzeichnissen "
+"(verschiedene Bücher im Verzeichnis, jede eBook Datei ist ein anderes Buch)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:264
+msgid "Add Empty book. (Book entry with no formats)"
+msgstr "Leeres Buch hinzufügen. (Buch Eintrag ohne Formate)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:305
+msgid "Save to disk in a single directory"
+msgstr "Auf Festplatte in ein einziges Verzeichnis speichern"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:306
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1518
+msgid "Save only %s format to disk"
+msgstr "Nur das %s Format auf Festplatte speichern"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:315
+msgid "View specific format"
+msgstr "Spezielles Format ansehen"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:341
+msgid "Convert individually"
+msgstr "Einzeln konvertieren"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:342
+msgid "Bulk convert"
+msgstr "Auf einmal konvertieren"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:357
+msgid "Run welcome wizard"
+msgstr "Willkommens-Assistenten ausführen"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:391
+msgid "Similar books..."
+msgstr "Ähnliche Bücher..."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:451
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:452
+msgid "Bad database location"
+msgstr "Schlechter Datenbank Standort"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:454
+#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
+msgid "Calibre Library"
+msgstr "Calibre Bibliothek"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:464
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1661
+msgid "Choose a location for your ebook library."
+msgstr "Wählen Sie einen Speicherort für Ihre eBook Bibliothek."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:656
+msgid "Browse by covers"
+msgstr "Umschlagbilder durchsuchen"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:773
+msgid "Device: "
+msgstr "Gerät: "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:775
+msgid " detected."
+msgstr " gefunden."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:798
+msgid "Connected "
+msgstr "Angeschlossen: "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:810
+msgid "Device database corrupted"
+msgstr "Gerätedatenbank ist beschädigt"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:811
+msgid ""
+"\n"
+" The database of books on the reader is corrupted. Try the "
+"following:\n"
+"
\n"
+" - 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.
\n"
+" - 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.
\n"
+"
\n"
+" "
+msgstr ""
+"\n"
+" Die Bücherdatenbank des Gerätes ist beschädigt. Versuchen "
+"Sie folgendes:\n"
+"
\n"
+" - Entfernen Sie das Gerät. Warten Sie, bis das Gerät die "
+"Datenbank wiederhergestellt hat (d.h. warten Sie, bis das Gerät wieder "
+"benutzt werden kann). Stecken Sie das Gerät wieder an. Nun sollte es mit "
+"%(app)s funktionieren. Falls nicht, versuchen Sie den nächsten "
+"Schritt.
\n"
+" - Schließen Sie %(app)s. Suchen Sie die Datei media.xml im "
+"Hauptspeicher des Gerätes. Löschen Sie sie. Entfernen Sie das Gerät. Warten "
+"Sie, bis das Gerät die Datei wiederhergestellt hat. Stecken Sie das Gerät "
+"wieder an und starten Sie %(app)s.
\n"
+"
\n"
+" "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:913
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:956
+msgid "Uploading books to device."
+msgstr "Lade Bücher auf das Gerät."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:922
+msgid "EPUB Books"
+msgstr "EPUB Bücher"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:923
+msgid "LRF Books"
+msgstr "LRF Bücher"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:924
+msgid "HTML Books"
+msgstr "HTML Bücher"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:925
+msgid "LIT Books"
+msgstr "LIT Bücher"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:926
+msgid "MOBI Books"
+msgstr "MOBI Bücher"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:927
+msgid "Text books"
+msgstr "Text Bücher"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:928
+msgid "PDF Books"
+msgstr "PDF Bücher"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:929
+msgid "Comics"
+msgstr "Comics"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:930
+msgid "Archives"
+msgstr "Archive"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:965
+msgid "Failed to read metadata"
+msgstr "Lesen der Metadaten schlug fehl"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:966
+msgid "Failed to read metadata from the following"
+msgstr "Lesen der Metadaten schlug fehl bei folgenden"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:985
+msgid ""
+"The selected books will be permanently deleted and the files removed "
+"from your computer. Are you sure?"
+msgstr ""
+"Die gewählten Bücher werden dauerhaft gelöscht und die Dateien vom "
+"Computer entfernt. Sicher?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1012
+msgid "Deleting books from device."
+msgstr "Lösche Bücher vom Gerät."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1043
+msgid "Cannot download metadata"
+msgstr "Konnte Metadaten nicht laden"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1044
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1101
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1134
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1159
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1271
+msgid "No books selected"
+msgstr "Keine Bücher ausgewählt"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1059
+msgid "social metadata"
+msgstr "soziale Metadaten"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "covers"
+msgstr "Umschlagbilder"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "metadata"
+msgstr "Metadaten"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1063
+msgid "Downloading %s for %d book(s)"
+msgstr "Lade %s für %d Bücher"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1085
+msgid "Failed to download some metadata"
+msgstr "Das Laden der Metadaten schlug teilweise fehl"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1086
+msgid "Failed to download metadata for the following:"
+msgstr "Das Laden der Metadaten schlug für folgende Bücher fehl:"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1089
+msgid "Failed to download metadata:"
+msgstr "Laden der Metadaten schlug fehl:"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1100
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1133
+msgid "Cannot edit metadata"
+msgstr "Kann Metadaten nicht bearbeiten"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1158
+msgid "Cannot save to disk"
+msgstr "Speichern auf Festplatte nicht möglich"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1161
+msgid "Choose destination directory"
+msgstr "Zielverzeichnis auswählen"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1188
+msgid "Error while saving"
+msgstr "Fehler während des Speicherns"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1189
+msgid "There was an error while saving."
+msgstr "Es gab einen Fehler während des Speicherns."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1196
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1197
+msgid "Could not save some books"
+msgstr "Konnte einige Bücher nicht speichern"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1198
+msgid "Click the show details button to see which ones."
+msgstr ""
+"Klicken Sie auf die Schaltfläche Details zeigen, um zu sehen, welche es gibt."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1217
+msgid "Fetching news from "
+msgstr "Rufe Nachrichten ab von "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1230
+msgid " fetched."
+msgstr " abgerufen."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1270
+msgid "Cannot convert"
+msgstr "Konvertierung nicht möglich"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1299
+msgid "Starting conversion of %d book(s)"
+msgstr "Starte Konvertierung von %d Büchern"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1429
+msgid "No book selected"
+msgstr "Kein Buch ausgewählt"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1460
+msgid "Cannot view"
+msgstr "Ansehen nicht möglich"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1428
+msgid "Cannot open folder"
+msgstr "Konnte Verzeichnis nicht öffnen"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1445
+msgid "Multiple Books Selected"
+msgstr "Mehrere Bücher ausgewählt"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1446
+msgid ""
+"You are attempting to open %d books. Opening too many books at once can be "
+"slow and have a negative effect on the responsiveness of your computer. Once "
+"started the process cannot be stopped until complete. Do you wish to "
+"continue?"
+msgstr ""
+"Sie versuchen %d Bücher zu öffnen. Das gleichzeitige Öffnen zu vieler Bücher "
+"kann lange dauern und einen negative Wirkung auf die Reaktionszeit Ihres "
+"Rechners haben. Einmal gestartet kann der Prozess nicht beendet werden, "
+"bevor er abgeschlossen ist. Möchten Sie fortfahren?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1461
+msgid "%s has no available formats."
+msgstr "%s hat keine verfügbaren Formate."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1502
+msgid "Cannot configure"
+msgstr "Konfiguration nicht möglich"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1503
+msgid "Cannot configure while there are running jobs."
+msgstr "Konfiguration nicht möglich während Aufträge abgearbeitet werden."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1546
+msgid "No detailed info available"
+msgstr "Es sind keine genaueren Informationen verfügbar"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1547
+msgid "No detailed information is available for books on the device."
+msgstr ""
+"Es sind keine weitere Informationen über Bücher auf dem Gerät verfügbar"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1599
+msgid "Error talking to device"
+msgstr "Fehler in der Kommunikation zum Gerät"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1600
+msgid ""
+"There was a temporary error talking to the device. Please unplug and "
+"reconnect the device and or reboot."
+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/calibre/src/calibre/gui2/ui.py:1623
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1641
+msgid "Conversion Error"
+msgstr "Konvertierungsfehler"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1624
+msgid ""
+"Could not convert: %s
It is a DRMed book. You must "
+"first remove the DRM using third party tools."
+msgstr ""
+"
Konvertierung nicht erfolgreich: %s
Dies ist ein durch DRM geschütztes Buch. Sie müssen zuerst das DRM mit Hilfe "
+"anderer Programme entfernen."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1642
+msgid "Failed"
+msgstr "Misslungen"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1670
+msgid "Invalid library location"
+msgstr "Ungültiger Ort der Bibliothek"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1671
+msgid "Could not access %s. Using %s as the library."
+msgstr "Konnte nicht auf %s zugreifen. Verwende %s als Bibliothek."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1719
+msgid ""
+"is the result of the efforts of many volunteers from all over the world. If "
+"you find it useful, please consider donating to support its development."
+msgstr ""
+"beruht auf den Anstrengungen von vielen Freiwilligen aus der ganzen Welt. "
+"Falls Sie es nützlich finden, sollten Sie eine Spende zur Unterstützung "
+"seiner Entwicklung in Betracht ziehen."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1744
+msgid "There are active jobs. Are you sure you want to quit?"
+msgstr ""
+"Es bestehen aktive Aufträge. Sind Sie sicher, dass sie es beenden wollen?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1747
+msgid ""
+" is communicating with the device!
\n"
+" Quitting may cause corruption on the device.
\n"
+" Are you sure you want to quit?"
+msgstr ""
+" kommuniziert mit dem Gerät!
\n"
+" Das Beenden kann Beschädigungen auf dem Gerät "
+"verursachen.
\n"
+" Sind Sie sicher, dass sie beenden möchten?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1751
+msgid "WARNING: Active jobs"
+msgstr "WARNUNG: Aktive Aufträge"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1803
+msgid ""
+"will keep running in the system tray. To close it, choose Quit in the "
+"context menu of the system tray."
+msgstr ""
+"wird im System Tray weiter laufen. Zum Schließen wählen Sie Beenden "
+"im Kontextmenü des System Tray."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1822
+msgid ""
+"Latest version: %s"
+msgstr ""
+"Letzte Version: %s"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1830
+msgid "Update available"
+msgstr "Neue Version verfügbar"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1831
+msgid ""
+"%s has been updated to version %s. See the new features. Visit the download page?"
+msgstr ""
+"%s wurde auf Version %s aktualisiert. Sehen Sie sich die neuen Funktionen an. Möchten "
+"Sie die Download-Seite besuchen?"
+
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:43
msgid "Edit bookmark"
msgstr "Lesezeichen bearbeiten"
@@ -7119,20 +7111,14 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:49
msgid ""
"
Demo videos
Videos demonstrating the various features of calibre are "
-"available online."
+"available online."
msgstr ""
-"Demo Videos
Videos, die die zahlreichen Funktionen von Calibre "
-"zeigen, finden Sie online."
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:50
msgid ""
-"User Manual
A User Manual is also available online."
+"User Manual
A User Manual is also available online."
msgstr ""
-"Benutzer Handbuch
Ein Benutzer Handbuch finden Sie ebenfalls online."
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:44
msgid ""
@@ -7681,27 +7667,27 @@ msgstr ""
"\n"
"Sie erhalten Hilfe zu einem bestimmten Befehl mit: %%prog command --help\n"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1624
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1625
msgid "Migrating old database to ebook library in %s
"
msgstr "Migriere alte Datenbank zu eBook Bibliothek in %s
"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1653
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1654
msgid "Copying %s"
msgstr "Kopiere %s"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1670
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1671
msgid "Compacting database"
msgstr "Komprimiere Datenbank"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1763
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1764
msgid "Checking SQL integrity..."
msgstr "Überprüfe SQL Vollständigkeit..."
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1800
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1801
msgid "Checking for missing files."
msgstr "Überprüfe fehlende Dateien."
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1824
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1823
msgid "Checked id"
msgstr "Überprüfte ID"
@@ -7840,7 +7826,7 @@ msgid "Password to access your calibre library. Username is "
msgstr ""
"Kennwort für den Zugriff auf die Calibre Bibliothek. Benutzername ist "
-#: /home/kovid/work/calibre/src/calibre/library/server.py:860
+#: /home/kovid/work/calibre/src/calibre/library/server.py:856
msgid ""
"[options]\n"
"\n"
@@ -7923,49 +7909,49 @@ msgstr "Fertig"
msgid "Working..."
msgstr "Bei der Arbeit..."
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:93
msgid "Brazilian Portuguese"
msgstr "Brasilianisches Portugiesisch"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
msgid "English (UK)"
msgstr "Englisch (Großbritannien)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
msgid "Simplified Chinese"
msgstr "Chinesisch (vereinfacht)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
msgid "Chinese (HK)"
msgstr "Chinesisch (HK)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
msgid "Traditional Chinese"
msgstr "Chinesisch (traditionell)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
msgid "English"
msgstr "Englisch"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
msgid "English (AU)"
msgstr "Englisch (AU)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
msgid "English (CA)"
msgstr "Englisch (CA)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
msgid "English (IND)"
msgstr "Englisch (IND)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
msgid "Dutch (NL)"
-msgstr ""
+msgstr "Holländisch (NL)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
msgid "Dutch (BE)"
-msgstr ""
+msgstr "Holländisch (BE)"
#: /home/kovid/work/calibre/src/calibre/utils/sftp.py:53
msgid "URL must have the scheme sftp"
@@ -8112,7 +8098,7 @@ msgstr "Geplant"
msgid "Custom"
msgstr "Angepasst"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:458
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:457
msgid ""
"%prog URL\n"
"\n"
@@ -8122,13 +8108,13 @@ msgstr ""
"\n"
"URL ist z.B. http://google.com"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:461
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:460
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/calibre/src/calibre/web/fetch/simple.py:464
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:463
msgid ""
"Timeout in seconds to wait for a response from the server. Default: %default "
"s"
@@ -8136,7 +8122,7 @@ msgstr ""
"Timeout in Sekunden beim Warten auf eine Antwort vom Server. Voreinstellung: "
"%default s"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:467
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:466
msgid ""
"Maximum number of levels to recurse i.e. depth of links to follow. Default "
"%default"
@@ -8144,7 +8130,7 @@ msgstr ""
"Maximale Zahl von einbezogenen Ebenen, z.B. Tiefe der Links, die verfolgt "
"werden. Voreinstellung %default"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:470
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:469
msgid ""
"The maximum number of files to download. This only applies to files from tags. Default is %default"
@@ -8152,7 +8138,7 @@ msgstr ""
"Höchstzahl der Dateien, die geladen werden. Dies trifft nur auf Dateien aus "
" Tags zu. Voreinstellung ist %default"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:472
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
msgid ""
"Minimum interval in seconds between consecutive fetches. Default is %default "
"s"
@@ -8160,7 +8146,7 @@ msgstr ""
"Kleinstes Intervall in Sekunden zwischen aufeinander folgenden Abrufen. "
"Voreinstellung ist %default s"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:474
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
msgid ""
"The character encoding for the websites you are trying to download. The "
"default is to try and guess the encoding."
@@ -8168,7 +8154,7 @@ msgstr ""
"Zeichenkodierung für Webseiten, die zu laden versucht werden. In der "
"Voreinstellung wird versucht, die Kodierung zu erraten."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:476
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
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 "
@@ -8179,7 +8165,7 @@ msgstr ""
"sie einem regulären Ausdruck entsprechen. In der Voreinstellung werden alle "
"Links verfolgt."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:478
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
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 "
@@ -8193,11 +8179,11 @@ msgstr ""
"Links ignoriert. Falls beide --filter-regexp und --match-regexp angegeben "
"sind, wird --filter-regexp zuerst angewendet."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:479
msgid "Do not download CSS stylesheets."
msgstr "CSS-Stylesheets nicht herunterladen."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:481
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
msgid "Show detailed output information. Useful for debugging"
msgstr "Detaillierte Ausgabeinformation anzeigen. Hilfreich zur Fehlersuche."
@@ -10217,6 +10203,39 @@ msgstr "Detaillierte Ausgabeinformation anzeigen. Hilfreich zur Fehlersuche."
#~ msgid "Input character &encoding"
#~ msgstr "Zeichenkodi&erung der Eingabe"
+#~ msgid ""
+#~ "For example, to match all h2 tags that have class=\"chapter\", set tag to "
+#~ "h2, attribute to class and value to "
+#~ "chapter.
Leaving attribute blank will match any attribute and "
+#~ "leaving value blank will match any value. Setting tag to * will match any "
+#~ "tag.
To learn more advanced usage of XPath see the XPath "
+#~ "Tutorial."
+#~ msgstr ""
+#~ "
Um zum Beispiel alle h2 Tags, die class=\"chapter\" verwenden, zu finden, "
+#~ "geben Sie Tag als h2, Attribut als class und Wert als "
+#~ "chapter an.
Ein leeres Attribut findet alle Attribute und ein "
+#~ "leerer Wert findet alle Werte. Ein Tag * findet alle Tags.
Um mehr "
+#~ "über den Gebrauch von XPath zu lernen, besuchen Sie das XPath "
+#~ "Tutorial."
+
+#~ msgid ""
+#~ "
Demo videos
Videos demonstrating the various features of calibre are "
+#~ "available online."
+#~ msgstr ""
+#~ "Demo Videos
Videos, die die zahlreichen Funktionen von Calibre "
+#~ "zeigen, finden Sie online."
+
+#~ msgid ""
+#~ "User Manual
A User Manual is also available online."
+#~ msgstr ""
+#~ "Benutzer Handbuch
Ein Benutzer Handbuch finden Sie ebenfalls online."
+
#~ msgid ""
#~ "Average line length for line breaking if the HTML is from a previous partial "
#~ "conversion of a PDF file."
@@ -10230,6 +10249,14 @@ msgstr "Detaillierte Ausgabeinformation anzeigen. Hilfreich zur Fehlersuche."
#~ msgid "&Header regular expression:"
#~ msgstr "Regulärer Ausdruck &Kopfzeile:"
+#~ msgid ""
+#~ "See the User Manual for more help"
+#~ msgstr ""
+#~ "Verwenden Sie das Benutzer Handbuch für weitere Hilfe"
+
#~ msgid ""
#~ "\n"
@@ -10286,3 +10313,33 @@ msgstr "Detaillierte Ausgabeinformation anzeigen. Hilfreich zur Fehlersuche."
#~ msgid "Communicate with the Sony PRS-300/505 eBook reader."
#~ msgstr "Kommunikation mit dem Sony PRS-300/505 eBook Reader."
+
+#~ msgid ""
+#~ "This wizard will help you choose an appropriate font size key for your "
+#~ "needs. Just enter the base font size of the input document and then enter an "
+#~ "input font size. The wizard will display what font size it will be mapped "
+#~ "to, by the font rescaling algorithm. You can adjust the algorithm by "
+#~ "adjusting the output base font size and font key below. When you find values "
+#~ "suitable for you, click OK.
\n"
+#~ "By default, if the output base font size is zero and/or no font size key "
+#~ "is specified, calibre will use the values from the current Output Profile. "
+#~ "
\n"
+#~ "See the User Manual for a discussion of how font size rescaling "
+#~ "works.
"
+#~ msgstr ""
+#~ "Dieser Assistent hilft, die richtige Schriftgröße für Ihre Bedürfnisse zu "
+#~ "wählen. Geben Sie die Basis-Schriftgröße des Eingabe-Dokuments an und geben "
+#~ "eine Eingabe-Schriftgröße an. Der Assistent zeigt durch den "
+#~ "Schriftskalierungs-Algorithmus an, auf welche Schriftgröße sie abgebildet "
+#~ "wird. Sie können den Algorithmus anpassen, indem Sie die Ausgabe-Basis-"
+#~ "Schriftgröße und den Schriftschlüssel unten verändern. Wenn die Werte für "
+#~ "Sie passend sind, klicken Sie auf OK.
\n"
+#~ "Voreingestellt wird Calibre, falls die Ausgabe-Basis-Schriftgröße gleich "
+#~ "null ist und/oder keine Schriftgrößenschlüssel angegeben wird, die Werte des "
+#~ "aktuellen Ausgabe-Profils verwenden.
\n"
+#~ "Sehen Sie sich das englischsprachige Benutzerhandbuch für eine Diskussion, wie die Schriftgrößen-"
+#~ "Skalierung funktioniert, an.
"
diff --git a/src/calibre/translations/es.po b/src/calibre/translations/es.po
index ebbac14e37..27e814f045 100644
--- a/src/calibre/translations/es.po
+++ b/src/calibre/translations/es.po
@@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: es\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-30 20:45+0000\n"
-"PO-Revision-Date: 2009-12-01 16:56+0000\n"
-"Last-Translator: Jellby \n"
+"POT-Creation-Date: 2009-12-02 22:46+0000\n"
+"PO-Revision-Date: 2009-12-03 00:20+0000\n"
+"Last-Translator: Kovid Goyal \n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2009-12-02 04:53+0000\n"
+"X-Launchpad-Export-Date: 2009-12-03 04:39+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@@ -29,12 +29,12 @@ msgstr "No hacer nada en absoluto"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:53
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:58
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:199
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:730
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:733
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:745
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:748
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:187
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:410
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:64
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:67
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:69
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:322
#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1895
@@ -71,9 +71,9 @@ msgstr "No hacer nada en absoluto"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:778
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:49
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:51
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:889
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:894
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:954
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:893
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:898
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:958
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:139
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:105
@@ -111,8 +111,8 @@ msgstr "No hacer nada en absoluto"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:543
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:552
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:771
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:774
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:770
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:773
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:109
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:143
@@ -127,15 +127,15 @@ msgstr "No hacer nada en absoluto"
#: /home/kovid/work/calibre/src/calibre/library/database.py:913
#: /home/kovid/work/calibre/src/calibre/library/database2.py:702
#: /home/kovid/work/calibre/src/calibre/library/database2.py:714
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1114
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1151
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1485
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1487
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1598
-#: /home/kovid/work/calibre/src/calibre/library/server.py:649
-#: /home/kovid/work/calibre/src/calibre/library/server.py:721
-#: /home/kovid/work/calibre/src/calibre/library/server.py:768
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:105
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1115
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1152
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1486
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1488
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1599
+#: /home/kovid/work/calibre/src/calibre/library/server.py:645
+#: /home/kovid/work/calibre/src/calibre/library/server.py:717
+#: /home/kovid/work/calibre/src/calibre/library/server.py:764
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:45
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:63
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:77
@@ -414,6 +414,12 @@ msgstr "Desactivar el complemento nombrado"
msgid "Communicate with Android phones."
msgstr "Comunicar con teléfonos Android."
+#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:25
+msgid ""
+"Comma separated list of directories to send e-books to on the device. The "
+"first one that exists will be used"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:19
msgid "Communicate with the BeBook eBook reader."
msgstr "Comunicar con el lector BeBook"
@@ -475,7 +481,7 @@ msgstr "Comunicar con el lector ESlick"
msgid "Communicate with the IRex Iliad eBook reader."
msgstr "Comunicar con el lector IRex Iliad."
-#: /home/kovid/work/calibre/src/calibre/devices/interface.py:21
+#: /home/kovid/work/calibre/src/calibre/devices/interface.py:22
msgid "Device Interface"
msgstr "Interfaz del dispositivo"
@@ -554,21 +560,21 @@ msgstr "Enviando metadatos al dispositivo..."
msgid "Communicate with the Sony PRS-600/700 eBook reader."
msgstr "Comunicar con los lectores Sony PRS-600/700"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:285
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:357
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:293
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:365
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
"No se pudo detectar la unidad de disco %s. Pruebe después de reiniciar."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:425
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:433
msgid "Unable to detect the %s disk drive."
msgstr "No se pudo detectar la unidad de disco %s."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:518
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Could not find mount helper: %s."
msgstr "No se pudo encontrar el asistente de montaje: %s"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:530
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
msgid ""
"Unable to detect the %s disk drive. Your kernel is probably exporting a "
"deprecated version of SYSFS."
@@ -576,34 +582,34 @@ msgstr ""
"No se pudo detectar la unidad de disco %s. Probablemente el kernel está "
"exportando una versión anticuada de SYSFS."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:546
msgid "Unable to mount main memory (Error code: %d)"
msgstr "No se pudo montar la memoria principal (Código de error: %d)"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:678
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:680
msgid "The reader has no storage card in this slot."
msgstr "El lector no tiene tarjeta de almacenamiento en esta ranura."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:674
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
msgid "Selected slot: %s is not supported."
msgstr "La ranura seleccionada: %s no está soportada."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:698
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
msgid "There is insufficient free space in main memory"
msgstr "No hay suficiente espacio libre en la memoria principal"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:700
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:715
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:717
msgid "There is insufficient free space on the storage card"
msgstr "No hay suficiente espacio libre en la tarjeta de almacenamiento"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:728
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:125
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1058
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1062
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1385
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1059
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1063
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1386
msgid "News"
msgstr "Noticias"
@@ -611,23 +617,28 @@ msgstr "Noticias"
msgid "Configure Device"
msgstr "Configurar dispositivo"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:16
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
msgid "settings for device drivers"
msgstr "configuraciones de controladores de dispositivos"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:17
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:20
msgid "Ordered list of formats the device will accept"
msgstr "Lista ordenada de formatos que el dispositivo aceptará"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:22
msgid "Place files in sub directories if the device supports them"
msgstr "Colocar los ficheros en subdirectorios si el dispositivo los soporta"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:19
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:64
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:24
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:71
msgid "Read metadata from files on device"
msgstr "Leer los metadatos de los ficheros del dispositivo"
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:27
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:73
+msgid "Extra customization"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Comunicar con un lector de libros electrónicos."
@@ -1986,7 +1997,7 @@ msgstr ""
"LibraryThing.com\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1083
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1317
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
msgid "Cover"
msgstr "Portada"
@@ -2021,70 +2032,70 @@ msgstr "Desactivar la compresión del fichero."
msgid "All articles"
msgstr "Todos los artículos"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1318
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
msgid "Title Page"
msgstr "Página de título"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1319
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr "Índice"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1320
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
msgid "Index"
msgstr "Índice analítico"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
msgid "Glossary"
msgstr "Glosario"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
msgid "Acknowledgements"
msgstr "Agradecimientos"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
msgid "Bibliography"
msgstr "Bibliografía"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
msgid "Colophon"
msgstr "Colofón"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
msgid "Copyright"
msgstr "Copyright"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
msgid "Dedication"
msgstr "Dedicatoria"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
msgid "Epigraph"
msgstr "Epígrafe"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
msgid "Foreword"
msgstr "Prólogo"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
msgid "List of Illustrations"
msgstr "Lista de ilustraciones"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1334
msgid "List of Tables"
msgstr "Lista de tablas"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1335
msgid "Notes"
msgstr "Notas"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1336
msgid "Preface"
msgstr "Prefacio"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1337
msgid "Main Text"
msgstr "Texto principal"
@@ -2795,7 +2806,7 @@ msgstr "entrada"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input_ui.py:28
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output_ui.py:28
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:110
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:115
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:165
#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:44
@@ -2811,7 +2822,7 @@ msgstr "entrada"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:67
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:59
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:67
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:35
#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:96
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:107
@@ -2913,11 +2924,11 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:52
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:53
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:116
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:170
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:44
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:61
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:62
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:69
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:70
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:496
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:509
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:510
@@ -3020,25 +3031,10 @@ msgid ""
"By default, if the output base font size is zero and/or no font size key "
"is specified, calibre will use the values from the current Output Profile. "
"
\n"
-"See the User Manual for a discussion of how font size rescaling "
-"works.
"
+"See the User Manual "
+"for a discussion of how font size rescaling works.
"
msgstr ""
-"Este asistente le ayudará a elegir una clave de tamaño de letra adecuada. "
-"Introduzca el tamaño de letra base del documento de entrada y después "
-"introduzca un tamaño de letra de entrada. El asistente mostrará a qué tamaño "
-"de letra corresponderá según el algoritmo de redimensionado de tipos de "
-"letra. Puede ajustar el algoritmo cambiando el tamaño de letra base de "
-"salida y la clave de tamaño más abajo. Cuando encuentre valores "
-"satisfactorios, pulse OK.
\n"
-"Por defecto, si el tamaño de letra base de salida es cero o si no se "
-"especifica ninguna clave de tamaño, calibre usará los valores del Perfil de "
-"Salida actual.
\n"
-"Véase el Manual de Usuario para una discusión de cómo funciona el "
-"redimensionado de tipos de letra.
"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:103
msgid "&Output document"
@@ -3050,15 +3046,15 @@ msgid "&Base font size:"
msgstr "Tamaño de letra &base:"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:105
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:114
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
msgid "Font size &key:"
msgstr "Cla&ve de tamaño de letra"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:106
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:110
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:112
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:113
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:120
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:125
@@ -3097,56 +3093,63 @@ msgstr "Apariencia"
msgid "Control the look and feel of the output"
msgstr "Controlar la apariencia de la salida"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:111
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
msgid "&Disable font size rescaling"
msgstr "&Desactivar la modificación del tamaño de letra"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:112
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
msgid "Base &font size:"
msgstr "&Tamaño de letra base:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:115
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
msgid "Wizard to help you choose an appropriate font size key"
msgstr ""
"Asistente que le ayudará a elegir una clave de tamaño de letra adecuada"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:117
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
msgid "Line &height:"
msgstr "&Altura de línea:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
msgid "Input character &encoding:"
msgstr "&Codificación de entrada:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:128
msgid "Remove &spacing between paragraphs"
msgstr "Eliminar es&paciado entre párrafos"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:129
msgid "Indent size:"
msgstr "tamaño de la identación:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:130
+msgid ""
+"When calibre removes inter paragraph spacing, it automatically sets a "
+"paragraph indent, to ensure that paragraphs can be easily distinguished. "
+"This option controls the width of that indent."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:131
msgid " em"
msgstr " em"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:132
msgid "Insert &blank line"
msgstr "Insertar línea en &blanco"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:133
msgid "No text &justification"
msgstr "Sin &justificación de texto"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:134
msgid "&Linearize tables"
msgstr "&Linealizar tablas"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:135
msgid "&Transliterate unicode characters to ASCII."
msgstr "Transliterar &caracteres Unicode en ASCII."
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:136
msgid "Extra &CSS"
msgstr "C&SS adicional"
@@ -3446,7 +3449,7 @@ msgid "RB Output"
msgstr "Salida RB"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:77
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1411
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1416
msgid "Choose the format to view"
msgstr "Elija el formato para visualizar"
@@ -3746,17 +3749,8 @@ msgid ""
"chapter.
Leaving attribute blank will match any attribute and "
"leaving value blank will match any value. Setting tag to * will match any "
"tag.
To learn more advanced usage of XPath see the XPath "
-"Tutorial."
+"href=\"http://calibre-ebook.com/user_manual/xpath.html\">XPath Tutorial."
msgstr ""
-"
Por ejemplo, para seleccionar todas las etiquetas h2 que tengan "
-"class=\"chapter\", ponga h2 en la etiqueta, class en el "
-"atributo y chapter en el valor.
Un atributo en blanco "
-"corresponde a cualquier atributo y un valor en blanco a cualquier valor. Si "
-"se establece * en la etiqueta se seleccionará cualquier etiqueta.
Para "
-"usos más avanzados de XPath ver el Tutorial de "
-"XPath."
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:39
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:130
@@ -3886,9 +3880,9 @@ msgstr "Enviando correo electrónico a"
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:598
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:605
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:697
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:811
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:818
msgid "No suitable formats"
msgstr "No hay formatos adecuados"
@@ -3905,46 +3899,46 @@ msgstr ""
"No se pudieron enviar por correo electrónico los siguientes libros porque no "
"se encontraron formatos compatibles:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:624
msgid "Failed to email books"
msgstr "Fallo al enviar libros por correo electrónico"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:626
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
msgid "Failed to email the following books:"
msgstr "Fallo al enviar por correo electrónico los siguientes libros:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:630
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:629
msgid "Sent by email:"
msgstr "Enviado por correo electrónico:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:656
msgid "News:"
msgstr "Noticias:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:658
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
msgid "Attached is the"
msgstr "Adjunto está el"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:669
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:668
msgid "Sent news to"
msgstr "Enviar noticias a"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:699
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:813
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
msgid "Auto convert the following books before uploading to the device?"
msgstr ""
"¿Convertir automáticamente los siguientes libros antes de pasarlos al "
"dispositivo?"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:730
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:729
msgid "Sending news to device."
msgstr "Enviando noticias al dispositivo."
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:782
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:781
msgid "Sending books to device."
msgstr "Enviando libros al dispositivo."
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:820
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
msgid ""
"Could not upload the following books to the device, as no suitable formats "
"were found. Convert the book(s) to a format supported by your device first."
@@ -3953,24 +3947,24 @@ msgstr ""
"encontraron formatos adecuados. Convierta el(los) libro(s) a un formato "
"soportado por su dispositivo antes de volver a intentarlo."
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:867
msgid "No space on device"
msgstr "No hay espacio en el dispositivo"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:869
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
msgid ""
"
Cannot upload books to device there is no more free space available "
msgstr ""
"
No se pueden pasar los libros porque no hay más espacio libre en el "
"dispositivo "
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:60
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:68
msgid "Select available formats and their order for this device"
msgstr ""
"Seleccionar los formatos disponibles y su orden de preferencia para este "
"dispositivo"
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:63
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:72
msgid "Use sub directories"
msgstr "Usar subdirectorios"
@@ -4105,8 +4099,8 @@ msgstr "nueva dirección de correo electrónico"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:468
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:811
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:152
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1085
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:158
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1090
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:53
msgid "Error"
msgstr "Error"
@@ -4180,7 +4174,7 @@ msgid "Access log:"
msgstr "Registro de accesos:"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:667
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:607
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:613
msgid "Failed to start content server"
msgstr "Fallo al iniciar el servidor de contenidos"
@@ -4840,7 +4834,7 @@ msgid "Choose formats for "
msgstr "Elegir formatos para "
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:136
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:915
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:921
msgid "Books"
msgstr "Libros"
@@ -5230,11 +5224,9 @@ msgstr "Cualquiera de estas palabras &no deseadas:"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:95
msgid ""
-"See the User Manual for more help"
+"See the User Manual for more help"
msgstr ""
-"Ver el Manual de usuario para más información"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor.py:62
msgid "Are your sure?"
@@ -5642,24 +5634,24 @@ msgstr "Tarea desconocida"
msgid "There are %d waiting jobs:"
msgstr "Hay %d tareas en espera:"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:210
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:213
msgid "Cannot kill job"
msgstr "No se puede detener esta tarea"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:212
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
msgid "Cannot kill jobs that communicate with the device"
msgstr "No se pueden detener tareas que se comunican con el dispositivo"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:215
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
msgid "Job has already run"
msgstr "La tarea ya se ha ejecutado"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:243
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:242
msgid "Unavailable"
msgstr "No disponible"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:254
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:253
msgid " - Jobs"
msgstr " - tareas"
@@ -5781,530 +5773,52 @@ msgstr "Abrir libro electrónico"
msgid "Configure"
msgstr "Configurar"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:57
-msgid "Save single format to disk..."
-msgstr "Guardar un solo formato en disco..."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:136
-msgid "Search (For Advanced Search click the button to the left)"
-msgstr "Buscar (Para búsqueda avanzada, pulse el botón de la izquierda)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:153
-msgid "Error communicating with device"
-msgstr "Error en la comunicación con el dispositivo"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:170
-msgid "&Restore"
-msgstr "&Restaurar"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:172
-msgid "&Donate to support calibre"
-msgstr "&Donar para apoyar a calibre"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:177
-msgid "&Restart"
-msgstr "&Reiniciar"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:216
-msgid "
For help see the: User Manual
"
-msgstr "
Para ayuda mirar el: Manual de usuario
"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:218
-msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
-msgstr "%s: %s por Kovid Goyal %%(version)s
%%(device)s"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:241
-msgid "Edit metadata individually"
-msgstr "Editar metadatos por separado"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:243
-msgid "Edit metadata in bulk"
-msgstr "Edita metadatos en bloque"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:245
-msgid "Download metadata and covers"
-msgstr "Descargar metadatos y portadas"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:246
-msgid "Download only metadata"
-msgstr "Descargar sólo los metadatos"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:247
-msgid "Download only covers"
-msgstr "Descargar sólo las portadas"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:248
-msgid "Download only social metadata"
-msgstr "Descargar sólo metadatos sociales"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:251
-msgid "Add books from a single directory"
-msgstr "Añadir libros desde un único directorio"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:252
-msgid ""
-"Add books from directories, including sub-directories (One book per "
-"directory, assumes every ebook file is the same book in a different format)"
-msgstr ""
-"Añadir libros de directorios, incluyendo subdirectorios (Un libro por "
-"directorio, se asume que cada fichero de libro electrónico es el mismo libro "
-"en diferente formato."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:255
-msgid ""
-"Add books from directories, including sub directories (Multiple books per "
-"directory, assumes every ebook file is a different book)"
-msgstr ""
-"Añadir libros de directorios, incluyendo subdirectorios (Múltiples libros "
-"por directorio, se asume que cada fichero de libro electrónico es un libro "
-"diferente."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:258
-msgid "Add Empty book. (Book entry with no formats)"
-msgstr "Añadir libro en blanco. (Entrada de libro sin ningún formato)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:298
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
-msgid "Save to disk"
-msgstr "Guardar en el disco"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:299
-msgid "Save to disk in a single directory"
-msgstr "Guardar en el disco, en un único directorio"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:300
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1513
-msgid "Save only %s format to disk"
-msgstr "Guardar solamente el formato %s en disco"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:308
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
-msgid "View"
-msgstr "Mostrar"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:309
-msgid "View specific format"
-msgstr "Mostrar un formato específico"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:335
-msgid "Convert individually"
-msgstr "Convertir por separado"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:336
-msgid "Bulk convert"
-msgstr "Convertir en bloque"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:351
-msgid "Run welcome wizard"
-msgstr "Ejecutar el asistente de bienvenida"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:385
-msgid "Similar books..."
-msgstr "Libros similares..."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:445
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:446
-msgid "Bad database location"
-msgstr "Ubicación de la base de datos incorrecta"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:448
-#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
-msgid "Calibre Library"
-msgstr "Biblioteca de calibre"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:458
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1656
-msgid "Choose a location for your ebook library."
-msgstr "Elija otra ubicación para la biblioteca de libros electrónicos."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:650
-msgid "Browse by covers"
-msgstr "Explorar por portadas"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767
-msgid "Device: "
-msgstr "Dispositivo: "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:769
-msgid " detected."
-msgstr " detectado."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:792
-msgid "Connected "
-msgstr "Conectado "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:804
-msgid "Device database corrupted"
-msgstr "Base de datos del dispositivo corrupta"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:805
-msgid ""
-"\n"
-" The database of books on the reader is corrupted. Try the "
-"following:\n"
-"
\n"
-" - 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.
\n"
-" - 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.
\n"
-"
\n"
-" "
-msgstr ""
-"\n"
-" La base de datos de libros en el lector esta corrupta. "
-"Intente lo siguiente:\n"
-"
\n"
-" - Desconecte el lector. Espere a que termine de regenerar "
-"la base de datos (es decir, espere a que esté listo para usarse). Conéctelo "
-"de nuevo. Ahora debería funcionar con %(app)s correctamente. En caso "
-"contrario intente lo siguiente.
\n"
-" - Salga de %(app)s. Localice el fichero media.xml en la "
-"memoria principal del lector. Una vez localizado, bórrelo. Desconecte el "
-"lector. Espere a que termine de regenerar la base de datos, conéctelo de "
-"nuevo y reinicie %(app)s.
\n"
-"
\n"
-" "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:907
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:950
-msgid "Uploading books to device."
-msgstr "Enviando libros al dispositivo"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:916
-msgid "EPUB Books"
-msgstr "Libros en EPUB"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:917
-msgid "LRF Books"
-msgstr "Libros en LRF"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:918
-msgid "HTML Books"
-msgstr "Libros en HTML"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:919
-msgid "LIT Books"
-msgstr "Libros en LIT"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:920
-msgid "MOBI Books"
-msgstr "Libros en MOBI"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:921
-msgid "Text books"
-msgstr "Libros en formato texto"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922
-msgid "PDF Books"
-msgstr "Libros en PDF"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923
-msgid "Comics"
-msgstr "Cómics"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:924
-msgid "Archives"
-msgstr "Archivos"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:959
-msgid "Failed to read metadata"
-msgstr "Fallo leyendo metadatos"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:960
-msgid "Failed to read metadata from the following"
-msgstr "Fallo leyendo metadatos de"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:979
-msgid ""
-"The selected books will be permanently deleted and the files removed "
-"from your computer. Are you sure?"
-msgstr ""
-"Los libros seleccionados serán eliminados permanentemente y los "
-"ficheros borrados del equipo. ¿Está seguro?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1006
-msgid "Deleting books from device."
-msgstr "Eliminando libros del dispositivo"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1038
-msgid "Cannot download metadata"
-msgstr "No se pueden descargar los metadatos"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1039
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1096
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1129
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1154
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1266
-msgid "No books selected"
-msgstr "No hay libros seleccionados"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1054
-msgid "social metadata"
-msgstr "metadatos sociales"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "covers"
-msgstr "portadas"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "metadata"
-msgstr "metadatos"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1058
-msgid "Downloading %s for %d book(s)"
-msgstr "Descargando %s para %d libro(s)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1080
-msgid "Failed to download some metadata"
-msgstr "No se pudieron descargar algunos metadatos"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1081
-msgid "Failed to download metadata for the following:"
-msgstr "No se pudieron descargar metadatos para:"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1084
-msgid "Failed to download metadata:"
-msgstr "No se pudieron descargar metadatos:"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1095
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1128
-msgid "Cannot edit metadata"
-msgstr "No se pueden editar los metadatos"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1153
-msgid "Cannot save to disk"
-msgstr "No se puede guardar en disco"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1156
-msgid "Choose destination directory"
-msgstr "Elegir directorio de destino"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1183
-msgid "Error while saving"
-msgstr "Error al guardar"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1184
-msgid "There was an error while saving."
-msgstr "Hubo un error al guardar."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1191
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1192
-msgid "Could not save some books"
-msgstr "No se pudieron guardar algunos libros"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1193
-msgid "Click the show details button to see which ones."
-msgstr "Pulse el botón \"Mostrar detalles\" para ver cuáles."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1212
-msgid "Fetching news from "
-msgstr "Obteniendo noticias de "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1225
-msgid " fetched."
-msgstr " obtenidas."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1265
-msgid "Cannot convert"
-msgstr "No se puede convertir"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1294
-msgid "Starting conversion of %d book(s)"
-msgstr "Iniciando la conversión de %d libro(s)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1424
-msgid "No book selected"
-msgstr "No hay libros seleccionados"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1455
-msgid "Cannot view"
-msgstr "No se puede visualizar"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1423
-msgid "Cannot open folder"
-msgstr "No se puede abrir la carpeta"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1440
-msgid "Multiple Books Selected"
-msgstr "Varios libros seleccionados"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1441
-msgid ""
-"You are attempting to open %d books. Opening too many books at once can be "
-"slow and have a negative effect on the responsiveness of your computer. Once "
-"started the process cannot be stopped until complete. Do you wish to "
-"continue?"
-msgstr ""
-"Está intentando abrir %d libros. Abrir demasiados libros a la vez puede "
-"resultar lento y tener un efecto negativo sobre el funcionamiento del "
-"equipo. Una vez comenzado el proceso no puede deterse hasta que se complete. "
-"¿Desea continuar?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1456
-msgid "%s has no available formats."
-msgstr "%s no tiene formatos disponibles."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1497
-msgid "Cannot configure"
-msgstr "No se puede configurar"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1498
-msgid "Cannot configure while there are running jobs."
-msgstr "No se puede configurar mientras haya tareas en ejecución."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1541
-msgid "No detailed info available"
-msgstr "No hay información detallada disponible"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1542
-msgid "No detailed information is available for books on the device."
-msgstr ""
-"No hay información detallada disponible para los libros en el dispositivo"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1594
-msgid "Error talking to device"
-msgstr "Error de comunicación con el dispositivo"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1595
-msgid ""
-"There was a temporary error talking to the device. Please unplug and "
-"reconnect the device and or reboot."
-msgstr ""
-"Hubo un error de comunicación con el dispositivo. Desconecte y vuelva a "
-"conectar el dispositivo o reinicie la aplicación."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1618
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1636
-msgid "Conversion Error"
-msgstr "Error de conversión"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1619
-msgid ""
-"Could not convert: %s
It is a DRMed book. You must "
-"first remove the DRM using third party tools."
-msgstr ""
-"
No se pudo convertir: %s
Se trata de un libro con DRM. Debe eliminar primero el DRM con herramientas de "
-"terceros."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1637
-msgid "Failed"
-msgstr "Fallo"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1665
-msgid "Invalid library location"
-msgstr "Ubicación de la biblioteca no válida"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1666
-msgid "Could not access %s. Using %s as the library."
-msgstr "No se puede acceder a %s. Usando %s como biblioteca."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1714
-msgid ""
-"is the result of the efforts of many volunteers from all over the world. If "
-"you find it useful, please consider donating to support its development."
-msgstr ""
-"es el resultado de los esfuerzos de muchos voluntarios por todo el mundo. Si "
-"lo encuentra útil, por favor, considere donar dinero para apoyar su "
-"desarrollo."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1739
-msgid "There are active jobs. Are you sure you want to quit?"
-msgstr "Hay tareas activas. ¿Está seguro de que quiere salir?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1742
-msgid ""
-" is communicating with the device!
\n"
-" Quitting may cause corruption on the device.
\n"
-" Are you sure you want to quit?"
-msgstr ""
-" está en comunicación con el dispositivo
\n"
-" Cerrar la aplicación ahora puede provocar corrupción "
-"de datos en el dispositivo.
\n"
-" ¿Está seguro de que desea salir?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1746
-msgid "WARNING: Active jobs"
-msgstr "AVISO: Tareas activas"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1798
-msgid ""
-"will keep running in the system tray. To close it, choose Quit in the "
-"context menu of the system tray."
-msgstr ""
-"continuará ejecutándose en la bandeja del sistema. Para cerrarlo, elija "
-"Salir en el menú de contexto de la bandeja del sistema."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1817
-msgid ""
-"Latest version: %s"
-msgstr ""
-"Última versión: %s"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1825
-msgid "Update available"
-msgstr "Actualización disponible"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1826
-msgid ""
-"%s has been updated to version %s. See the new features. Visit the download page?"
-msgstr ""
-"%s ha sido actulizado a la versión %s. Mirar new features. ¿Visitar la página de descarga?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1844
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:25
msgid "Use the library located at the specified path."
msgstr "Usar la biblioteca de la ruta especificada."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1846
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:27
msgid "Start minimized to system tray."
msgstr "Iniciar el programa minimizado en la bandeja del sistema"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1848
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:29
msgid "Log debugging information to console"
msgstr "Dirigir registro de depuración a la consola"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1850
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:31
msgid "Do not check for updates"
msgstr "No comprobar actualizaciones"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1898
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:79
msgid "If you are sure it is not running"
msgstr "Si está seguro de que no está en ejecución"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1900
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:81
msgid "Cannot Start "
msgstr "No se puede iniciar "
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1901
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:82
msgid "%s is already running."
msgstr "%s ya está ejecutándose."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1904
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:85
msgid "may be running in the system tray, in the"
msgstr "puede estar en ejecución en la bandeja del sistema, en la"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1906
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:87
msgid "upper right region of the screen."
msgstr "zona superior derecha de la pantalla."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1908
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:89
msgid "lower right region of the screen."
msgstr "zona inferior derecha de la pantalla."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1911
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:92
msgid "try rebooting your computer."
msgstr "inténtelo después de reiniciar el equipo."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1913
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1925
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:94
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106
msgid "try deleting the file"
msgstr "pruebe a borrar el fichero"
@@ -6379,6 +5893,11 @@ msgstr "E"
msgid "Send to device"
msgstr "Enviar al dispositivo"
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:304
+msgid "Save to disk"
+msgstr "Guardar en el disco"
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:355
msgid "S"
msgstr "S"
@@ -6399,6 +5918,11 @@ msgstr "Convertir libros electrónicos"
msgid "C"
msgstr "C"
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:314
+msgid "View"
+msgstr "Mostrar"
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:361
msgid "V"
msgstr "V"
@@ -6505,17 +6029,17 @@ msgid "Publishers"
msgstr "Editoriales"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:63
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:186
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:182
msgid "Convert book %d of %d (%s)"
msgstr "Convertir el libro %d de %d (%s)"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:90
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:206
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:202
msgid "Could not convert some books"
msgstr "No se pudieron convertir algunos libros"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:91
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:207
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:203
msgid ""
"Could not convert %d of %d books, because no suitable source format was "
"found."
@@ -6523,23 +6047,23 @@ msgstr ""
"No se pudieron convertir %d de %d libros, porque no se encontró ningún "
"formato de origen adecuado."
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:120
msgid "Queueing books for bulk conversion"
msgstr "Poniendo libros en cola para conversión en bloque"
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:185
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:181
msgid "Queueing "
msgstr "Poniendo en cola "
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:241
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:237
msgid "Fetch news from "
msgstr "Obtener noticias de "
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:252
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:248
msgid "Convert existing"
msgstr "La conversión ya existe"
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:253
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:249
msgid ""
"The following books have already been converted to %s format. Do you wish to "
"reconvert them?"
@@ -6547,6 +6071,474 @@ msgstr ""
"Los siguientes libros ya han sido convertidos al formato %s. ¿Desea volver a "
"convertirlos?"
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:63
+msgid "Save single format to disk..."
+msgstr "Guardar un solo formato en disco..."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:142
+msgid "Search (For Advanced Search click the button to the left)"
+msgstr "Buscar (Para búsqueda avanzada, pulse el botón de la izquierda)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:159
+msgid "Error communicating with device"
+msgstr "Error en la comunicación con el dispositivo"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:176
+msgid "&Restore"
+msgstr "&Restaurar"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:178
+msgid "&Donate to support calibre"
+msgstr "&Donar para apoyar a calibre"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:183
+msgid "&Restart"
+msgstr "&Reiniciar"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:222
+msgid "
For help see the: User Manual
"
+msgstr "
Para ayuda mirar el: Manual de usuario
"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:224
+msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
+msgstr "%s: %s por Kovid Goyal %%(version)s
%%(device)s"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:247
+msgid "Edit metadata individually"
+msgstr "Editar metadatos por separado"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:249
+msgid "Edit metadata in bulk"
+msgstr "Edita metadatos en bloque"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:251
+msgid "Download metadata and covers"
+msgstr "Descargar metadatos y portadas"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:252
+msgid "Download only metadata"
+msgstr "Descargar sólo los metadatos"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:253
+msgid "Download only covers"
+msgstr "Descargar sólo las portadas"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:254
+msgid "Download only social metadata"
+msgstr "Descargar sólo metadatos sociales"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:257
+msgid "Add books from a single directory"
+msgstr "Añadir libros desde un único directorio"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:258
+msgid ""
+"Add books from directories, including sub-directories (One book per "
+"directory, assumes every ebook file is the same book in a different format)"
+msgstr ""
+"Añadir libros de directorios, incluyendo subdirectorios (Un libro por "
+"directorio, se asume que cada fichero de libro electrónico es el mismo libro "
+"en diferente formato."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:261
+msgid ""
+"Add books from directories, including sub directories (Multiple books per "
+"directory, assumes every ebook file is a different book)"
+msgstr ""
+"Añadir libros de directorios, incluyendo subdirectorios (Múltiples libros "
+"por directorio, se asume que cada fichero de libro electrónico es un libro "
+"diferente."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:264
+msgid "Add Empty book. (Book entry with no formats)"
+msgstr "Añadir libro en blanco. (Entrada de libro sin ningún formato)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:305
+msgid "Save to disk in a single directory"
+msgstr "Guardar en el disco, en un único directorio"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:306
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1518
+msgid "Save only %s format to disk"
+msgstr "Guardar solamente el formato %s en disco"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:315
+msgid "View specific format"
+msgstr "Mostrar un formato específico"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:341
+msgid "Convert individually"
+msgstr "Convertir por separado"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:342
+msgid "Bulk convert"
+msgstr "Convertir en bloque"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:357
+msgid "Run welcome wizard"
+msgstr "Ejecutar el asistente de bienvenida"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:391
+msgid "Similar books..."
+msgstr "Libros similares..."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:451
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:452
+msgid "Bad database location"
+msgstr "Ubicación de la base de datos incorrecta"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:454
+#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
+msgid "Calibre Library"
+msgstr "Biblioteca de calibre"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:464
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1661
+msgid "Choose a location for your ebook library."
+msgstr "Elija otra ubicación para la biblioteca de libros electrónicos."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:656
+msgid "Browse by covers"
+msgstr "Explorar por portadas"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:773
+msgid "Device: "
+msgstr "Dispositivo: "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:775
+msgid " detected."
+msgstr " detectado."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:798
+msgid "Connected "
+msgstr "Conectado "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:810
+msgid "Device database corrupted"
+msgstr "Base de datos del dispositivo corrupta"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:811
+msgid ""
+"\n"
+" The database of books on the reader is corrupted. Try the "
+"following:\n"
+"
\n"
+" - 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.
\n"
+" - 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.
\n"
+"
\n"
+" "
+msgstr ""
+"\n"
+" La base de datos de libros en el lector esta corrupta. "
+"Intente lo siguiente:\n"
+"
\n"
+" - Desconecte el lector. Espere a que termine de regenerar "
+"la base de datos (es decir, espere a que esté listo para usarse). Conéctelo "
+"de nuevo. Ahora debería funcionar con %(app)s correctamente. En caso "
+"contrario intente lo siguiente.
\n"
+" - Salga de %(app)s. Localice el fichero media.xml en la "
+"memoria principal del lector. Una vez localizado, bórrelo. Desconecte el "
+"lector. Espere a que termine de regenerar la base de datos, conéctelo de "
+"nuevo y reinicie %(app)s.
\n"
+"
\n"
+" "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:913
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:956
+msgid "Uploading books to device."
+msgstr "Enviando libros al dispositivo"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:922
+msgid "EPUB Books"
+msgstr "Libros en EPUB"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:923
+msgid "LRF Books"
+msgstr "Libros en LRF"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:924
+msgid "HTML Books"
+msgstr "Libros en HTML"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:925
+msgid "LIT Books"
+msgstr "Libros en LIT"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:926
+msgid "MOBI Books"
+msgstr "Libros en MOBI"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:927
+msgid "Text books"
+msgstr "Libros en formato texto"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:928
+msgid "PDF Books"
+msgstr "Libros en PDF"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:929
+msgid "Comics"
+msgstr "Cómics"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:930
+msgid "Archives"
+msgstr "Archivos"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:965
+msgid "Failed to read metadata"
+msgstr "Fallo leyendo metadatos"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:966
+msgid "Failed to read metadata from the following"
+msgstr "Fallo leyendo metadatos de"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:985
+msgid ""
+"The selected books will be permanently deleted and the files removed "
+"from your computer. Are you sure?"
+msgstr ""
+"Los libros seleccionados serán eliminados permanentemente y los "
+"ficheros borrados del equipo. ¿Está seguro?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1012
+msgid "Deleting books from device."
+msgstr "Eliminando libros del dispositivo"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1043
+msgid "Cannot download metadata"
+msgstr "No se pueden descargar los metadatos"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1044
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1101
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1134
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1159
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1271
+msgid "No books selected"
+msgstr "No hay libros seleccionados"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1059
+msgid "social metadata"
+msgstr "metadatos sociales"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "covers"
+msgstr "portadas"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "metadata"
+msgstr "metadatos"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1063
+msgid "Downloading %s for %d book(s)"
+msgstr "Descargando %s para %d libro(s)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1085
+msgid "Failed to download some metadata"
+msgstr "No se pudieron descargar algunos metadatos"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1086
+msgid "Failed to download metadata for the following:"
+msgstr "No se pudieron descargar metadatos para:"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1089
+msgid "Failed to download metadata:"
+msgstr "No se pudieron descargar metadatos:"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1100
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1133
+msgid "Cannot edit metadata"
+msgstr "No se pueden editar los metadatos"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1158
+msgid "Cannot save to disk"
+msgstr "No se puede guardar en disco"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1161
+msgid "Choose destination directory"
+msgstr "Elegir directorio de destino"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1188
+msgid "Error while saving"
+msgstr "Error al guardar"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1189
+msgid "There was an error while saving."
+msgstr "Hubo un error al guardar."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1196
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1197
+msgid "Could not save some books"
+msgstr "No se pudieron guardar algunos libros"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1198
+msgid "Click the show details button to see which ones."
+msgstr "Pulse el botón \"Mostrar detalles\" para ver cuáles."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1217
+msgid "Fetching news from "
+msgstr "Obteniendo noticias de "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1230
+msgid " fetched."
+msgstr " obtenidas."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1270
+msgid "Cannot convert"
+msgstr "No se puede convertir"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1299
+msgid "Starting conversion of %d book(s)"
+msgstr "Iniciando la conversión de %d libro(s)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1429
+msgid "No book selected"
+msgstr "No hay libros seleccionados"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1460
+msgid "Cannot view"
+msgstr "No se puede visualizar"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1428
+msgid "Cannot open folder"
+msgstr "No se puede abrir la carpeta"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1445
+msgid "Multiple Books Selected"
+msgstr "Varios libros seleccionados"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1446
+msgid ""
+"You are attempting to open %d books. Opening too many books at once can be "
+"slow and have a negative effect on the responsiveness of your computer. Once "
+"started the process cannot be stopped until complete. Do you wish to "
+"continue?"
+msgstr ""
+"Está intentando abrir %d libros. Abrir demasiados libros a la vez puede "
+"resultar lento y tener un efecto negativo sobre el funcionamiento del "
+"equipo. Una vez comenzado el proceso no puede deterse hasta que se complete. "
+"¿Desea continuar?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1461
+msgid "%s has no available formats."
+msgstr "%s no tiene formatos disponibles."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1502
+msgid "Cannot configure"
+msgstr "No se puede configurar"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1503
+msgid "Cannot configure while there are running jobs."
+msgstr "No se puede configurar mientras haya tareas en ejecución."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1546
+msgid "No detailed info available"
+msgstr "No hay información detallada disponible"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1547
+msgid "No detailed information is available for books on the device."
+msgstr ""
+"No hay información detallada disponible para los libros en el dispositivo"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1599
+msgid "Error talking to device"
+msgstr "Error de comunicación con el dispositivo"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1600
+msgid ""
+"There was a temporary error talking to the device. Please unplug and "
+"reconnect the device and or reboot."
+msgstr ""
+"Hubo un error de comunicación con el dispositivo. Desconecte y vuelva a "
+"conectar el dispositivo o reinicie la aplicación."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1623
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1641
+msgid "Conversion Error"
+msgstr "Error de conversión"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1624
+msgid ""
+"Could not convert: %s
It is a DRMed book. You must "
+"first remove the DRM using third party tools."
+msgstr ""
+"
No se pudo convertir: %s
Se trata de un libro con DRM. Debe eliminar primero el DRM con herramientas de "
+"terceros."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1642
+msgid "Failed"
+msgstr "Fallo"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1670
+msgid "Invalid library location"
+msgstr "Ubicación de la biblioteca no válida"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1671
+msgid "Could not access %s. Using %s as the library."
+msgstr "No se puede acceder a %s. Usando %s como biblioteca."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1719
+msgid ""
+"is the result of the efforts of many volunteers from all over the world. If "
+"you find it useful, please consider donating to support its development."
+msgstr ""
+"es el resultado de los esfuerzos de muchos voluntarios por todo el mundo. Si "
+"lo encuentra útil, por favor, considere donar dinero para apoyar su "
+"desarrollo."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1744
+msgid "There are active jobs. Are you sure you want to quit?"
+msgstr "Hay tareas activas. ¿Está seguro de que quiere salir?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1747
+msgid ""
+" is communicating with the device!
\n"
+" Quitting may cause corruption on the device.
\n"
+" Are you sure you want to quit?"
+msgstr ""
+" está en comunicación con el dispositivo
\n"
+" Cerrar la aplicación ahora puede provocar corrupción "
+"de datos en el dispositivo.
\n"
+" ¿Está seguro de que desea salir?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1751
+msgid "WARNING: Active jobs"
+msgstr "AVISO: Tareas activas"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1803
+msgid ""
+"will keep running in the system tray. To close it, choose Quit in the "
+"context menu of the system tray."
+msgstr ""
+"continuará ejecutándose en la bandeja del sistema. Para cerrarlo, elija "
+"Salir en el menú de contexto de la bandeja del sistema."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1822
+msgid ""
+"Latest version: %s"
+msgstr ""
+"Última versión: %s"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1830
+msgid "Update available"
+msgstr "Actualización disponible"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1831
+msgid ""
+"%s has been updated to version %s. See the new features. Visit the download page?"
+msgstr ""
+"%s ha sido actulizado a la versión %s. Mirar new features. ¿Visitar la página de descarga?"
+
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:43
msgid "Edit bookmark"
msgstr "Editar marcador"
@@ -7075,21 +7067,14 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:49
msgid ""
"
Demo videos
Videos demonstrating the various features of calibre are "
-"available online."
+"available online."
msgstr ""
-"Vídeos de demostración
Hay disponibles en línea vídeos "
-"de demostración de las distintas funciones de calibre."
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:50
msgid ""
-"User Manual
A User Manual is also available online."
+"User Manual
A User Manual is also available online."
msgstr ""
-"Manual de usuario
También está disponible en línea el Manual de "
-"usuario."
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:44
msgid ""
@@ -7638,29 +7623,29 @@ msgstr ""
"\n"
"Para ver la ayuda de cada orden ejecute: %%prog orden --help\n"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1624
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1625
msgid "Migrating old database to ebook library in %s
"
msgstr ""
"Migrando la base de datos antigua a la biblioteca de libros electrónicos "
"en %s
"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1653
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1654
msgid "Copying %s"
msgstr "Copiando %s"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1670
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1671
msgid "Compacting database"
msgstr "Compactando la base de datos"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1763
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1764
msgid "Checking SQL integrity..."
msgstr "Comprobando la integridad de SQL..."
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1800
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1801
msgid "Checking for missing files."
msgstr "Comprobando ficheros inexistentes."
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1824
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1823
msgid "Checked id"
msgstr "ID comprobado"
@@ -7798,7 +7783,7 @@ msgid "Password to access your calibre library. Username is "
msgstr ""
"Contraseña para acceder a la biblioteca de calibre. El nombre de usuario es "
-#: /home/kovid/work/calibre/src/calibre/library/server.py:860
+#: /home/kovid/work/calibre/src/calibre/library/server.py:856
msgid ""
"[options]\n"
"\n"
@@ -7881,47 +7866,47 @@ msgstr "Terminado"
msgid "Working..."
msgstr "Trabajando..."
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:93
msgid "Brazilian Portuguese"
msgstr "Portugués (Brasil)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
msgid "English (UK)"
msgstr "Inglés (Reino Unido)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
msgid "Simplified Chinese"
msgstr "Chino simplificado"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
msgid "Chinese (HK)"
msgstr "Chino (Hong Kong)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
msgid "Traditional Chinese"
msgstr "Chino tradicional"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
msgid "English"
msgstr "Inglés"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
msgid "English (AU)"
msgstr "Inglés (Australia)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
msgid "English (CA)"
msgstr "Inglés (Canadá)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
msgid "English (IND)"
msgstr "Inglés (India)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
msgid "Dutch (NL)"
msgstr "Neerlandés (NL)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
msgid "Dutch (BE)"
msgstr "Neerlandés (BE)"
@@ -8070,7 +8055,7 @@ msgstr "Planificado"
msgid "Custom"
msgstr "Personalizado"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:458
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:457
msgid ""
"%prog URL\n"
"\n"
@@ -8080,12 +8065,12 @@ msgstr ""
"\n"
"Donde URL es por ejemplo http://google.com"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:461
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:460
msgid "Base directory into which URL is saved. Default is %default"
msgstr ""
"Directorio base en el cual se almacena la URL. Por defecto es %default"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:464
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:463
msgid ""
"Timeout in seconds to wait for a response from the server. Default: %default "
"s"
@@ -8093,7 +8078,7 @@ msgstr ""
"Tiempo máximo de espera de respuesta del servidor (en segundos). Valor por "
"defecto: %default s"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:467
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:466
msgid ""
"Maximum number of levels to recurse i.e. depth of links to follow. Default "
"%default"
@@ -8101,7 +8086,7 @@ msgstr ""
"Máximo número de niveles de recursión, es decir, profundidad de los enlaces "
"a seguir. Valor por defecto: %default"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:470
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:469
msgid ""
"The maximum number of files to download. This only applies to files from tags. Default is %default"
@@ -8109,7 +8094,7 @@ msgstr ""
"El número máximo de ficheros a descargar. Esto se aplica solamente a "
"ficheros procedentes de etiquetas . Por defecto es %default"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:472
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
msgid ""
"Minimum interval in seconds between consecutive fetches. Default is %default "
"s"
@@ -8117,7 +8102,7 @@ msgstr ""
"Intervalo minimo en segundos entre adquisiciones de datos consecutivas. "
"Valor defecto: %default s"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:474
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
msgid ""
"The character encoding for the websites you are trying to download. The "
"default is to try and guess the encoding."
@@ -8125,7 +8110,7 @@ msgstr ""
"Codificación para los sitios web que está intentando descargar. Por defecto "
"se intentará averiguar la codificación."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:476
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
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 "
@@ -8136,7 +8121,7 @@ msgstr ""
"de las expresiones regulares, se seguirá el enlace. Por defecto todos los "
"enlaces se siguen."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:478
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
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 "
@@ -8150,11 +8135,11 @@ msgstr ""
"enlace se descarta. Si ambas opciones --filter-regexp y --match-regexp se "
"especifican, entonces --filter-regexp se aplica primero."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:479
msgid "Do not download CSS stylesheets."
msgstr "No descargar estilos CSS."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:481
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
msgid "Show detailed output information. Useful for debugging"
msgstr "Mostrar información de salida detallada. Útil para la depuración"
@@ -9929,6 +9914,24 @@ msgstr "Mostrar información de salida detallada. Útil para la depuración"
#~ msgid "&Header regular expression:"
#~ msgstr "Expresión regular para &encabezados"
+#~ msgid ""
+#~ "For example, to match all h2 tags that have class=\"chapter\", set tag to "
+#~ "h2, attribute to class and value to "
+#~ "chapter.
Leaving attribute blank will match any attribute and "
+#~ "leaving value blank will match any value. Setting tag to * will match any "
+#~ "tag.
To learn more advanced usage of XPath see the XPath "
+#~ "Tutorial."
+#~ msgstr ""
+#~ "
Por ejemplo, para seleccionar todas las etiquetas h2 que tengan "
+#~ "class=\"chapter\", ponga h2 en la etiqueta, class en el "
+#~ "atributo y chapter en el valor.
Un atributo en blanco "
+#~ "corresponde a cualquier atributo y un valor en blanco a cualquier valor. Si "
+#~ "se establece * en la etiqueta se seleccionará cualquier etiqueta.
Para "
+#~ "usos más avanzados de XPath ver el Tutorial de "
+#~ "XPath."
+
#~ msgid "Add a directory to the frequently used directories list"
#~ msgstr "Añadir un directorio a la lista de directorios frecuentes"
@@ -9938,6 +9941,13 @@ msgstr "Mostrar información de salida detallada. Útil para la depuración"
#~ msgid "Must set account information"
#~ msgstr "Debe establecer la información de cuenta"
+#~ msgid ""
+#~ "See the User Manual for more help"
+#~ msgstr ""
+#~ "Ver el Manual de usuario para más información"
+
#~ msgid ""
#~ "
For help visit %s.kovidgoyal.net
"
@@ -9970,6 +9980,23 @@ msgstr "Mostrar información de salida detallada. Útil para la depuración"
#~ msgid "Default"
#~ msgstr "Predeterminado"
+#~ msgid ""
+#~ "
Demo videos
Videos demonstrating the various features of calibre are "
+#~ "available online."
+#~ msgstr ""
+#~ "Vídeos de demostración
Hay disponibles en línea vídeos "
+#~ "de demostración de las distintas funciones de calibre."
+
+#~ msgid ""
+#~ "User Manual
A User Manual is also available online."
+#~ msgstr ""
+#~ "Manual de usuario
También está disponible en línea el Manual de "
+#~ "usuario."
+
#~ msgid "Skipping duplicated article: %s"
#~ msgstr "Descartando artículo duplicado: %s"
@@ -10043,3 +10070,33 @@ msgstr "Mostrar información de salida detallada. Útil para la depuración"
#~ msgid "Communicate with the Sony PRS-300/505 eBook reader."
#~ msgstr "Comunicar con los lectores Sony PRS-300/505"
+
+#~ msgid ""
+#~ "This wizard will help you choose an appropriate font size key for your "
+#~ "needs. Just enter the base font size of the input document and then enter an "
+#~ "input font size. The wizard will display what font size it will be mapped "
+#~ "to, by the font rescaling algorithm. You can adjust the algorithm by "
+#~ "adjusting the output base font size and font key below. When you find values "
+#~ "suitable for you, click OK.
\n"
+#~ "By default, if the output base font size is zero and/or no font size key "
+#~ "is specified, calibre will use the values from the current Output Profile. "
+#~ "
\n"
+#~ "See the User Manual for a discussion of how font size rescaling "
+#~ "works.
"
+#~ msgstr ""
+#~ "Este asistente le ayudará a elegir una clave de tamaño de letra adecuada. "
+#~ "Introduzca el tamaño de letra base del documento de entrada y después "
+#~ "introduzca un tamaño de letra de entrada. El asistente mostrará a qué tamaño "
+#~ "de letra corresponderá según el algoritmo de redimensionado de tipos de "
+#~ "letra. Puede ajustar el algoritmo cambiando el tamaño de letra base de "
+#~ "salida y la clave de tamaño más abajo. Cuando encuentre valores "
+#~ "satisfactorios, pulse OK.
\n"
+#~ "Por defecto, si el tamaño de letra base de salida es cero o si no se "
+#~ "especifica ninguna clave de tamaño, calibre usará los valores del Perfil de "
+#~ "Salida actual.
\n"
+#~ "Véase el Manual de Usuario para una discusión de cómo funciona el "
+#~ "redimensionado de tipos de letra.
"
diff --git a/src/calibre/translations/eu.po b/src/calibre/translations/eu.po
index c57af895b9..9496643ec7 100644
--- a/src/calibre/translations/eu.po
+++ b/src/calibre/translations/eu.po
@@ -7,31 +7,31 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME \n"
-"POT-Creation-Date: 2009-11-30 20:45+0000\n"
-"PO-Revision-Date: 2009-11-30 22:07+0000\n"
-"Last-Translator: Kovid Goyal \n"
+"POT-Creation-Date: 2009-12-02 22:46+0000\n"
+"PO-Revision-Date: 2009-12-02 20:50+0000\n"
+"Last-Translator: aitor \n"
"Language-Team: Basque \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2009-12-01 04:38+0000\n"
+"X-Launchpad-Export-Date: 2009-12-03 04:38+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
msgid "Does absolutely nothing"
-msgstr ""
+msgstr "Ez du ezer egiten"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:53
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:58
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:199
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:730
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:733
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:745
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:748
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:187
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:410
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:64
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:67
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:69
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:322
#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1895
@@ -68,9 +68,9 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:778
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:49
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:51
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:889
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:894
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:954
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:893
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:898
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:958
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:139
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:105
@@ -108,8 +108,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:543
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:552
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:771
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:774
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:770
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:773
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:109
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:143
@@ -124,15 +124,15 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/database.py:913
#: /home/kovid/work/calibre/src/calibre/library/database2.py:702
#: /home/kovid/work/calibre/src/calibre/library/database2.py:714
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1114
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1151
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1485
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1487
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1598
-#: /home/kovid/work/calibre/src/calibre/library/server.py:649
-#: /home/kovid/work/calibre/src/calibre/library/server.py:721
-#: /home/kovid/work/calibre/src/calibre/library/server.py:768
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:105
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1115
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1152
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1486
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1488
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1599
+#: /home/kovid/work/calibre/src/calibre/library/server.py:645
+#: /home/kovid/work/calibre/src/calibre/library/server.py:717
+#: /home/kovid/work/calibre/src/calibre/library/server.py:764
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:45
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:63
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:77
@@ -381,6 +381,12 @@ msgstr ""
msgid "Communicate with Android phones."
msgstr ""
+#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:25
+msgid ""
+"Comma separated list of directories to send e-books to on the device. The "
+"first one that exists will be used"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:19
msgid "Communicate with the BeBook eBook reader."
msgstr ""
@@ -442,7 +448,7 @@ msgstr ""
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/interface.py:21
+#: /home/kovid/work/calibre/src/calibre/devices/interface.py:22
msgid "Device Interface"
msgstr ""
@@ -521,53 +527,53 @@ msgstr ""
msgid "Communicate with the Sony PRS-600/700 eBook reader."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:285
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:357
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:293
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:365
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:425
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:433
msgid "Unable to detect the %s disk drive."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:518
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Could not find mount helper: %s."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:530
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
msgid ""
"Unable to detect the %s disk drive. Your kernel is probably exporting a "
"deprecated version of SYSFS."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:546
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:678
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:680
msgid "The reader has no storage card in this slot."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:674
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
msgid "Selected slot: %s is not supported."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:698
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
msgid "There is insufficient free space in main memory"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:700
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:715
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:717
msgid "There is insufficient free space on the storage card"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:728
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:125
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1058
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1062
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1385
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1059
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1063
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1386
msgid "News"
msgstr ""
@@ -575,23 +581,28 @@ msgstr ""
msgid "Configure Device"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:16
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
msgid "settings for device drivers"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:17
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:20
msgid "Ordered list of formats the device will accept"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:22
msgid "Place files in sub directories if the device supports them"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:19
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:64
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:24
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:71
msgid "Read metadata from files on device"
msgstr ""
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:27
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:73
+msgid "Extra customization"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
@@ -1699,7 +1710,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1083
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1317
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
msgid "Cover"
msgstr ""
@@ -1730,70 +1741,70 @@ msgstr ""
msgid "All articles"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1318
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
msgid "Title Page"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1319
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1320
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
msgid "Index"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
msgid "Glossary"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
msgid "Acknowledgements"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
msgid "Bibliography"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
msgid "Colophon"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
msgid "Copyright"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
msgid "Dedication"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
msgid "Epigraph"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
msgid "Foreword"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
msgid "List of Illustrations"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1334
msgid "List of Tables"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1335
msgid "Notes"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1336
msgid "Preface"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1337
msgid "Main Text"
msgstr ""
@@ -2391,7 +2402,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input_ui.py:28
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output_ui.py:28
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:110
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:115
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:165
#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:44
@@ -2407,7 +2418,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:67
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:59
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:67
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:35
#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:96
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:107
@@ -2504,11 +2515,11 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:52
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:53
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:116
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:170
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:44
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:61
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:62
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:69
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:70
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:496
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:509
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:510
@@ -2608,10 +2619,9 @@ msgid ""
"By default, if the output base font size is zero and/or no font size key "
"is specified, calibre will use the values from the current Output Profile. "
"
\n"
-"See the User Manual for a discussion of how font size rescaling "
-"works.
"
+"See the User Manual "
+"for a discussion of how font size rescaling works.
"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:103
@@ -2624,15 +2634,15 @@ msgid "&Base font size:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:105
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:114
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
msgid "Font size &key:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:106
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:110
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:112
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:113
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:120
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:125
@@ -2671,55 +2681,62 @@ msgstr ""
msgid "Control the look and feel of the output"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:111
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
msgid "&Disable font size rescaling"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:112
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
msgid "Base &font size:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:115
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
msgid "Wizard to help you choose an appropriate font size key"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:117
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
msgid "Line &height:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
msgid "Input character &encoding:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:128
msgid "Remove &spacing between paragraphs"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:129
msgid "Indent size:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:130
+msgid ""
+"When calibre removes inter paragraph spacing, it automatically sets a "
+"paragraph indent, to ensure that paragraphs can be easily distinguished. "
+"This option controls the width of that indent."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:131
msgid " em"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:132
msgid "Insert &blank line"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:133
msgid "No text &justification"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:134
msgid "&Linearize tables"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:135
msgid "&Transliterate unicode characters to ASCII."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:136
msgid "Extra &CSS"
msgstr ""
@@ -3013,7 +3030,7 @@ msgid "RB Output"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:77
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1411
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1416
msgid "Choose the format to view"
msgstr ""
@@ -3302,8 +3319,7 @@ msgid ""
"chapter.
Leaving attribute blank will match any attribute and "
"leaving value blank will match any value. Setting tag to * will match any "
"tag.
To learn more advanced usage of XPath see the XPath "
-"Tutorial."
+"href=\"http://calibre-ebook.com/user_manual/xpath.html\">XPath Tutorial."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:39
@@ -3434,9 +3450,9 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:598
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:605
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:697
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:811
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:818
msgid "No suitable formats"
msgstr ""
@@ -3449,63 +3465,63 @@ msgid ""
"Could not email the following books as no suitable formats were found:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:624
msgid "Failed to email books"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:626
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
msgid "Failed to email the following books:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:630
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:629
msgid "Sent by email:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:656
msgid "News:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:658
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
msgid "Attached is the"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:669
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:668
msgid "Sent news to"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:699
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:813
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
msgid "Auto convert the following books before uploading to the device?"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:730
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:729
msgid "Sending news to device."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:782
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:781
msgid "Sending books to device."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:820
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
msgid ""
"Could not upload the following books to the device, as no suitable formats "
"were found. Convert the book(s) to a format supported by your device first."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:867
msgid "No space on device"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:869
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
msgid ""
"
Cannot upload books to device there is no more free space available "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:60
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:68
msgid "Select available formats and their order for this device"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:63
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:72
msgid "Use sub directories"
msgstr ""
@@ -3629,8 +3645,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:468
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:811
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:152
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1085
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:158
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1090
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:53
msgid "Error"
msgstr ""
@@ -3701,7 +3717,7 @@ msgid "Access log:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:667
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:607
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:613
msgid "Failed to start content server"
msgstr ""
@@ -4306,7 +4322,7 @@ msgid "Choose formats for "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:136
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:915
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:921
msgid "Books"
msgstr ""
@@ -4677,8 +4693,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:95
msgid ""
-"See the User Manual for more help"
+"See the User Manual for more help"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor.py:62
@@ -5043,24 +5059,24 @@ msgstr ""
msgid "There are %d waiting jobs:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:210
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:213
msgid "Cannot kill job"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:212
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
msgid "Cannot kill jobs that communicate with the device"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:215
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
msgid "Job has already run"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:243
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:242
msgid "Unavailable"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:254
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:253
msgid " - Jobs"
msgstr ""
@@ -5179,485 +5195,52 @@ msgstr ""
msgid "Configure"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:57
-msgid "Save single format to disk..."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:136
-msgid "Search (For Advanced Search click the button to the left)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:153
-msgid "Error communicating with device"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:170
-msgid "&Restore"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:172
-msgid "&Donate to support calibre"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:177
-msgid "&Restart"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:216
-msgid "
For help see the: User Manual
"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:218
-msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:241
-msgid "Edit metadata individually"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:243
-msgid "Edit metadata in bulk"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:245
-msgid "Download metadata and covers"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:246
-msgid "Download only metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:247
-msgid "Download only covers"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:248
-msgid "Download only social metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:251
-msgid "Add books from a single directory"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:252
-msgid ""
-"Add books from directories, including sub-directories (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:255
-msgid ""
-"Add books from directories, including sub directories (Multiple books per "
-"directory, assumes every ebook file is a different book)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:258
-msgid "Add Empty book. (Book entry with no formats)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:298
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
-msgid "Save to disk"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:299
-msgid "Save to disk in a single directory"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:300
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1513
-msgid "Save only %s format to disk"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:308
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
-msgid "View"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:309
-msgid "View specific format"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:335
-msgid "Convert individually"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:336
-msgid "Bulk convert"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:351
-msgid "Run welcome wizard"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:385
-msgid "Similar books..."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:445
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:446
-msgid "Bad database location"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:448
-#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
-msgid "Calibre Library"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:458
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1656
-msgid "Choose a location for your ebook library."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:650
-msgid "Browse by covers"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767
-msgid "Device: "
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:769
-msgid " detected."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:792
-msgid "Connected "
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:804
-msgid "Device database corrupted"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:805
-msgid ""
-"\n"
-" The database of books on the reader is corrupted. Try the "
-"following:\n"
-"
\n"
-" - 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.
\n"
-" - 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.
\n"
-"
\n"
-" "
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:907
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:950
-msgid "Uploading books to device."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:916
-msgid "EPUB Books"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:917
-msgid "LRF Books"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:918
-msgid "HTML Books"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:919
-msgid "LIT Books"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:920
-msgid "MOBI Books"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:921
-msgid "Text books"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922
-msgid "PDF Books"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923
-msgid "Comics"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:924
-msgid "Archives"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:959
-msgid "Failed to read metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:960
-msgid "Failed to read metadata from the following"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:979
-msgid ""
-"The selected books will be permanently deleted and the files removed "
-"from your computer. Are you sure?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1006
-msgid "Deleting books from device."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1038
-msgid "Cannot download metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1039
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1096
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1129
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1154
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1266
-msgid "No books selected"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1054
-msgid "social metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "covers"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1058
-msgid "Downloading %s for %d book(s)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1080
-msgid "Failed to download some metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1081
-msgid "Failed to download metadata for the following:"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1084
-msgid "Failed to download metadata:"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1095
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1128
-msgid "Cannot edit metadata"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1153
-msgid "Cannot save to disk"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1156
-msgid "Choose destination directory"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1183
-msgid "Error while saving"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1184
-msgid "There was an error while saving."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1191
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1192
-msgid "Could not save some books"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1193
-msgid "Click the show details button to see which ones."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1212
-msgid "Fetching news from "
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1225
-msgid " fetched."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1265
-msgid "Cannot convert"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1294
-msgid "Starting conversion of %d book(s)"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1424
-msgid "No book selected"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1455
-msgid "Cannot view"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1423
-msgid "Cannot open folder"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1440
-msgid "Multiple Books Selected"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1441
-msgid ""
-"You are attempting to open %d books. Opening too many books at once can be "
-"slow and have a negative effect on the responsiveness of your computer. Once "
-"started the process cannot be stopped until complete. Do you wish to "
-"continue?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1456
-msgid "%s has no available formats."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1497
-msgid "Cannot configure"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1498
-msgid "Cannot configure while there are running jobs."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1541
-msgid "No detailed info available"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1542
-msgid "No detailed information is available for books on the device."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1594
-msgid "Error talking to device"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1595
-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:1618
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1636
-msgid "Conversion Error"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1619
-msgid ""
-"Could not convert: %s
It is a DRMed book. You must "
-"first remove the DRM using third party tools."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1637
-msgid "Failed"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1665
-msgid "Invalid library location"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1666
-msgid "Could not access %s. Using %s as the library."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1714
-msgid ""
-"is the result of the efforts of many volunteers from all over the world. If "
-"you find it useful, please consider donating to support its development."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1739
-msgid "There are active jobs. Are you sure you want to quit?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1742
-msgid ""
-" is communicating with the device!
\n"
-" Quitting may cause corruption on the device.
\n"
-" Are you sure you want to quit?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1746
-msgid "WARNING: Active jobs"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1798
-msgid ""
-"will keep running in the system tray. To close it, choose Quit in the "
-"context menu of the system tray."
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1817
-msgid ""
-"Latest version: %s"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1825
-msgid "Update available"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1826
-msgid ""
-"%s has been updated to version %s. See the new features. Visit the download page?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1844
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:25
msgid "Use the library located at the specified path."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1846
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:27
msgid "Start minimized to system tray."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1848
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:29
msgid "Log debugging information to console"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1850
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:31
msgid "Do not check for updates"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1898
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:79
msgid "If you are sure it is not running"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1900
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:81
msgid "Cannot Start "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1901
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:82
msgid "%s is already running."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1904
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:85
msgid "may be running in the system tray, in the"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1906
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:87
msgid "upper right region of the screen."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1908
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:89
msgid "lower right region of the screen."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1911
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:92
msgid "try rebooting your computer."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1913
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1925
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:94
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106
msgid "try deleting the file"
msgstr ""
@@ -5729,6 +5312,11 @@ msgstr ""
msgid "Send to device"
msgstr ""
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:304
+msgid "Save to disk"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:355
msgid "S"
msgstr ""
@@ -5749,6 +5337,11 @@ msgstr ""
msgid "C"
msgstr ""
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:314
+msgid "View"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:361
msgid "V"
msgstr ""
@@ -5850,44 +5443,467 @@ msgid "Publishers"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:63
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:186
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:182
msgid "Convert book %d of %d (%s)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:90
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:206
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:202
msgid "Could not convert some books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:91
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:207
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:203
msgid ""
"Could not convert %d of %d books, because no suitable source format was "
"found."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:120
msgid "Queueing books for bulk conversion"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:185
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:181
msgid "Queueing "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:241
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:237
msgid "Fetch news from "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:252
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:248
msgid "Convert existing"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:253
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:249
msgid ""
"The following books have already been converted to %s format. Do you wish to "
"reconvert them?"
msgstr ""
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:63
+msgid "Save single format to disk..."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:142
+msgid "Search (For Advanced Search click the button to the left)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:159
+msgid "Error communicating with device"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:176
+msgid "&Restore"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:178
+msgid "&Donate to support calibre"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:183
+msgid "&Restart"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:222
+msgid "
For help see the: User Manual
"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:224
+msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:247
+msgid "Edit metadata individually"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:249
+msgid "Edit metadata in bulk"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:251
+msgid "Download metadata and covers"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:252
+msgid "Download only metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:253
+msgid "Download only covers"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:254
+msgid "Download only social metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:257
+msgid "Add books from a single directory"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:258
+msgid ""
+"Add books from directories, including sub-directories (One book per "
+"directory, assumes every ebook file is the same book in a different format)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:261
+msgid ""
+"Add books from directories, including sub directories (Multiple books per "
+"directory, assumes every ebook file is a different book)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:264
+msgid "Add Empty book. (Book entry with no formats)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:305
+msgid "Save to disk in a single directory"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:306
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1518
+msgid "Save only %s format to disk"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:315
+msgid "View specific format"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:341
+msgid "Convert individually"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:342
+msgid "Bulk convert"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:357
+msgid "Run welcome wizard"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:391
+msgid "Similar books..."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:451
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:452
+msgid "Bad database location"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:454
+#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
+msgid "Calibre Library"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:464
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1661
+msgid "Choose a location for your ebook library."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:656
+msgid "Browse by covers"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:773
+msgid "Device: "
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:775
+msgid " detected."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:798
+msgid "Connected "
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:810
+msgid "Device database corrupted"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:811
+msgid ""
+"\n"
+" The database of books on the reader is corrupted. Try the "
+"following:\n"
+"
\n"
+" - 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.
\n"
+" - 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.
\n"
+"
\n"
+" "
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:913
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:956
+msgid "Uploading books to device."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:922
+msgid "EPUB Books"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:923
+msgid "LRF Books"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:924
+msgid "HTML Books"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:925
+msgid "LIT Books"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:926
+msgid "MOBI Books"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:927
+msgid "Text books"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:928
+msgid "PDF Books"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:929
+msgid "Comics"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:930
+msgid "Archives"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:965
+msgid "Failed to read metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:966
+msgid "Failed to read metadata from the following"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:985
+msgid ""
+"The selected books will be permanently deleted and the files removed "
+"from your computer. Are you sure?"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1012
+msgid "Deleting books from device."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1043
+msgid "Cannot download metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1044
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1101
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1134
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1159
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1271
+msgid "No books selected"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1059
+msgid "social metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "covers"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1063
+msgid "Downloading %s for %d book(s)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1085
+msgid "Failed to download some metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1086
+msgid "Failed to download metadata for the following:"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1089
+msgid "Failed to download metadata:"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1100
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1133
+msgid "Cannot edit metadata"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1158
+msgid "Cannot save to disk"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1161
+msgid "Choose destination directory"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1188
+msgid "Error while saving"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1189
+msgid "There was an error while saving."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1196
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1197
+msgid "Could not save some books"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1198
+msgid "Click the show details button to see which ones."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1217
+msgid "Fetching news from "
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1230
+msgid " fetched."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1270
+msgid "Cannot convert"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1299
+msgid "Starting conversion of %d book(s)"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1429
+msgid "No book selected"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1460
+msgid "Cannot view"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1428
+msgid "Cannot open folder"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1445
+msgid "Multiple Books Selected"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1446
+msgid ""
+"You are attempting to open %d books. Opening too many books at once can be "
+"slow and have a negative effect on the responsiveness of your computer. Once "
+"started the process cannot be stopped until complete. Do you wish to "
+"continue?"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1461
+msgid "%s has no available formats."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1502
+msgid "Cannot configure"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1503
+msgid "Cannot configure while there are running jobs."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1546
+msgid "No detailed info available"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1547
+msgid "No detailed information is available for books on the device."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1599
+msgid "Error talking to device"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1600
+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/ui.py:1623
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1641
+msgid "Conversion Error"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1624
+msgid ""
+"Could not convert: %s
It is a DRMed book. You must "
+"first remove the DRM using third party tools."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1642
+msgid "Failed"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1670
+msgid "Invalid library location"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1671
+msgid "Could not access %s. Using %s as the library."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1719
+msgid ""
+"is the result of the efforts of many volunteers from all over the world. If "
+"you find it useful, please consider donating to support its development."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1744
+msgid "There are active jobs. Are you sure you want to quit?"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1747
+msgid ""
+" is communicating with the device!
\n"
+" Quitting may cause corruption on the device.
\n"
+" Are you sure you want to quit?"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1751
+msgid "WARNING: Active jobs"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1803
+msgid ""
+"will keep running in the system tray. To close it, choose Quit in the "
+"context menu of the system tray."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1822
+msgid ""
+"Latest version: %s"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1830
+msgid "Update available"
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1831
+msgid ""
+"%s has been updated to version %s. See the new features. Visit the download page?"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:43
msgid "Edit bookmark"
msgstr ""
@@ -6378,14 +6394,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:49
msgid ""
"
Demo videos
Videos demonstrating the various features of calibre are "
-"available online."
+"available online."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:50
msgid ""
-"User Manual
A User Manual is also available online."
+"User Manual
A User Manual is also available online."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:44
@@ -6813,27 +6828,27 @@ msgid ""
"For help on an individual command: %%prog command --help\n"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1624
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1625
msgid "Migrating old database to ebook library in %s
"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1653
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1654
msgid "Copying %s"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1670
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1671
msgid "Compacting database"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1763
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1764
msgid "Checking SQL integrity..."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1800
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1801
msgid "Checking for missing files."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1824
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1823
msgid "Checked id"
msgstr ""
@@ -6951,7 +6966,7 @@ msgstr ""
msgid "Password to access your calibre library. Username is "
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/library/server.py:860
+#: /home/kovid/work/calibre/src/calibre/library/server.py:856
msgid ""
"[options]\n"
"\n"
@@ -7028,47 +7043,47 @@ msgstr ""
msgid "Working..."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:93
msgid "Brazilian Portuguese"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
msgid "English (UK)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
msgid "Simplified Chinese"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
msgid "Chinese (HK)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
msgid "Traditional Chinese"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
msgid "English"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
msgid "English (AU)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
msgid "English (CA)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
msgid "English (IND)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
msgid "Dutch (NL)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
msgid "Dutch (BE)"
msgstr ""
@@ -7211,55 +7226,55 @@ msgstr ""
msgid "Custom"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:458
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:457
msgid ""
"%prog URL\n"
"\n"
"Where URL is for example http://google.com"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:461
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:460
msgid "Base directory into which URL is saved. Default is %default"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:464
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:463
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:467
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:466
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:470
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:469
msgid ""
"The maximum number of files to download. This only applies to files from tags. Default is %default"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:472
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
msgid ""
"Minimum interval in seconds between consecutive fetches. Default is %default "
"s"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:474
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
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:476
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
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:478
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
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 "
@@ -7268,10 +7283,10 @@ msgid ""
"applied first."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:479
msgid "Do not download CSS stylesheets."
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:481
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
msgid "Show detailed output information. Useful for debugging"
msgstr ""
diff --git a/src/calibre/translations/fr.po b/src/calibre/translations/fr.po
index 312a63b570..ab8d2138bc 100644
--- a/src/calibre/translations/fr.po
+++ b/src/calibre/translations/fr.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre 0.4.22\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2009-11-30 20:45+0000\n"
-"PO-Revision-Date: 2009-12-01 21:01+0000\n"
+"POT-Creation-Date: 2009-12-02 22:46+0000\n"
+"PO-Revision-Date: 2009-12-03 00:21+0000\n"
"Last-Translator: F.-X. Martin \n"
"Language-Team: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2009-12-02 04:53+0000\n"
+"X-Launchpad-Export-Date: 2009-12-03 04:38+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Generated-By: pygettext.py 1.5\n"
@@ -26,12 +26,12 @@ msgstr "Ne fait strictement rien"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:53
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:58
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:199
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:730
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:733
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:745
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:748
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:187
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:410
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:64
-#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:67
+#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:69
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/html/input.py:322
#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/html/convert_from.py:1895
@@ -68,9 +68,9 @@ msgstr "Ne fait strictement rien"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:778
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:49
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:51
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:889
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:894
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:954
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:893
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:898
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:958
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:139
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:105
@@ -108,8 +108,8 @@ msgstr "Ne fait strictement rien"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:543
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:552
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:771
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:774
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:770
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:773
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comicconf.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:109
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/fetch_metadata.py:143
@@ -124,15 +124,15 @@ msgstr "Ne fait strictement rien"
#: /home/kovid/work/calibre/src/calibre/library/database.py:913
#: /home/kovid/work/calibre/src/calibre/library/database2.py:702
#: /home/kovid/work/calibre/src/calibre/library/database2.py:714
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1114
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1151
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1485
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1487
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1598
-#: /home/kovid/work/calibre/src/calibre/library/server.py:649
-#: /home/kovid/work/calibre/src/calibre/library/server.py:721
-#: /home/kovid/work/calibre/src/calibre/library/server.py:768
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:105
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1115
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1152
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1486
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1488
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1599
+#: /home/kovid/work/calibre/src/calibre/library/server.py:645
+#: /home/kovid/work/calibre/src/calibre/library/server.py:717
+#: /home/kovid/work/calibre/src/calibre/library/server.py:764
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:45
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:63
#: /home/kovid/work/calibre/src/calibre/utils/podofo/__init__.py:77
@@ -409,6 +409,12 @@ msgstr "Désactive le plugin nommé"
msgid "Communicate with Android phones."
msgstr "Communique avec les téléphones Android."
+#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:25
+msgid ""
+"Comma separated list of directories to send e-books to on the device. The "
+"first one that exists will be used"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:19
msgid "Communicate with the BeBook eBook reader."
msgstr "Communique avec le lecteur d'ebook BeBook."
@@ -470,7 +476,7 @@ msgstr "Communique avec le lecteur d'ebook ESlick."
msgid "Communicate with the IRex Iliad eBook reader."
msgstr "Communique avec le lecteur d'ebook Iliad IRex."
-#: /home/kovid/work/calibre/src/calibre/devices/interface.py:21
+#: /home/kovid/work/calibre/src/calibre/devices/interface.py:22
msgid "Device Interface"
msgstr "Interface de l'appareil"
@@ -549,20 +555,20 @@ msgstr "Envoie les métadonnées vers l'appareil..."
msgid "Communicate with the Sony PRS-600/700 eBook reader."
msgstr "Communique avec le lecteur d'ebook Sony PRS-600/700."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:285
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:357
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:293
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:365
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Impossible de détecter le disque %s. Essayer de redémarrer"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:425
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:433
msgid "Unable to detect the %s disk drive."
msgstr "Impossible de monter le disque %s."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:518
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Could not find mount helper: %s."
msgstr "Impossible de trouver l'assistant de montage: %s."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:530
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
msgid ""
"Unable to detect the %s disk drive. Your kernel is probably exporting a "
"deprecated version of SYSFS."
@@ -570,34 +576,34 @@ msgstr ""
"Impossible de détecter le disque dur %s. Votre noyau doit probablement "
"exporter une version obsolète de SYSFS."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:538
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:546
msgid "Unable to mount main memory (Error code: %d)"
msgstr "Impossible de monter la mémoire principale (Code d'erreur: %d)"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:678
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:680
msgid "The reader has no storage card in this slot."
msgstr "Le lecteur n'a aucune carte mémoire dans cette fente."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:674
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
msgid "Selected slot: %s is not supported."
msgstr "La fente choisie %s n'est pas supportée."
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:698
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
msgid "There is insufficient free space in main memory"
msgstr "Espace insuffisant dans la mémoire principale"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:700
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:715
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:717
msgid "There is insufficient free space on the storage card"
msgstr "Espace insuffisant sur la carte mémoire"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:713
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:728
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:125
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1058
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1062
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1385
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1059
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1063
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1386
msgid "News"
msgstr "Informations"
@@ -605,24 +611,29 @@ msgstr "Informations"
msgid "Configure Device"
msgstr "Configurer l'appareil"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:16
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
msgid "settings for device drivers"
msgstr "paramètres pour les pilotes de périphériques"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:17
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:20
msgid "Ordered list of formats the device will accept"
msgstr "Liste de formats triés acceptés par l'appareil"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:18
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:22
msgid "Place files in sub directories if the device supports them"
msgstr ""
"Placer les fichiers dans des sous-répertoires si l'appareil le permet"
-#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:19
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:64
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:24
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:71
msgid "Read metadata from files on device"
msgstr "Lire les métadonnées à partir des fichiers dans l'appareil"
+#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:27
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:73
+msgid "Extra customization"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Communique avec un lecteur d'ebook."
@@ -1997,7 +2008,7 @@ msgstr ""
"LibraryThing.com\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1083
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1317
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
msgid "Cover"
msgstr "Couverture"
@@ -2032,70 +2043,70 @@ msgstr "Désactiver la compression du contenu du fichier."
msgid "All articles"
msgstr "Tous les articles"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1318
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
msgid "Title Page"
msgstr "Page de titre"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1319
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr "Tables des matières"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1320
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
msgid "Index"
msgstr "Index"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1321
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
msgid "Glossary"
msgstr "Glossaire"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1322
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
msgid "Acknowledgements"
msgstr "Remerciements"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1323
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
msgid "Bibliography"
msgstr "Bibliographie"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1324
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
msgid "Colophon"
msgstr "Marque de l'imprimeur"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1325
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
msgid "Copyright"
msgstr "Copyright"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1326
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
msgid "Dedication"
msgstr "Dédicace"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1327
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
msgid "Epigraph"
msgstr "Epigraphe"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1328
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
msgid "Foreword"
msgstr "Avant-propos"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1329
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
msgid "List of Illustrations"
msgstr "Liste d'illustrations"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1330
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1334
msgid "List of Tables"
msgstr "Liste de Tables"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1331
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1335
msgid "Notes"
msgstr "Notes"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1332
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1336
msgid "Preface"
msgstr "Préface"
-#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1333
+#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1337
msgid "Main Text"
msgstr "Texte principal"
@@ -2804,7 +2815,7 @@ msgstr "entrée"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/epub_output_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_input_ui.py:28
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output_ui.py:28
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:110
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:115
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:165
#: /home/kovid/work/calibre/src/calibre/gui2/convert/mobi_output_ui.py:44
@@ -2820,7 +2831,7 @@ msgstr "entrée"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:41
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:67
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:59
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:67
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_item_ui.py:35
#: /home/kovid/work/calibre/src/calibre/gui2/filename_pattern_ui.py:96
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/send_email_ui.py:107
@@ -2922,11 +2933,11 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:52
#: /home/kovid/work/calibre/src/calibre/gui2/convert/debug_ui.py:53
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:116
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
#: /home/kovid/work/calibre/src/calibre/gui2/convert/metadata_ui.py:170
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:44
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:61
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:62
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:69
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:70
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:496
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:509
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/config_ui.py:510
@@ -3029,10 +3040,9 @@ msgid ""
"By default, if the output base font size is zero and/or no font size key "
"is specified, calibre will use the values from the current Output Profile. "
"
\n"
-"See the User Manual for a discussion of how font size rescaling "
-"works.
"
+"See the User Manual "
+"for a discussion of how font size rescaling works.
"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:103
@@ -3045,15 +3055,15 @@ msgid "&Base font size:"
msgstr "Taille de &base de la police:"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:105
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:114
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
msgid "Font size &key:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:106
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:110
#: /home/kovid/work/calibre/src/calibre/gui2/convert/font_key_ui.py:112
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:113
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:118
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:118
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:120
#: /home/kovid/work/calibre/src/calibre/gui2/convert/lrf_output_ui.py:125
@@ -3092,55 +3102,62 @@ msgstr "Présentation"
msgid "Control the look and feel of the output"
msgstr "Contrôler l'apparence de la sortie"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:111
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
msgid "&Disable font size rescaling"
msgstr "&Désactiver le redimensionnement de la taille de la police"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:112
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
msgid "Base &font size:"
msgstr "Taille de &police par défaut :"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:115
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
msgid "Wizard to help you choose an appropriate font size key"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:117
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
msgid "Line &height:"
msgstr "&Hauteur de la ligne:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:119
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
msgid "Input character &encoding:"
msgstr "&Encodage des caractères en entrée:"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:120
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:128
msgid "Remove &spacing between paragraphs"
msgstr "&Supprimer l'interligne entre les paragraphes"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:121
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:129
msgid "Indent size:"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:122
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:130
+msgid ""
+"When calibre removes inter paragraph spacing, it automatically sets a "
+"paragraph indent, to ensure that paragraphs can be easily distinguished. "
+"This option controls the width of that indent."
+msgstr ""
+
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:131
msgid " em"
msgstr " em"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:123
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:132
msgid "Insert &blank line"
msgstr "Insérer une ligne blanche"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:133
msgid "No text &justification"
msgstr "Pas de &justification de texte"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:125
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:134
msgid "&Linearize tables"
msgstr "&Linéariser les tables"
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:126
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:135
msgid "&Transliterate unicode characters to ASCII."
msgstr "Translittérer les caractères unicode vers ASCII."
-#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:127
+#: /home/kovid/work/calibre/src/calibre/gui2/convert/look_and_feel_ui.py:136
msgid "Extra &CSS"
msgstr "&CSS complémentaire"
@@ -3440,7 +3457,7 @@ msgid "RB Output"
msgstr "Sortie RB"
#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:77
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1411
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1416
msgid "Choose the format to view"
msgstr "Choisir le format à afficher"
@@ -3742,18 +3759,8 @@ msgid ""
"chapter.
Leaving attribute blank will match any attribute and "
"leaving value blank will match any value. Setting tag to * will match any "
"tag.
To learn more advanced usage of XPath see the XPath "
-"Tutorial."
+"href=\"http://calibre-ebook.com/user_manual/xpath.html\">XPath Tutorial
."
msgstr ""
-"Par exemple, pour faire correspondre toutes les étiquettes h2 qui ont "
-"class=\"chapter\", positionner l'étiquette à h2, l'attribut à "
-"class et la valeur à chapter.
Laisser à vide l'attribut "
-"fera une recherche sur tous les attributs et laisser la valeur vide une "
-"recherche sur toutes les valeurs. Positionner l'étiquette à * fera une "
-"recherche sur toutes les étiquettes.
Pour en apprendre plus sur "
-"l'utilisation avancée du XPath voir le Tutoriel "
-"XPath."
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:39
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:130
@@ -3883,9 +3890,9 @@ msgstr "Envoi d'un email à"
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:598
#: /home/kovid/work/calibre/src/calibre/gui2/device.py:605
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:697
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:811
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:818
msgid "No suitable formats"
msgstr "Pas de format convenable"
@@ -3902,46 +3909,46 @@ msgstr ""
"Impossible d'envoyer par email les livres suivants car aucun format "
"convenable n'a été trouvé :"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:624
msgid "Failed to email books"
msgstr "L'envoi par email des livres a échoué"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:626
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:625
msgid "Failed to email the following books:"
msgstr "L'envoi par email des livres suivants a échoué:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:630
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:629
msgid "Sent by email:"
msgstr "Envoyer par email:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:656
msgid "News:"
msgstr "News:"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:658
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:657
msgid "Attached is the"
msgstr "Le fichier attaché est"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:669
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:668
msgid "Sent news to"
msgstr "Envoi des News vers"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:699
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:813
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:698
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:812
msgid "Auto convert the following books before uploading to the device?"
msgstr ""
"Convertir automatiquement les livres suivants avant de les télécharger dans "
"l'appareil ?"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:730
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:729
msgid "Sending news to device."
msgstr "Envoi les News vers l'appareil."
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:782
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:781
msgid "Sending books to device."
msgstr "Envoie les livres dans l'appareil."
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:820
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:819
msgid ""
"Could not upload the following books to the device, as no suitable formats "
"were found. Convert the book(s) to a format supported by your device first."
@@ -3950,23 +3957,23 @@ msgstr ""
"convenable n'a été trouvé. Convertissez avant le(s) livre(s) vers un format "
"supporté par votre appareil."
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:867
msgid "No space on device"
msgstr "Le lecteur électronique n'a plus d'espace mémoire disponible"
-#: /home/kovid/work/calibre/src/calibre/gui2/device.py:869
+#: /home/kovid/work/calibre/src/calibre/gui2/device.py:868
msgid ""
"
Cannot upload books to device there is no more free space available "
msgstr ""
"
Impossible d'envoyer les livres sur le lecteur : il n'y a plus assez "
"d'espace mémoire disponible "
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:60
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:68
msgid "Select available formats and their order for this device"
msgstr ""
"Sélectionner les formats disponibles et leurs ordres pour cet appareil"
-#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:63
+#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:72
msgid "Use sub directories"
msgstr "Utiliser les sous-répertoires"
@@ -4098,8 +4105,8 @@ msgstr "Nouvelle adresse email"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:468
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:811
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:152
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1085
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:158
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1090
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:53
msgid "Error"
msgstr "Erreur"
@@ -4174,7 +4181,7 @@ msgid "Access log:"
msgstr "Journal des accès:"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:667
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:607
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:613
msgid "Failed to start content server"
msgstr "A échoué lors du démarrage du serveur de contenu"
@@ -4842,7 +4849,7 @@ msgid "Choose formats for "
msgstr "Choisir les formats pour "
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:136
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:915
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:921
msgid "Books"
msgstr "Livres"
@@ -5233,11 +5240,9 @@ msgstr "Aucun de ces mots non souhaités:"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:95
msgid ""
-"See the User Manual for more help"
+"See the User Manual for more help"
msgstr ""
-"Voir le Manuel Utilisateur pour une aide complémentaire"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tag_editor.py:62
msgid "Are your sure?"
@@ -5646,25 +5651,25 @@ msgstr "Travail inconnu"
msgid "There are %d waiting jobs:"
msgstr "Il y %d travaux en attente:"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:210
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:213
msgid "Cannot kill job"
msgstr "Impossible d'arrêter le travail"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:212
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:211
msgid "Cannot kill jobs that communicate with the device"
msgstr ""
"Impossible de tuer les travaux lorsqu'ils communiquent avec l'appareil"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:215
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:214
msgid "Job has already run"
msgstr "Le travail a déjà démarré"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:243
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:242
msgid "Unavailable"
msgstr "Indisponible"
-#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:254
+#: /home/kovid/work/calibre/src/calibre/gui2/jobs.py:253
msgid " - Jobs"
msgstr " - Travaux"
@@ -5785,528 +5790,52 @@ msgstr "Ouvrir le livre"
msgid "Configure"
msgstr "Configurer"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:57
-msgid "Save single format to disk..."
-msgstr "Sauvegarder un seul format vers le disque..."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:136
-msgid "Search (For Advanced Search click the button to the left)"
-msgstr ""
-"Recherche (pour une recherche avancée cliquer sur le bouton à gauche)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:153
-msgid "Error communicating with device"
-msgstr "Erreur pendant la communication avec le lecteur électronique"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:170
-msgid "&Restore"
-msgstr "&Montrer"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:172
-msgid "&Donate to support calibre"
-msgstr "&Donner pour supporter calibre"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:177
-msgid "&Restart"
-msgstr "&Redémarrer"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:216
-msgid "
For help see the: User Manual
"
-msgstr ""
-"
Pour l'aider, consulter le Manuel Utilisateur
"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:218
-msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
-msgstr "%s: %s par Kovid Goyal %%(version)s
%%(device)s"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:241
-msgid "Edit metadata individually"
-msgstr "Editer les métadonnées individuellement"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:243
-msgid "Edit metadata in bulk"
-msgstr "Editer les métadonnées par lot"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:245
-msgid "Download metadata and covers"
-msgstr "Télécharger les métadonnées et les couvertures"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:246
-msgid "Download only metadata"
-msgstr "Télécharger seulement les métadonnées"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:247
-msgid "Download only covers"
-msgstr "Télécharger seulement les couvertures"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:248
-msgid "Download only social metadata"
-msgstr "Télécharger uniquement les métadonnées sociales"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:251
-msgid "Add books from a single directory"
-msgstr "Ajouter des livres à partir d'un répertoire"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:252
-msgid ""
-"Add books from directories, including sub-directories (One book per "
-"directory, assumes every ebook file is the same book in a different format)"
-msgstr ""
-"Ajouter des livres par répertoires et sous-répertoires. (Un livre par "
-"répertoire, chaque fichier représente le même livre dans un format différent)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:255
-msgid ""
-"Add books from directories, including sub directories (Multiple books per "
-"directory, assumes every ebook file is a different book)"
-msgstr ""
-"Ajouter des livres par répertoires et sous-répertoires. (Plusieurs livres "
-"par répertoire, chaque fichier est un livre différent)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:258
-msgid "Add Empty book. (Book entry with no formats)"
-msgstr "Ajouter un livre vide. (Une entrée sans aucun format)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:298
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
-msgid "Save to disk"
-msgstr "Sauvegarder sur le disque"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:299
-msgid "Save to disk in a single directory"
-msgstr "Sauvegarder sur le disque dans un seul répertoire"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:300
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1513
-msgid "Save only %s format to disk"
-msgstr "Sauvegarder seulement le format %s vers le disque"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:308
-#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
-msgid "View"
-msgstr "Visualiser"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:309
-msgid "View specific format"
-msgstr "Visualiser le format spécifique"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:335
-msgid "Convert individually"
-msgstr "Convertir individuellement"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:336
-msgid "Bulk convert"
-msgstr "Convertir par lot"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:351
-msgid "Run welcome wizard"
-msgstr "Démarrer l'assistant de bienvenue"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:385
-msgid "Similar books..."
-msgstr "Livres similaires..."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:445
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:446
-msgid "Bad database location"
-msgstr "Mauvais emplacement pour la base"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:448
-#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
-msgid "Calibre Library"
-msgstr "Librairie calibre"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:458
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1656
-msgid "Choose a location for your ebook library."
-msgstr "Choisir un emplacement pour votre librairie d'ebook"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:650
-msgid "Browse by covers"
-msgstr "Navigation par couvertures"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:767
-msgid "Device: "
-msgstr "Appareil: "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:769
-msgid " detected."
-msgstr " detecté."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:792
-msgid "Connected "
-msgstr "Connecté: "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:804
-msgid "Device database corrupted"
-msgstr "Base de données d'appareils corrompue"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:805
-msgid ""
-"\n"
-" The database of books on the reader is corrupted. Try the "
-"following:\n"
-"
\n"
-" - 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.
\n"
-" - 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.
\n"
-"
\n"
-" "
-msgstr ""
-"\n"
-" La base de données sur le lecteur est corrompue. Essayer "
-"ceci:\n"
-"
\n"
-" - Débrancher le lecteur. Attendre qu'il regénère la base "
-"de données (c-à-d attendre jusqu'à ce qui soit prêt à être utiliser). "
-"Brancher le. Maintenant, cela devrait fonctionner avec %(app)s. Si cela ne "
-"fonctionne pas, essayer l'étape suivante.
\n"
-" - Quitter %(app)s. Trouver le ficher media.xml dans la "
-"mémoire principale du lecteur. Supprimer le. Débrancher le lecteur. Attendre "
-"qu'il regénère la base de données. Le reconnecter et démarrer %(app)s.
\n"
-"
\n"
-" "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:907
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:950
-msgid "Uploading books to device."
-msgstr "Téléchargement des livres vers l'appareil."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:916
-msgid "EPUB Books"
-msgstr "Livres EPUB"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:917
-msgid "LRF Books"
-msgstr "Livres LRF"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:918
-msgid "HTML Books"
-msgstr "Livres HTML"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:919
-msgid "LIT Books"
-msgstr "Livres LIT"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:920
-msgid "MOBI Books"
-msgstr "Livres MOBI"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:921
-msgid "Text books"
-msgstr "Livres Texte"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:922
-msgid "PDF Books"
-msgstr "Livres PDF"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:923
-msgid "Comics"
-msgstr "Bande Dessinées"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:924
-msgid "Archives"
-msgstr "Archives"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:959
-msgid "Failed to read metadata"
-msgstr "Impossible de lire les métadonnées"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:960
-msgid "Failed to read metadata from the following"
-msgstr "Impossible de lire les métadonnées à partir de"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:979
-msgid ""
-"The selected books will be permanently deleted and the files removed "
-"from your computer. Are you sure?"
-msgstr ""
-"Les livres sélectionnés vont être supprimés définitivement et les "
-"fichiers seront supprimés de votre ordinateur. Etes-vous sûr ?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1006
-msgid "Deleting books from device."
-msgstr "Suppression des livres dans l'appareil"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1038
-msgid "Cannot download metadata"
-msgstr "Impossible de télécharger les métadonnées"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1039
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1096
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1129
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1154
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1266
-msgid "No books selected"
-msgstr "Aucun livre sélectionné"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1054
-msgid "social metadata"
-msgstr "Métadonnées sociales"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "covers"
-msgstr "couvertures"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1056
-msgid "metadata"
-msgstr "métadonnées"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1058
-msgid "Downloading %s for %d book(s)"
-msgstr "Télécharge les livres %s sur %d"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1080
-msgid "Failed to download some metadata"
-msgstr "Le téléchargement d'une partie des métadonnées a échoué"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1081
-msgid "Failed to download metadata for the following:"
-msgstr "Le téléchargement des métadonnées a échoué pour :"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1084
-msgid "Failed to download metadata:"
-msgstr "Le téléchargement des métadonnées a échoué:"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1095
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1128
-msgid "Cannot edit metadata"
-msgstr "Impossible d'éditer les métadonnées"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1153
-msgid "Cannot save to disk"
-msgstr "Impossible de sauvegarder sur le disque"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1156
-msgid "Choose destination directory"
-msgstr "Choisir le répertoire de destination"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1183
-msgid "Error while saving"
-msgstr "Erreur pendant la sauvegarde"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1184
-msgid "There was an error while saving."
-msgstr "Il y a eu une erreur lors de la sauvegarde."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1191
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1192
-msgid "Could not save some books"
-msgstr "Impossible de sauvegarder certains livres"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1193
-msgid "Click the show details button to see which ones."
-msgstr "Cliquer le bouton afficher les détails pour voir lesquels."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1212
-msgid "Fetching news from "
-msgstr "Récupération des News de "
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1225
-msgid " fetched."
-msgstr " récupéré."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1265
-msgid "Cannot convert"
-msgstr "Conversion impossible"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1294
-msgid "Starting conversion of %d book(s)"
-msgstr "Démarrer la conversion de %d livre(s)"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1424
-msgid "No book selected"
-msgstr "Aucun livre sélectionné"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1405
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1455
-msgid "Cannot view"
-msgstr "Impossible de visualiser"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1423
-msgid "Cannot open folder"
-msgstr "Impossible d'ouvrir le répertoire"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1440
-msgid "Multiple Books Selected"
-msgstr "Plusieurs livres sélectionnés"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1441
-msgid ""
-"You are attempting to open %d books. Opening too many books at once can be "
-"slow and have a negative effect on the responsiveness of your computer. Once "
-"started the process cannot be stopped until complete. Do you wish to "
-"continue?"
-msgstr ""
-"Vous essayer d'ouvrir %d livres. Ouvrir trop de livre en même temps peut "
-"provoquer des ralentissements et avoir des effets négatifs sur les temps de "
-"réponses de l'ordinateur. Une fois démarré le processus ne peut pas être "
-"arrêté avant la fin. Voulez-vous continuer ?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1456
-msgid "%s has no available formats."
-msgstr "%s n'a pas de format disponible."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1497
-msgid "Cannot configure"
-msgstr "Configuration impossible"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1498
-msgid "Cannot configure while there are running jobs."
-msgstr "Impossible de configurer pendant que des travaux sont en cours."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1541
-msgid "No detailed info available"
-msgstr "Pas d'information détaillée disponible"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1542
-msgid "No detailed information is available for books on the device."
-msgstr ""
-"Pas d'information détaillée disponible pour les livres dans l'appareil."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1594
-msgid "Error talking to device"
-msgstr "Erreur pendant la communication avec le lecteur électronique"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1595
-msgid ""
-"There was a temporary error talking to the device. Please unplug and "
-"reconnect the device and or reboot."
-msgstr ""
-"Une erreur temporaire s'est déclenchée pendant la communication avec le "
-"lecteur électronique. Veuillez déconnecter et reconnecter le lecteur "
-"électronique et redémarrer."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1618
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1636
-msgid "Conversion Error"
-msgstr "Erreur lors de la conversion"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1619
-msgid ""
-"Could not convert: %s
It is a DRMed book. You must "
-"first remove the DRM using third party tools."
-msgstr ""
-"
Impossible de convertir : %s
C'est un livre avec DRM. Vous devez d'abord enlever les DRM avec des outils "
-"tiers."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1637
-msgid "Failed"
-msgstr "Échoué"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1665
-msgid "Invalid library location"
-msgstr "Emplacement de la librairie invalide"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1666
-msgid "Could not access %s. Using %s as the library."
-msgstr "Impossible d'accéder à %s. Utilise %s comme librairie."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1714
-msgid ""
-"is the result of the efforts of many volunteers from all over the world. If "
-"you find it useful, please consider donating to support its development."
-msgstr ""
-"est le résultat d'efforts de beaucoup de volontaires partout dans le monde. "
-"Si vous le trouvez utile, pensez à donner afin de supporter son "
-"développement."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1739
-msgid "There are active jobs. Are you sure you want to quit?"
-msgstr "Il y a des travaux actifs. Voulez-vous vraiment finir ?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1742
-msgid ""
-" is communicating with the device!
\n"
-" Quitting may cause corruption on the device.
\n"
-" Are you sure you want to quit?"
-msgstr ""
-" communique avec l'appareil!
\n"
-" Quitter peut provoquer des corruptions dans "
-"l'appareil.
\n"
-" Êtes-vous sûr de vouloir quitter ?"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1746
-msgid "WARNING: Active jobs"
-msgstr "ATTENTION: Travaux actifs"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1798
-msgid ""
-"will keep running in the system tray. To close it, choose Quit in the "
-"context menu of the system tray."
-msgstr ""
-"continuera à tourner dans la zone de notification. Pour le fermer, choisir "
-"Quitter dans le menu contextuel de la zone de notification."
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1817
-msgid ""
-"Latest version: %s"
-msgstr ""
-"Dernière version: %s"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1825
-msgid "Update available"
-msgstr "Mise à jour disponible"
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1826
-msgid ""
-"%s has been updated to version %s. See the new features. Visit the download page?"
-msgstr ""
-
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1844
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:25
msgid "Use the library located at the specified path."
msgstr "Utiliser la librairie présente dans le répertoire spécifié."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1846
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:27
msgid "Start minimized to system tray."
msgstr "Démarrer en mode minimisé dans la zone de notification."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1848
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:29
msgid "Log debugging information to console"
msgstr "Loggue les informations de débogage dans la console"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1850
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:31
msgid "Do not check for updates"
msgstr "Ne pas vérifier les mises à jour"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1898
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:79
msgid "If you are sure it is not running"
msgstr "Si vous êtes sûr qu'il n'est pas démarré"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1900
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:81
msgid "Cannot Start "
msgstr "Impossible de lancer "
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1901
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:82
msgid "%s is already running."
msgstr "%s est déjà démarré."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1904
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:85
msgid "may be running in the system tray, in the"
msgstr "peut être démarré dans la zone de notification, dans la"
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1906
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:87
msgid "upper right region of the screen."
msgstr "région en haut et à droite de l'écran."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1908
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:89
msgid "lower right region of the screen."
msgstr "région en bas et à droite de l'écran."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1911
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:92
msgid "try rebooting your computer."
msgstr "Essayer de redémarrer l'ordinateur."
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1913
-#: /home/kovid/work/calibre/src/calibre/gui2/main.py:1925
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:94
+#: /home/kovid/work/calibre/src/calibre/gui2/main.py:106
msgid "try deleting the file"
msgstr "Essayer de supprimer le fichier"
@@ -6381,6 +5910,11 @@ msgstr "E"
msgid "Send to device"
msgstr "Envoyer au lecteur"
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:354
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:304
+msgid "Save to disk"
+msgstr "Sauvegarder sur le disque"
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:355
msgid "S"
msgstr "S"
@@ -6401,6 +5935,11 @@ msgstr "Convertir des ebooks"
msgid "C"
msgstr "C"
+#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:360
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:314
+msgid "View"
+msgstr "Visualiser"
+
#: /home/kovid/work/calibre/src/calibre/gui2/main_ui.py:361
msgid "V"
msgstr "V"
@@ -6507,17 +6046,17 @@ msgid "Publishers"
msgstr "Editeurs"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:63
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:186
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:182
msgid "Convert book %d of %d (%s)"
msgstr "Convertir le livre %d / %d (%s)"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:90
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:206
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:202
msgid "Could not convert some books"
msgstr "Impossible de convertir certains livres"
#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:91
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:207
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:203
msgid ""
"Could not convert %d of %d books, because no suitable source format was "
"found."
@@ -6525,23 +6064,23 @@ msgstr ""
"Impossible de convertir %d sur %d livres, car aucun format convenable pour "
"la source n'a été trouvé."
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:124
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:120
msgid "Queueing books for bulk conversion"
msgstr "Mise en file d'attente des livres pour la conversion par lot"
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:185
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:181
msgid "Queueing "
msgstr "Mise en file d'attente "
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:241
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:237
msgid "Fetch news from "
msgstr "Récupérer des News de "
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:252
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:248
msgid "Convert existing"
msgstr "Conversion existante"
-#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:253
+#: /home/kovid/work/calibre/src/calibre/gui2/tools.py:249
msgid ""
"The following books have already been converted to %s format. Do you wish to "
"reconvert them?"
@@ -6549,6 +6088,472 @@ msgstr ""
"Les fichiers suivants ont déjà été convertis au format %s. Souhaitez-vous "
"les reconvertir ?"
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:63
+msgid "Save single format to disk..."
+msgstr "Sauvegarder un seul format vers le disque..."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:142
+msgid "Search (For Advanced Search click the button to the left)"
+msgstr ""
+"Recherche (pour une recherche avancée cliquer sur le bouton à gauche)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:159
+msgid "Error communicating with device"
+msgstr "Erreur pendant la communication avec le lecteur électronique"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:176
+msgid "&Restore"
+msgstr "&Montrer"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:178
+msgid "&Donate to support calibre"
+msgstr "&Donner pour supporter calibre"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:183
+msgid "&Restart"
+msgstr "&Redémarrer"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:222
+msgid "
For help see the: User Manual
"
+msgstr ""
+"
Pour l'aider, consulter le Manuel Utilisateur
"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:224
+msgid "%s: %s by Kovid Goyal %%(version)s
%%(device)s
"
+msgstr "%s: %s par Kovid Goyal %%(version)s
%%(device)s"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:247
+msgid "Edit metadata individually"
+msgstr "Editer les métadonnées individuellement"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:249
+msgid "Edit metadata in bulk"
+msgstr "Editer les métadonnées par lot"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:251
+msgid "Download metadata and covers"
+msgstr "Télécharger les métadonnées et les couvertures"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:252
+msgid "Download only metadata"
+msgstr "Télécharger seulement les métadonnées"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:253
+msgid "Download only covers"
+msgstr "Télécharger seulement les couvertures"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:254
+msgid "Download only social metadata"
+msgstr "Télécharger uniquement les métadonnées sociales"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:257
+msgid "Add books from a single directory"
+msgstr "Ajouter des livres à partir d'un répertoire"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:258
+msgid ""
+"Add books from directories, including sub-directories (One book per "
+"directory, assumes every ebook file is the same book in a different format)"
+msgstr ""
+"Ajouter des livres par répertoires et sous-répertoires. (Un livre par "
+"répertoire, chaque fichier représente le même livre dans un format différent)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:261
+msgid ""
+"Add books from directories, including sub directories (Multiple books per "
+"directory, assumes every ebook file is a different book)"
+msgstr ""
+"Ajouter des livres par répertoires et sous-répertoires. (Plusieurs livres "
+"par répertoire, chaque fichier est un livre différent)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:264
+msgid "Add Empty book. (Book entry with no formats)"
+msgstr "Ajouter un livre vide. (Une entrée sans aucun format)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:305
+msgid "Save to disk in a single directory"
+msgstr "Sauvegarder sur le disque dans un seul répertoire"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:306
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1518
+msgid "Save only %s format to disk"
+msgstr "Sauvegarder seulement le format %s vers le disque"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:315
+msgid "View specific format"
+msgstr "Visualiser le format spécifique"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:341
+msgid "Convert individually"
+msgstr "Convertir individuellement"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:342
+msgid "Bulk convert"
+msgstr "Convertir par lot"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:357
+msgid "Run welcome wizard"
+msgstr "Démarrer l'assistant de bienvenue"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:391
+msgid "Similar books..."
+msgstr "Livres similaires..."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:451
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:452
+msgid "Bad database location"
+msgstr "Mauvais emplacement pour la base"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:454
+#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:516
+msgid "Calibre Library"
+msgstr "Librairie calibre"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:464
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1661
+msgid "Choose a location for your ebook library."
+msgstr "Choisir un emplacement pour votre librairie d'ebook"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:656
+msgid "Browse by covers"
+msgstr "Navigation par couvertures"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:773
+msgid "Device: "
+msgstr "Appareil: "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:775
+msgid " detected."
+msgstr " detecté."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:798
+msgid "Connected "
+msgstr "Connecté: "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:810
+msgid "Device database corrupted"
+msgstr "Base de données d'appareils corrompue"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:811
+msgid ""
+"\n"
+" The database of books on the reader is corrupted. Try the "
+"following:\n"
+"
\n"
+" - 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.
\n"
+" - 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.
\n"
+"
\n"
+" "
+msgstr ""
+"\n"
+" La base de données sur le lecteur est corrompue. Essayer "
+"ceci:\n"
+"
\n"
+" - Débrancher le lecteur. Attendre qu'il regénère la base "
+"de données (c-à-d attendre jusqu'à ce qui soit prêt à être utiliser). "
+"Brancher le. Maintenant, cela devrait fonctionner avec %(app)s. Si cela ne "
+"fonctionne pas, essayer l'étape suivante.
\n"
+" - Quitter %(app)s. Trouver le ficher media.xml dans la "
+"mémoire principale du lecteur. Supprimer le. Débrancher le lecteur. Attendre "
+"qu'il regénère la base de données. Le reconnecter et démarrer %(app)s.
\n"
+"
\n"
+" "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:913
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:956
+msgid "Uploading books to device."
+msgstr "Téléchargement des livres vers l'appareil."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:922
+msgid "EPUB Books"
+msgstr "Livres EPUB"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:923
+msgid "LRF Books"
+msgstr "Livres LRF"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:924
+msgid "HTML Books"
+msgstr "Livres HTML"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:925
+msgid "LIT Books"
+msgstr "Livres LIT"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:926
+msgid "MOBI Books"
+msgstr "Livres MOBI"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:927
+msgid "Text books"
+msgstr "Livres Texte"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:928
+msgid "PDF Books"
+msgstr "Livres PDF"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:929
+msgid "Comics"
+msgstr "Bande Dessinées"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:930
+msgid "Archives"
+msgstr "Archives"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:965
+msgid "Failed to read metadata"
+msgstr "Impossible de lire les métadonnées"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:966
+msgid "Failed to read metadata from the following"
+msgstr "Impossible de lire les métadonnées à partir de"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:985
+msgid ""
+"The selected books will be permanently deleted and the files removed "
+"from your computer. Are you sure?"
+msgstr ""
+"Les livres sélectionnés vont être supprimés définitivement et les "
+"fichiers seront supprimés de votre ordinateur. Etes-vous sûr ?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1012
+msgid "Deleting books from device."
+msgstr "Suppression des livres dans l'appareil"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1043
+msgid "Cannot download metadata"
+msgstr "Impossible de télécharger les métadonnées"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1044
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1101
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1134
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1159
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1271
+msgid "No books selected"
+msgstr "Aucun livre sélectionné"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1059
+msgid "social metadata"
+msgstr "Métadonnées sociales"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "covers"
+msgstr "couvertures"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1061
+msgid "metadata"
+msgstr "métadonnées"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1063
+msgid "Downloading %s for %d book(s)"
+msgstr "Télécharge les livres %s sur %d"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1085
+msgid "Failed to download some metadata"
+msgstr "Le téléchargement d'une partie des métadonnées a échoué"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1086
+msgid "Failed to download metadata for the following:"
+msgstr "Le téléchargement des métadonnées a échoué pour :"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1089
+msgid "Failed to download metadata:"
+msgstr "Le téléchargement des métadonnées a échoué:"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1100
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1133
+msgid "Cannot edit metadata"
+msgstr "Impossible d'éditer les métadonnées"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1158
+msgid "Cannot save to disk"
+msgstr "Impossible de sauvegarder sur le disque"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1161
+msgid "Choose destination directory"
+msgstr "Choisir le répertoire de destination"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1188
+msgid "Error while saving"
+msgstr "Erreur pendant la sauvegarde"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1189
+msgid "There was an error while saving."
+msgstr "Il y a eu une erreur lors de la sauvegarde."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1196
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1197
+msgid "Could not save some books"
+msgstr "Impossible de sauvegarder certains livres"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1198
+msgid "Click the show details button to see which ones."
+msgstr "Cliquer le bouton afficher les détails pour voir lesquels."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1217
+msgid "Fetching news from "
+msgstr "Récupération des News de "
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1230
+msgid " fetched."
+msgstr " récupéré."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1270
+msgid "Cannot convert"
+msgstr "Conversion impossible"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1299
+msgid "Starting conversion of %d book(s)"
+msgstr "Démarrer la conversion de %d livre(s)"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1429
+msgid "No book selected"
+msgstr "Aucun livre sélectionné"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1410
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1460
+msgid "Cannot view"
+msgstr "Impossible de visualiser"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1428
+msgid "Cannot open folder"
+msgstr "Impossible d'ouvrir le répertoire"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1445
+msgid "Multiple Books Selected"
+msgstr "Plusieurs livres sélectionnés"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1446
+msgid ""
+"You are attempting to open %d books. Opening too many books at once can be "
+"slow and have a negative effect on the responsiveness of your computer. Once "
+"started the process cannot be stopped until complete. Do you wish to "
+"continue?"
+msgstr ""
+"Vous essayer d'ouvrir %d livres. Ouvrir trop de livre en même temps peut "
+"provoquer des ralentissements et avoir des effets négatifs sur les temps de "
+"réponses de l'ordinateur. Une fois démarré le processus ne peut pas être "
+"arrêté avant la fin. Voulez-vous continuer ?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1461
+msgid "%s has no available formats."
+msgstr "%s n'a pas de format disponible."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1502
+msgid "Cannot configure"
+msgstr "Configuration impossible"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1503
+msgid "Cannot configure while there are running jobs."
+msgstr "Impossible de configurer pendant que des travaux sont en cours."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1546
+msgid "No detailed info available"
+msgstr "Pas d'information détaillée disponible"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1547
+msgid "No detailed information is available for books on the device."
+msgstr ""
+"Pas d'information détaillée disponible pour les livres dans l'appareil."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1599
+msgid "Error talking to device"
+msgstr "Erreur pendant la communication avec le lecteur électronique"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1600
+msgid ""
+"There was a temporary error talking to the device. Please unplug and "
+"reconnect the device and or reboot."
+msgstr ""
+"Une erreur temporaire s'est déclenchée pendant la communication avec le "
+"lecteur électronique. Veuillez déconnecter et reconnecter le lecteur "
+"électronique et redémarrer."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1623
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1641
+msgid "Conversion Error"
+msgstr "Erreur lors de la conversion"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1624
+msgid ""
+"Could not convert: %s
It is a DRMed book. You must "
+"first remove the DRM using third party tools."
+msgstr ""
+"
Impossible de convertir : %s
C'est un livre avec DRM. Vous devez d'abord enlever les DRM avec des outils "
+"tiers."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1642
+msgid "Failed"
+msgstr "Échoué"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1670
+msgid "Invalid library location"
+msgstr "Emplacement de la librairie invalide"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1671
+msgid "Could not access %s. Using %s as the library."
+msgstr "Impossible d'accéder à %s. Utilise %s comme librairie."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1719
+msgid ""
+"is the result of the efforts of many volunteers from all over the world. If "
+"you find it useful, please consider donating to support its development."
+msgstr ""
+"est le résultat d'efforts de beaucoup de volontaires partout dans le monde. "
+"Si vous le trouvez utile, pensez à donner afin de supporter son "
+"développement."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1744
+msgid "There are active jobs. Are you sure you want to quit?"
+msgstr "Il y a des travaux actifs. Voulez-vous vraiment finir ?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1747
+msgid ""
+" is communicating with the device!
\n"
+" Quitting may cause corruption on the device.
\n"
+" Are you sure you want to quit?"
+msgstr ""
+" communique avec l'appareil!
\n"
+" Quitter peut provoquer des corruptions dans "
+"l'appareil.
\n"
+" Êtes-vous sûr de vouloir quitter ?"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1751
+msgid "WARNING: Active jobs"
+msgstr "ATTENTION: Travaux actifs"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1803
+msgid ""
+"will keep running in the system tray. To close it, choose Quit in the "
+"context menu of the system tray."
+msgstr ""
+"continuera à tourner dans la zone de notification. Pour le fermer, choisir "
+"Quitter dans le menu contextuel de la zone de notification."
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1822
+msgid ""
+"Latest version: %s"
+msgstr ""
+"Dernière version: %s"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1830
+msgid "Update available"
+msgstr "Mise à jour disponible"
+
+#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1831
+msgid ""
+"%s has been updated to version %s. See the new features. Visit the download page?"
+msgstr ""
+
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/bookmarkmanager.py:43
msgid "Edit bookmark"
msgstr "Editer le signet"
@@ -7081,20 +7086,14 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:49
msgid ""
"
Demo videos
Videos demonstrating the various features of calibre are "
-"available online."
+"available online."
msgstr ""
-"Vidéos de démonstration
Les vidéos démontrant les diverses "
-"fonctionnalités de calibre sont disponibles en ligne."
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/finish_ui.py:50
msgid ""
-"User Manual
A User Manual is also available online."
+"User Manual
A User Manual is also available online."
msgstr ""
-"Manuel Utilisateur
Un Manuel Utilisateur est aussi disponible en ligne."
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/kindle_ui.py:44
msgid ""
@@ -7640,27 +7639,27 @@ msgstr ""
"\n"
"Pour une aide sur commande précise: %%prog commande --help\n"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1624
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1625
msgid "Migrating old database to ebook library in %s
"
msgstr "Migre l'ancienne base vers la librairie dans %s
"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1653
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1654
msgid "Copying %s"
msgstr "Copie %s"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1670
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1671
msgid "Compacting database"
msgstr "Compacte la base"
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1763
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1764
msgid "Checking SQL integrity..."
msgstr "Vérifie l'intégrité SQL..."
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1800
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1801
msgid "Checking for missing files."
msgstr "Vérifie si des fichiers sont manquants."
-#: /home/kovid/work/calibre/src/calibre/library/database2.py:1824
+#: /home/kovid/work/calibre/src/calibre/library/database2.py:1823
msgid "Checked id"
msgstr "Id vérifié"
@@ -7799,7 +7798,7 @@ msgid "Password to access your calibre library. Username is "
msgstr ""
"Mot de passe pour accéder à la librairie calibre. Le nom d'utilisateur est "
-#: /home/kovid/work/calibre/src/calibre/library/server.py:860
+#: /home/kovid/work/calibre/src/calibre/library/server.py:856
msgid ""
"[options]\n"
"\n"
@@ -7882,47 +7881,47 @@ msgstr "Terminé"
msgid "Working..."
msgstr "Traitement en cours..."
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:93
msgid "Brazilian Portuguese"
msgstr "Portugais Brésilien"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:94
msgid "English (UK)"
msgstr "Anglais (UK)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:95
msgid "Simplified Chinese"
msgstr "Chinois Simplifié"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:96
msgid "Chinese (HK)"
msgstr "Chinois (HK)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:97
msgid "Traditional Chinese"
msgstr "Chinois Traditionnel"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:98
msgid "English"
msgstr "Anglais"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:99
msgid "English (AU)"
msgstr "Anglais (AU)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:100
msgid "English (CA)"
msgstr "Anglais (CA)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:101
msgid "English (IND)"
msgstr "Anglais (IND)"
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:102
msgid "Dutch (NL)"
msgstr ""
-#: /home/kovid/work/calibre/src/calibre/utils/localization.py:104
+#: /home/kovid/work/calibre/src/calibre/utils/localization.py:103
msgid "Dutch (BE)"
msgstr ""
@@ -8073,7 +8072,7 @@ msgstr "Planifié"
msgid "Custom"
msgstr "Client"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:458
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:457
msgid ""
"%prog URL\n"
"\n"
@@ -8083,12 +8082,12 @@ msgstr ""
"\n"
"Où URL est par exemple http://google.com"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:461
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:460
msgid "Base directory into which URL is saved. Default is %default"
msgstr ""
"Répertoire de base dans lequel l'URL est sauvegardée. Par défaut: %default"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:464
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:463
msgid ""
"Timeout in seconds to wait for a response from the server. Default: %default "
"s"
@@ -8096,7 +8095,7 @@ msgstr ""
"Timeout en secondes d'attente pour la réponse du serveur. Par défaut: "
"%default s"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:467
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:466
msgid ""
"Maximum number of levels to recurse i.e. depth of links to follow. Default "
"%default"
@@ -8104,7 +8103,7 @@ msgstr ""
"Nombre maximum de niveaux de récursivité c-à-d le niveau de profondeur de "
"liens à suivre. Par défaut : %default"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:470
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:469
msgid ""
"The maximum number of files to download. This only applies to files from tags. Default is %default"
@@ -8112,7 +8111,7 @@ msgstr ""
"Nombre maximum de fichiers à télécharger. Ceci ne sera valable que pour pour "
"les fichiers à partir des étiquettes .Par défaut: %default"
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:472
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
msgid ""
"Minimum interval in seconds between consecutive fetches. Default is %default "
"s"
@@ -8120,7 +8119,7 @@ msgstr ""
"Intervalle minimal entre deux téléchargements, en secondes. %default s par "
"défaut."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:474
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
msgid ""
"The character encoding for the websites you are trying to download. The "
"default is to try and guess the encoding."
@@ -8128,7 +8127,7 @@ msgstr ""
"Encodage des caractères pour les sites web que vous essayer de télécharger. "
"Par défaut, essaie et trouve l'encodage."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:476
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
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 "
@@ -8139,7 +8138,7 @@ msgstr ""
"correspondra à quelque expression que ce soit, sera suivi. Par défaut, tous "
"les liens sont suivis."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:478
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
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 "
@@ -8154,11 +8153,11 @@ msgstr ""
"regexp sont spécifiés ensemble, alors --filter-regexp sera appliqué en "
"premier."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:479
msgid "Do not download CSS stylesheets."
msgstr "Ne pas télécharger les feuilles de style CSS."
-#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:481
+#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:480
msgid "Show detailed output information. Useful for debugging"
msgstr "Affiche des informations détaillées. Utile pour le débogage"
@@ -9231,6 +9230,13 @@ msgstr "Affiche des informations détaillées. Utile pour le débogage"
#~ msgid "&Title for generated TOC"
#~ msgstr "&Titre pour la TDM générée"
+#~ msgid ""
+#~ "See the User Manual for more help"
+#~ msgstr ""
+#~ "Voir le Manuel Utilisateur pour une aide complémentaire"
+
#~ msgid "Adding books..."
#~ msgstr "Ajoute les livres..."
@@ -10109,6 +10115,22 @@ msgstr "Affiche des informations détaillées. Utile pour le débogage"
#~ msgid "Default"
#~ msgstr "Par défaut"
+#~ msgid ""
+#~ "Demo videos
Videos demonstrating the various features of calibre are "
+#~ "available online."
+#~ msgstr ""
+#~ "Vidéos de démonstration
Les vidéos démontrant les diverses "
+#~ "fonctionnalités de calibre sont disponibles en ligne."
+
+#~ msgid ""
+#~ "User Manual
A User Manual is also available online."
+#~ msgstr ""
+#~ "Manuel Utilisateur
Un Manuel Utilisateur est aussi disponible en ligne."
+
#~ msgid "Portuguese"
#~ msgstr "Portugais"
@@ -10189,3 +10211,22 @@ msgstr "Affiche des informations détaillées. Utile pour le débogage"
#~ "l'expression régulière sur quelques exemples de noms de fichiers. Les noms "
#~ "de groupes pour les différentes entrées de métadonnées sont documentés dans "
#~ "les bulles d'aide.