Sync to trunk.

This commit is contained in:
John Schember 2009-08-07 20:36:28 -04:00
commit 4164b12cec
58 changed files with 6950 additions and 6594 deletions

View File

@ -387,7 +387,7 @@ def entity_to_unicode(match, exceptions=[], encoding='cp1252'):
except KeyError:
return '&'+ent+';'
_ent_pat = re.compile(r'&(\S+);')
_ent_pat = re.compile(r'&(\S+?);')
def prepare_string_for_xml(raw, attribute=False):
raw = _ent_pat.sub(entity_to_unicode, raw)

View File

@ -76,7 +76,9 @@ class EPUBMetadataReader(MetadataReaderPlugin):
description = _('Read metadata from %s files')%'EPUB'
def get_metadata(self, stream, ftype):
from calibre.ebooks.metadata.epub import get_metadata
from calibre.ebooks.metadata.epub import get_metadata, get_quick_metadata
if self.quick:
return get_quick_metadata(stream)
return get_metadata(stream)
class FB2MetadataReader(MetadataReaderPlugin):

View File

@ -23,7 +23,7 @@ class CYBOOKG3(USBMS):
# Ordered list of supported formats
# Be sure these have an entry in calibre.devices.mime
FORMATS = ['mobi', 'prc', 'html', 'pdf', 'rtf', 'txt']
FORMATS = ['epub', 'mobi', 'prc', 'html', 'pdf', 'rtf', 'txt']
VENDOR_ID = [0x0bda, 0x3034]
PRODUCT_ID = [0x0703, 0x1795]

View File

@ -84,7 +84,7 @@ class PRS505(CLI, Device):
self._card_b_prefix = None
def get_device_information(self, end_session=True):
self.report_progress(1.0, _('Get device information...'))
#self.report_progress(1.0, _('Get device information...'))
return (self.__class__.__name__, '', '', '')
def books(self, oncard=None, end_session=True):

View File

@ -39,6 +39,10 @@ options. the available options depend on the input and output file types. \
To get help on them specify the input and output file and then use the -h \
option.
You can also get detailed help on all the options any input/output pair \
of formats supports by specifying the -h flag after the input and output \
filenames.
For full documentation of the conversion system see
''') + 'http://calibre.kovidgoyal.net/user_manual/conversion.html'
@ -53,7 +57,8 @@ def check_command_line_options(parser, args, log):
raise SystemExit(1)
input = os.path.abspath(args[1])
if not input.endswith('.recipe') and not os.access(input, os.R_OK):
if not input.endswith('.recipe') and not os.access(input, os.R_OK) and not \
('-h' in args or '--help' in args):
log.error('Cannot read from', input)
raise SystemExit(1)

View File

@ -555,20 +555,8 @@ OptionRecommendation(name='language',
rec.recommended_value = val
rec.level = level
def read_user_metadata(self):
'''
Read all metadata specified by the user. Command line options override
metadata from a specified OPF file.
'''
from calibre.ebooks.metadata import MetaInformation, string_to_authors
from calibre.ebooks.metadata.opf2 import OPF
mi = MetaInformation(None, [])
if self.opts.read_metadata_from_opf is not None:
self.opts.read_metadata_from_opf = os.path.abspath(
self.opts.read_metadata_from_opf)
opf = OPF(open(self.opts.read_metadata_from_opf, 'rb'),
os.path.dirname(self.opts.read_metadata_from_opf))
mi = MetaInformation(opf)
def opts_to_mi(self, mi):
from calibre.ebooks.metadata import string_to_authors
for x in self.metadata_option_names:
val = getattr(self.opts, x, None)
if val is not None:
@ -579,6 +567,23 @@ OptionRecommendation(name='language',
elif x in ('rating', 'series_index'):
val = float(val)
setattr(mi, x, val)
def read_user_metadata(self):
'''
Read all metadata specified by the user. Command line options override
metadata from a specified OPF file.
'''
from calibre.ebooks.metadata import MetaInformation
from calibre.ebooks.metadata.opf2 import OPF
mi = MetaInformation(None, [])
if self.opts.read_metadata_from_opf is not None:
self.opts.read_metadata_from_opf = os.path.abspath(
self.opts.read_metadata_from_opf)
opf = OPF(open(self.opts.read_metadata_from_opf, 'rb'),
os.path.dirname(self.opts.read_metadata_from_opf))
mi = MetaInformation(opf)
self.opts_to_mi(mi)
if mi.cover:
mi.cover_data = ('', open(mi.cover, 'rb').read())
mi.cover = None
@ -649,6 +654,8 @@ OptionRecommendation(name='language',
self.oeb = self.input_plugin(stream, self.opts,
self.input_fmt, self.log,
accelerators, tdir)
if self.input_fmt == 'recipe':
self.opts_to_mi(self.user_metadata)
if self.opts.debug_input is not None:
self.log('Debug input called, aborting the rest of the pipeline.')
return

View File

@ -77,6 +77,10 @@ class EPUBOutput(OutputFormatPlugin):
'for Adobe Digital Editions.')
),
OptionRecommendation(name='no_default_epub_cover', recommended_value=False,
help=_('Normally, if the input file ahs no cover and you don\'t'
' specify one, a default cover is generated with the title, '
'authors, etc. This option disables the generation of this cover.')),
])
@ -188,9 +192,11 @@ class EPUBOutput(OutputFormatPlugin):
'''
Create a generic cover for books that dont have a cover
'''
if self.opts.no_default_epub_cover:
return None
try:
from calibre.gui2 import images_rc # Needed for access to logo
from PyQt4.Qt import QApplication, QFile, QIODevice
from calibre.gui2 import images_rc, is_ok_to_use_qt # Needed for access to logo
from PyQt4.Qt import QFile, QIODevice
except:
return None
from calibre.ebooks.metadata import authors_to_string
@ -199,7 +205,7 @@ class EPUBOutput(OutputFormatPlugin):
title = unicode(m.title[0])
a = [unicode(x) for x in m.creator if x.role == 'aut']
author = authors_to_string(a)
if QApplication.instance() is None: QApplication([])
if not is_ok_to_use_qt(): return
f = QFile(':/library')
f.open(QIODevice.ReadOnly)
img_data = str(f.readAll())

View File

@ -779,7 +779,7 @@ class TableOfContents(object):
class TocLabel(object):
def __init__(self, label, textBlock):
self.label = escape(re.sub(r'&(\S+);', entity_to_unicode, label))
self.label = escape(re.sub(r'&(\S+?);', entity_to_unicode, label))
self.textBlock = textBlock

View File

@ -41,7 +41,7 @@ def title_sort(title):
match = _title_pat.search(title)
if match:
prep = match.group(1)
title = title.replace(prep, '') + ', ' + prep
title = title[len(prep):] + ', ' + prep
return title.strip()
coding = zip(

View File

@ -130,6 +130,9 @@ def get_metadata(stream, extract_cover=True):
traceback.print_exc()
return mi
def get_quick_metadata(stream):
return get_metadata(stream, False)
def set_metadata(stream, mi):
stream.seek(0)
reader = OCFZipReader(stream, root=os.getcwdu())

View File

@ -22,6 +22,11 @@ from calibre.utils.podofo import get_metadata as podofo_get_metadata, \
from calibre.utils.poppler import get_metadata as get_metadata_poppler, NotAvailable
def get_quick_metadata(stream):
try:
return get_metadata_poppler(stream, False)
except NotAvailable:
pass
return get_metadata_pypdf(stream)
raw = stream.read()
mi = get_metadata_quick(raw)

View File

@ -20,8 +20,10 @@ def MBP(name): return '{%s}%s' % (MBP_NS, name)
MOBI_NSMAP = {None: XHTML_NS, 'mbp': MBP_NS}
HEADER_TAGS = set(['h1', 'h2', 'h3', 'h4', 'h5', 'h6'])
NESTABLE_TAGS = set(['ol', 'ul', 'li', 'table', 'tr', 'td', 'th'])
TABLE_TAGS = set(['table', 'tr', 'td', 'th'])
# GR: Added 'caption' to both sets
NESTABLE_TAGS = set(['ol', 'ul', 'li', 'table', 'tr', 'td', 'th', 'caption'])
TABLE_TAGS = set(['table', 'tr', 'td', 'th', 'caption'])
SPECIAL_TAGS = set(['hr', 'br'])
CONTENT_TAGS = set(['img', 'hr', 'br'])
@ -357,8 +359,10 @@ class MobiMLizer(object):
tag = 'td'
if tag in TABLE_TAGS and self.ignore_tables:
tag = 'span' if tag == 'td' else 'div'
# GR: Added 'width', 'border' and 'scope'
if tag in TABLE_TAGS:
for attr in ('rowspan', 'colspan'):
for attr in ('rowspan', 'colspan','width','border','scope'):
if attr in elem.attrib:
istate.attrib[attr] = elem.attrib[attr]
text = None

View File

@ -914,8 +914,12 @@ class Manifest(object):
p.remove(a)
if a.tail:
if idx <= 0:
if p.text is None:
p.text = ''
p.text += a.tail
else:
if p[idx].tail is None:
p[idx].tail = ''
p[idx].tail += a.tail
return data

View File

@ -31,12 +31,35 @@ class TXTInput(InputFormatPlugin):
raise ValueError('This txt file has malformed markup, it cannot be'
'converted by calibre. See http://daringfireball.net/projects/markdown/syntax')
from calibre.customize.ui import plugin_for_input_format
html_input = plugin_for_input_format('html')
for opt in html_input.options:
setattr(options, opt.option.name, opt.recommended_value)
base = os.getcwdu()
if hasattr(stream, 'name'):
base = os.path.dirname(stream.name)
htmlfile = open(os.path.join(base, 'temp_calibre_txt_input_to_html.html'),
'wb')
htmlfile.write(html.encode('utf-8'))
htmlfile.close()
cwd = os.getcwdu()
odi = options.debug_input
options.debug_input = None
oeb = html_input(open(htmlfile.name, 'rb'), options, 'html', log,
{}, cwd)
options.debug_input = odi
os.remove(htmlfile.name)
return oeb
log.debug('Writing html output...')
with open('index.html', 'wb') as index:
index.write(html.encode('utf-8'))
from calibre.ebooks.metadata.meta import get_metadata
log.debug('Retrieving source document metadata...')
stream.seek(0)
mi = get_metadata(stream, 'txt')
manifest = [('index.html', None)]
spine = ['index.html']

View File

@ -17,7 +17,7 @@ def txt_to_markdown(txt, title=''):
md = markdown.Markdown(
extensions=['footnotes', 'tables', 'toc'],
safe_mode=False,)
html = u'<html><head><title>%s</title></head><body>%s</body></html>' % (title,
html = u'<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>%s</title></head><body>%s</body></html>' % (title,
md.convert(txt))
return html

View File

@ -487,6 +487,8 @@ class Application(QApplication):
def is_ok_to_use_qt():
global gui_thread
if islinux and os.environ.get('DISPLAY', None) is None:
return False
if QApplication.instance() is None:
QApplication([])
if gui_thread is None:

View File

@ -17,7 +17,7 @@ class PluginWidget(Widget, Ui_Form):
def __init__(self, parent, get_option, get_help, db=None, book_id=None):
Widget.__init__(self, parent, 'epub_output',
['dont_split_on_page_breaks', 'flow_size']
['dont_split_on_page_breaks', 'flow_size', 'no_default_epub_cover']
)
self.db, self.book_id = db, book_id
self.initialize_options(get_option, get_help, db, book_id)

View File

@ -21,7 +21,7 @@
</property>
</widget>
</item>
<item row="1" column="0">
<item row="2" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>Split files &amp;larger than:</string>
@ -31,7 +31,7 @@
</property>
</widget>
</item>
<item row="1" column="1">
<item row="2" column="1">
<widget class="QSpinBox" name="opt_flow_size">
<property name="suffix">
<string> KB</string>
@ -47,7 +47,7 @@
</property>
</widget>
</item>
<item row="2" column="0">
<item row="3" column="0">
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
@ -60,6 +60,13 @@
</property>
</spacer>
</item>
<item row="1" column="0">
<widget class="QCheckBox" name="opt_no_default_epub_cover">
<property name="text">
<string>No default &amp;cover</string>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>

View File

@ -1525,6 +1525,9 @@ class LibraryDatabase2(LibraryDatabase):
if formats:
for fmt in formats.split(','):
path = self.format_abspath(x['id'], fmt, index_is_id=True)
if prefix != self.library_path:
path = os.path.relpath(path, self.library_path)
path = os.path.join(prefix, path)
x['formats'].append(path)
x['fmt_'+fmt.lower()] = path
x['available_formats'] = [i.upper() for i in formats.split(',')]

View File

@ -3,7 +3,8 @@
__license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
import sys, os, inspect, re
import sys, os, inspect, re, textwrap
from sphinx.builder import StandaloneHTMLBuilder
from sphinx.util import rpartition
from sphinx.util.console import bold
@ -60,9 +61,6 @@ CLI_CMD=r'''
||
.. _$cmd:
||
#def option(opt)
:option:`${opt.get_opt_string() + ((', '+', '.join(opt._short_opts)) if opt._short_opts else '')}`
#end
$cmd
====================================================================
||
@ -81,9 +79,14 @@ $line
#end
#end
||
'''
CLI_GROUPS=r'''
[options]
------------
||
#def option(opt)
:option:`${opt.get_opt_string() + ((', '+', '.join(opt._short_opts)) if opt._short_opts else '')}`
#end
#for title, desc, options in groups
#if title
$title
@ -102,6 +105,49 @@ ${option(opt)}
#end
'''
EBOOK_CONVERT = CLI_CMD + r'''
$groups
'''
CLI_CMD += CLI_GROUPS
def generate_ebook_convert_help():
from calibre.ebooks.conversion.cli import create_option_parser
from calibre.customize.ui import input_format_plugins, output_format_plugins
from calibre.utils.logging import default_log
ans = textwrap.dedent('''
Since the options supported by ebook-convert vary depending on both the
input and the output formats, the various combinations are listed below:
''')
c = 0
sections = []
for ip in input_format_plugins():
for op in output_format_plugins():
c += 1
idr = 'ebook-convert-sec-'+str(c)
title = ip.name + ' to ' + op.name
section = '.. _'+idr+':||||'
section += title+'||'+\
'-------------------------------------------------------'
#ans += ' * :ref:`'+idr+'`\n'
parser, plumber = create_option_parser(['ebook-convert',
'dummyi.'+list(ip.file_types)[0],
'dummyo.'+op.file_type, '-h'], default_log)
groups = [(None, None, parser.option_list)]
for grp in parser.option_groups:
groups.append((grp.title, grp.description, grp.option_list))
template = str(CLI_GROUPS)
template = TextTemplate(template[template.find('||'):])
section += template.generate(groups=groups).render()
sections.append(section)
ans += '||||'+'||||'.join(sections)
return ans
def cli_docs(app):
info = app.builder.info
info(bold('creating CLI documentation...'))
@ -141,7 +187,9 @@ def cli_docs(app):
groups = [(None, None, parser.option_list)]
for grp in parser.option_groups:
groups.append((grp.title, grp.description, grp.option_list))
if cmd == 'ebook-convert':
groups = generate_ebook_convert_help()
templ = TextTemplate(EBOOK_CONVERT)
raw = templ.generate(cmd=cmd, cmdline=cmdline, usage=usage, groups=groups).render()
raw = raw.replace('||', '\n').replace('&lt;', '<').replace('&gt;', '>')
if not os.path.exists(os.path.join('cli', cmd+'.rst')):
@ -200,9 +248,6 @@ def auto_member(dirname, arguments, options, content, lineno,
return list(node)
def setup(app):
app.add_builder(CustomBuilder)
app.add_directive('automember', auto_member, 1, (1, 0, 1))

View File

@ -63,7 +63,8 @@ def check_for_critical_bugs():
shutil.rmtree('.errors')
pofilter = ('pofilter', '-i', '.', '-o', '.errors',
'-t', 'accelerators', '-t', 'escapes', '-t', 'variables',
'-t', 'xmltags', '-t', 'printf')
#'-t', 'xmltags',
'-t', 'printf')
subprocess.check_call(pofilter)
errs = os.listdir('.errors')
if errs:

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-06-10 20:37+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Arabic <ar@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "مجهول"
@ -382,15 +382,15 @@ msgstr "تمكين الملحق المسمى"
msgid "Disable the named plugin"
msgstr "تعطيل الملحق المسمى"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -399,68 +399,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr "John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "الأخبار"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr "يجري تحويل الكتب إلى الجهاز..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
msgstr "يجري حذف الكتب من الجهاز..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -468,24 +447,24 @@ msgstr ""
msgid "Device Interface"
msgstr "واجهة الجهاز"
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr "James Ralston"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -494,10 +473,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -507,67 +486,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr "يجري إحصاء قائمة كتب من الجهاز..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr "Kovid Goyal وJohn Schember"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr "يجري إحصاء معلومات الجهاز..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr "يجري حذف الكتب من الجهاز..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "لا توجد مساحة كافية في الذاكرة الرئيسية"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "لا توجد مساحة كافية في بطاقة التخزين"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr "يجري إرسال الميتاداتا إلى الجهاز..."
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "لم يتمكن من كشف القرص %s. حاول إعادة التشغيل."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "لا توجد مساحة كافية في الذاكرة الرئيسية"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "لا توجد مساحة كافية في بطاقة التخزين"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "الأخبار"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -589,21 +582,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -760,11 +749,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -772,7 +761,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -780,7 +769,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -788,7 +777,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -797,17 +786,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -815,28 +804,28 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
@ -845,11 +834,11 @@ msgstr ""
"عادةً، إذا يوجد قائمة محتويات في الملف المصدر، يتم استخدامه بدلاً من القائمة "
"التي تم إنشاءه آلياً. بهذا الخيار، يتم استخدام القائمة المنشئة آلياً دوماً."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "لا تضف الفصول المكشوفة آلياً إلى قائمة المحتويات."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -857,20 +846,20 @@ msgstr ""
"إذا يتم كشف عدد أقل من هذا بين الفصول فسوف يضيف وصلات إلى قائمة المحتويات. "
"الإفتراضي هو: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -880,7 +869,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -888,66 +877,66 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
"استخدم الغلاف التي تم كشفه في ملف المصدر بدلاً من الغلاف الذي تم تخصيصه."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -955,41 +944,41 @@ msgstr ""
"حذف أول صورة من دخل الكتاب الإلكتروني. هذا يفيد حين تريد استخدام غلاف مختلف "
"من الغلاف المضمون."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -999,86 +988,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "لم يتمكّن من الحصول على كتاب داخل الأرشيف"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1631,7 +1620,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr "الغلاف"
@ -1662,70 +1651,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr "صقحة العنوان"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr "الفهرس"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr "المسرد"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr "شكر وتقدير"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr "ببليوغرافيا"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr "حقوق المؤلف"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr "الإهداء"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr "افتتاحية"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr "قائمة الرسوم"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr "قائمة الجداول"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr "الملاحظات"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr "افتتاحية"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr "النصّ الرئيسي"
@ -2138,25 +2127,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr "تم الحفظ"
@ -6471,11 +6460,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre 0.4.51\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2008-05-24 06:23+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Generated-By: pygettext.py 1.5\n"
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr ""
@ -380,15 +380,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -397,68 +397,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -466,24 +445,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -492,10 +471,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -505,67 +484,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -587,21 +580,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -753,11 +742,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -765,7 +754,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -773,7 +762,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -781,7 +770,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -790,17 +779,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -808,58 +797,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -869,7 +858,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -877,105 +866,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -985,86 +974,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1604,7 +1593,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1635,70 +1624,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2111,25 +2100,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6422,11 +6411,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -10,14 +10,14 @@ msgid ""
msgstr ""
"Project-Id-Version: ca\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-21 15:19+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -25,14 +25,12 @@ msgid "Does absolutely nothing"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -57,8 +55,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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,13 +64,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -135,11 +133,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Desconegut"
@ -383,15 +383,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -400,68 +400,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -469,24 +448,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -495,10 +474,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -508,67 +487,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -590,21 +583,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -756,11 +745,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -768,7 +757,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -776,7 +765,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -784,7 +773,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -793,17 +782,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -811,58 +800,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -872,7 +861,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -880,105 +869,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -988,86 +977,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1612,7 +1601,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1643,70 +1632,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2119,25 +2108,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6442,11 +6431,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-06-16 13:48+0000\n"
"Last-Translator: Plazec <Unknown>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Nedělá vůbec nic"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Nedělá vůbec nic"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Nedělá vůbec nic"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Nedělá vůbec nic"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Neznámý"
@ -404,15 +404,15 @@ msgstr "Aktivovat modul podle jména"
msgid "Disable the named plugin"
msgstr "Deaktivovat modul podle jména"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -421,68 +421,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr "John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Zprávy"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
msgstr "Odstraňuji knihy ze zařízení..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -490,24 +469,24 @@ msgstr ""
msgid "Device Interface"
msgstr "Rozhraní zařízení"
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr "James Ralston"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -516,10 +495,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -529,67 +508,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr "Kovid Goyal and John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr "Zjistit informace o zařízení..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
msgstr "Čtečka nemá v tomto slotu žádnou pamětovou kartu."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr "Odstraňuji knihy ze zařízení..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "V hlavní paměti není dostatek volného místa"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Na paměťové kartě není dostatek volného místa"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr "Odesílám metadata do zařízení..."
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Nepodařilo se najít disk %s. Zkuste reboot."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr "Čtečka nemá v tomto slotu žádnou pamětovou kartu."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "V hlavní paměti není dostatek volného místa"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Na paměťové kartě není dostatek volného místa"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Zprávy"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -611,21 +604,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -790,11 +779,11 @@ msgstr ""
msgid "Output saved to"
msgstr "Výstup uložen do"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -802,7 +791,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -810,7 +799,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -818,7 +807,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -827,17 +816,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -845,7 +834,7 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -854,7 +843,7 @@ msgstr ""
"Výraz XPath, který určuje všechny tagy, které by měly být přidány do obsahu "
"na úrovni jedna. Je-li zadán, má přednost před ostatními formami autodetekce."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -863,7 +852,7 @@ msgstr ""
"Výraz XPath, který určuje všechny tagy, které by měly být přidány do obsahu "
"na úrovni dvě. Každá položka je přidána pod předchozí položku úrovně jedna."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
@ -872,18 +861,18 @@ msgstr ""
"Výraz XPath který specifikuje všechny tagy které mají být přidané do Obsahu "
"na úrovni tři. Každá hodnota je zadaná pod existující hodnotou úrovně tři."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Nepřidávat automaticky nalezené kapitoly do obsahu."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -891,20 +880,20 @@ msgstr ""
"Pokud počet automaticky nalezených kapitol neprekročí tuto hodnotu, budou "
"odkazy na ně přidané do obsahu. Standardně nastaveno: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -914,7 +903,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -926,65 +915,65 @@ msgstr ""
"\"žádné\" vypne označování kapitol,volba \"obojí\" použije pro označování "
"jak zlomy stránky, tak čáry."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr "Použít obálku nalezenou ve zdrojovém souboru namísto zadané obálky."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -993,41 +982,41 @@ msgstr ""
"užitečná pokud je první obrázek v knize obálka a mé být nahrazena externí "
"obálkou"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1037,86 +1026,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "V archivu nebyl nalezen žádný ebook."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1693,7 +1682,7 @@ msgstr ""
"Stáhnout obálku knihy identifikované uvedeným kódém ISBN z LibraryThing.com\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr "Obálka"
@ -1724,70 +1713,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr "Titulní stránka"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr "Obsah"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr "Rejstřík"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr "Slovník pojmů"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr "Pděkování"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr "Bibliografie"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr "Tiráž"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr "Autorská práva"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr "Věnování"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr "Doslov"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr "Předmluva"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr "Seznam Ilustrací"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr "Seznam tabulek"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr "Poznámky"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr "Úvod"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr "Hlavní text"
@ -2206,25 +2195,25 @@ msgstr "Přidávám..."
msgid "Searching in all sub-directories..."
msgstr "Prohledávám všechny podadresáře..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Byli nalezeny duplikáty!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr "Ukládám..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr "Uložené"
@ -6583,11 +6572,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-07-30 18:08+0000\n"
"Last-Translator: Clement Østergaard <Unknown>\n"
"Language-Team: Danish <da@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Gør absolut ingenting"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Gør absolut ingenting"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Gør absolut ingenting"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Gør absolut ingenting"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Ukendt"
@ -409,15 +409,15 @@ msgstr "Aktiver det angivne plugin"
msgid "Disable the named plugin"
msgstr "Deaktiver det angivne plugin"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr "Kommuniker med Android telefoner"
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr "Kommuniker med BeBook e-bogslæseren"
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr "Kommuniker med BeBook Mini e-bogslæseren"
@ -426,68 +426,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr "Kommuniker med Blackberry smartphone"
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
msgstr "Kommuniker med Cybook e-bogslæseren"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr "John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Nyheder"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr "Overfører bøger til enhed..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
msgstr "Fjerner bøger fra enhed..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr "Kommuniker med EB600 e-bogslæseren"
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -495,24 +474,24 @@ msgstr ""
msgid "Device Interface"
msgstr "Enhedsgrænseflade"
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr "Kommuniker med ebogslæseren IRex Digital Reader 1000"
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr "Kommuniker med JetBook e-bogslæseren"
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr "James Ralston"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr "Kommuniker med Kindle e-bogslæseren"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr "Kommuniker med Kindle 2 e-bogslæseren"
@ -521,10 +500,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr "Kommuniker med Sony PRS-500 e-bogslæseren"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -534,67 +513,81 @@ msgstr "Kommuniker med Sony PRS-500 e-bogslæseren"
msgid "Getting list of books on device..."
msgstr "Henter liste over bøger på enheden..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr "Kommuniker med Sony PRS-505 e-bogslæseren"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr "Kovid Goyal og John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr "Hent enhedsoplysninger..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
msgstr "E-bogslæseren har intet lagerkort i denne sokkel"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr "Fjerner bøger fra enhed..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "Der er ikke tilstrækkelig plads i hovedhukommelsen"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Der er ikke tilstrækkelig plads på hukommelseskortet"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr "Sender metadata til enhed..."
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr "Kommuniker med Sony PRS-700 e-bogslæseren"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Kan ikke finde diskdrevet %s. Prøv at genstarte."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr "Kan ikke finde diskdrevet %s."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr "Du skal have installeret pmount pakken"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr "Kan ikke monterer hovedhukommelsen (Fejlkode: %d)"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr "E-bogslæseren har intet lagerkort i denne sokkel"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr "Den valgte sokkel: %s er ikke understøttet."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "Der er ikke tilstrækkelig plads i hovedhukommelsen"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Der er ikke tilstrækkelig plads på hukommelseskortet"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Nyheder"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr "Indstil enhed"
@ -616,21 +609,17 @@ msgstr "Placer filerne i undermapper, hvis enheden understøtter det"
msgid "Read metadata from files on device"
msgstr "Læs metadata fra filerne på enheden"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Kommuniker med en e-bogslæser"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr "Den valgte sokkel: %s er ikke understøttet."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr "Føjer bøger til enhedens metadataliste..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr "Fjerner bøger fra enhedens metadataliste..."
@ -796,11 +785,11 @@ msgstr ""
msgid "Output saved to"
msgstr "Output gemt til"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -808,7 +797,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -816,7 +805,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -824,7 +813,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -833,17 +822,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -851,7 +840,7 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -861,7 +850,7 @@ msgstr ""
"indholdsfortegnelsen på første niveau. Hvis dette er angivet, tager det "
"prioritet over andre former for auto-genkendelse."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -871,7 +860,7 @@ msgstr ""
"indholdsfortegnelsen på andet niveau. Hvert element bliver tilføjet under "
"det foregående første niveau-element."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
@ -881,7 +870,7 @@ msgstr ""
"indholdsfortegnelsen på tredje niveau. Hvert element bliver tilføjet under "
"det foregående andet niveau-element."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
@ -891,11 +880,11 @@ msgstr ""
"anvendt i stedet for den auto-genererede. Med denne indstilling vil den auto-"
"genererede altid blive brugt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Tilføj ikke automatisk genkendte kapitler til indholdsfortegnelsen."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -903,20 +892,20 @@ msgstr ""
"Hvis færre end dette antal kapitler er genkendt, bliver links tilføjet til "
"indholdsfortegnelsen. Standardværdi: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -926,7 +915,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -938,65 +927,65 @@ msgstr ""
"før kapitler. Værdien \"none\" vil deaktivere fremhævningen og værdien "
"\"both\" vil bruge både side skift og linjer til fremhævning af kapitler."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr "Brug omslaget fra kildefilen fremfor det angivne omslag."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -1004,41 +993,41 @@ msgstr ""
"Fjern det første billede fra e-bogen. Brugbar hvis det første billede er et "
"omslag og du angiver en eksternt omslag."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1048,86 +1037,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Kunne ikke finde en e-bog inden i arkivet"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1681,7 +1670,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1713,70 +1702,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2191,25 +2180,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6549,11 +6538,11 @@ msgstr "Kopierer <b>%s</b>"
msgid "Compacting database"
msgstr "Komprimerer database"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr "Adgangskode til dit calibre bibliotek. Brugernavnet er "
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"PO-Revision-Date: 2009-08-01 17:50+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-08-04 13:04+0000\n"
"Last-Translator: S. Dorscht <Unknown>\n"
"Language-Team: American English <kde-i18n-doc@lists.kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Generated-By: pygettext.py 1.5\n"
@ -23,14 +23,12 @@ msgid "Does absolutely nothing"
msgstr "Macht gar nix"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -55,8 +53,8 @@ msgstr "Macht gar nix"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -64,13 +62,13 @@ msgstr "Macht gar nix"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -133,11 +131,13 @@ msgstr "Macht gar nix"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Unbekannt"
@ -414,15 +414,15 @@ msgstr "Gewähltes Plugin einschalten"
msgid "Disable the named plugin"
msgstr "Gewähltes Plugin ausschalten"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr "Kommunikation mit Android Telefonen."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr "Kommunikation mit dem BeBook eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr "Kommunikation mit dem BeBook Mini eBook Reader."
@ -431,68 +431,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr "Kommunikation mit dem Blackberry Smartphone."
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
msgstr "Kommunikation mit dem Cybook eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr "Kommunikation mit dem Cybook Gen 3 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr "John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Nachrichten"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr "Übertrage Bücher ans Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
msgstr "Entferne Bücher vom Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr "Kommunikation mit dem Cybook Opus eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr "Kommunikation mit dem EB600 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr "Kommunikation mit dem IRex Iliad eBook Reader."
@ -500,24 +479,24 @@ msgstr "Kommunikation mit dem IRex Iliad eBook Reader."
msgid "Device Interface"
msgstr "Geräte-Interface"
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr "Kommunikation mit dem IRex Digital Reader 1000."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr "Kommunikation mit dem JetBook eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr "James Ralston"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr "Kommunikation mit dem Kindle eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr "Kommunikation mit dem Kindle 2 eBook Reader."
@ -526,10 +505,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr "Kommunikation mit dem Sony PRS-500 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -539,67 +518,81 @@ msgstr "Kommunikation mit dem Sony PRS-500 eBook Reader."
msgid "Getting list of books on device..."
msgstr "Erhalte die Liste der Bücher auf dem Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr "Kommunikation mit dem Sony PRS-505 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr "Kovid Goyal und John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr "Erhalte Geräte Information..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
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/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr "Entferne Bücher vom Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "Nicht genügend freier Spreicherplatz im Hauptspeicher"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
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/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr "Sende Metadaten ans Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr "Kommunikation mit dem Sony PRS-700 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Konnte das Laufwerk %s nicht finden. Versuchen Sie einen Neustart."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr "Konnte das %s Laufwerk nicht erkennen."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr "Du musst das pmount Paket installieren."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr "Konnte Hauptspeicher nicht mounten (Error code: %d)"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
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:644
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:668
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:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
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:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Nachrichten"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr "Gerät konfigurieren"
@ -622,21 +615,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr "Metadaten aus Dateien auf dem Gerät lesen"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Kommunikation mit einem eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr "Gewählter Slot: %s wird nicht unterstützt."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr "Füge Bücher zur Metadaten Liste des Geräts hinzu..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr "Entferne Bücher von der Metadaten Liste des Geräts..."
@ -834,13 +823,13 @@ msgstr "Vorgegebene Downloadschemata auflisten"
msgid "Output saved to"
msgstr "Ausgabe gespeichert in"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
"Einstellung der Ausführlichkeit. Für größere Ausführlichkeit mehrmals "
"angeben."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -852,7 +841,7 @@ msgstr ""
"Dokument zu interpretieren sind. Zum Beispiel auflösungsabhängige Längen "
"(z.B. Längen in Punkt). Wählbar ist:"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -865,7 +854,7 @@ msgstr ""
"einer auf dem Gerät funktionierenden Datei nötig. Zum Beispiel EPUB auf dem "
"SONY Reader. Wählbar ist:"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -878,7 +867,7 @@ msgstr ""
"Voreinstellung basiert die Bezugsschriftgröße auf dem gewählten Ausgabe "
"Profil."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -893,11 +882,11 @@ msgstr ""
"intelligente Skalierung von Schriften. Voreinstellung ist die Verwendung "
"einer Zuordnung auf der Grundlage des gewählten Ausgabe Profils."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr "Skalierung von Schriftgrößen ausschalten."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
@ -905,7 +894,7 @@ msgstr ""
"Zeilenhöhe in Punkt. Kontrolliert den Abstand zwischen zwei aufeinander "
"folgenden Zeilen. In der Voreinstellung werden Zeilenhöhen nicht verändert."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -917,7 +906,7 @@ msgstr ""
"unvollständige Textstellen und andere Artefakte. Diese Einstellung "
"extrahiert den Inhalt von Tabellen und gibt ihn linear wieder."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -927,7 +916,7 @@ msgstr ""
"Ebene 1 hinzugefügt werden sollen. Falls dies angegeben wird, erhält es "
"Priorität über andere Formen der automatischen Erkennung."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -937,7 +926,7 @@ msgstr ""
"Ebene 2 hinzugefügt werden sollen. Jeder Eintrag wird unter dem vorherigen "
"Ebene 1 Eintrag angelegt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
@ -947,7 +936,7 @@ msgstr ""
"Ebene 3 hinzugefügt werden sollen. Jeder Eintrag wird unter dem vorherigen "
"Ebene 2 Eintrag angefügt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
@ -957,11 +946,11 @@ msgstr ""
"Ursprungsdatei verwendet anstatt des automatisch erstellten. Mit dieser "
"Einstellung wird immer das automatisch erstellte verwendet."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Automatisch erkannte Kapitel nicht zum Inhaltsverzeichnis hinzufügen"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -969,7 +958,7 @@ msgstr ""
"Wurden weniger Kapitel als hier angegeben erkannt, werden Verknüpfungen zum "
"Inhaltsverzeichnis hinzugefügt. Voreinstellung: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
@ -980,7 +969,7 @@ msgstr ""
"Verknüpfungen werden nur dann zum Inhaltsverzeichnis hinzugefügt, wenn "
"weniger Kapitel als in der Schwellenzahl angegeben erkannt werden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
@ -989,7 +978,7 @@ msgstr ""
"Ausdruck entsprechen. Entsprechende Einträge und deren untergeordnete "
"Einträge werden entfernt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -1007,7 +996,7 @@ msgstr ""
"ausgeschaltet. Ein Hilfe zur Verwendung dieses Features gibt es im XPath "
"Tutorial im calibre User Manual."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -1020,7 +1009,7 @@ msgstr ""
"Kapitelmarkierung aus und der Wert \"both\" verwendet sowohl Seitenumbrüche "
"als auch Linien zur Kapitelmarkierung."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
@ -1030,42 +1019,42 @@ msgstr ""
"an die Stilregeln der Ursprungsdatei angehängt, so dass es zum Überschreiben "
"dieser Regeln verwendet werden kann."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
"Ein XPath Ausdruck. Seitenumbrüche werden vor den angegebenen Elementen "
"eingefügt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Oberen Rand der Seite in Punkt eingeben. Die Voreinstellung ist %default. "
"Anmerkung: 72 Punkt sind 1 Inch"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Unteren Rand der Seite in Punkt eingeben. Die Voreinstellung ist %default. "
"Anmerkung: 72 Punkt sind 1 Inch"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Linken Rand der Seite in Punkt eingeben. Die Voreinstellung ist %default. "
"Anmerkung: 72 Punkt sind 1 Inch"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Rechten Rand der Seite in Punkt eingeben. Die Voreinstellung ist %default. "
"Anmerkung: 72 Punkt sind 1 Inch"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
@ -1075,7 +1064,7 @@ msgstr ""
"angezeigt wird oder nicht, hängt davon ab, ob das eBook Format oder der "
"Reader Blocksatz unterstützen."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
@ -1085,7 +1074,7 @@ msgstr ""
"Paragraphen von 1,5 em ein. Die Entfernung des Abstands funktioniert nur bei "
"Quelldateien, die Paragraphen verwenden (<p> oder <div> Tags)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
@ -1093,7 +1082,7 @@ msgstr ""
"Verwendet bevorzugt das aus der Ursprungsdatei gewonnene Umschlagbild "
"anstatt des angegebenen Umschlagbildes."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
@ -1101,7 +1090,7 @@ msgstr ""
"Leerzeile zwischen Paragraphen einfügen. Funktioniert nur, wenn die "
"Quelldatei Paragraphen verwendet (<p> oder <div> Tags)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -1110,7 +1099,7 @@ msgstr ""
"Bild in der Ursprungsdatei ein Umschlagbild ist und ein externes "
"Umschlagbild angegeben werden soll."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
@ -1118,7 +1107,7 @@ msgstr ""
"Metadaten des Buchs am Buchanfang einfügen. Das ist hilfreich, wenn Ihr "
"eBook Reader das direkte Anzeigen/Suchen von Metadaten nicht unterstützt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
@ -1127,25 +1116,25 @@ msgstr ""
"erkennen und zu korrigieren. Dies kann das Ergebnis verschlechtern, bitt mit "
"Sorgfalt verwenden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
"Einen Regulären Ausdruck zum Testen und Entfernen der Kopfzeile verwenden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr "Regulärer Ausdruck zum Entfernen der Kopfzeile."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
"Einen Regulären Ausdruck zum Testen und Entfernen der Fußzeile verwenden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr "Regulärer Ausdruck zum Entfernen der Fußzeile."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
@ -1153,7 +1142,7 @@ msgstr ""
"Lese Metadaten aus angegebener OPF Datei. Die aus dieser Datei gelesenen "
"Metadaten überschreiben jegliche Metadaten in der Ursprungsdatei."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1170,91 +1159,91 @@ msgstr ""
"verwendet wird, die von der größten Anzahl von Personen benutzt wird (im "
"vorherigen Beispiel das Chinesische)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr "Geben Sie den Titel an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
"Geben Sie den Autor an. Mehrere Autoren sollten durch UND-Zeichen getrennt "
"angegeben werden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr "Titel, der für die Sortierung verwendet werden soll. "
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
"Zeichenfolge, die für die Sortierung nach Autor verwendet werden soll. "
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr "Geben Sie das Umschlagbild für die angegebene Datei an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr "Geben Sie die Beschreibung des Buches an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr "Geben Sie den Herausgeber des Buches an"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr "Geben Sie die Reihe an, zu der dieses Buch gehört."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr "Geben Sie den Index des Buches in dieser Reihe an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
"Geben Sie die Bewertung an. Dies sollte eine Zahl zwischen 1 und 5 sein."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr "Geben Sie die ISBN des Buches an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
"Geben Sie die Etiketten für das Buch an. Durch Kommata getrennte Liste."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr "Geben Sie den Hersteller des Buches an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr "Geben Sie die Sprache an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Konnte kein eBook im Archiv finden"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr "Konvertiere Eingabe zu HTML..."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr "Führe Veränderungen am eBook durch..."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr "Erstelle"
@ -1897,7 +1886,7 @@ msgstr ""
"abrufen\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr "Umschlagbild"
@ -1930,70 +1919,70 @@ msgstr "Komprimierung der Datei Inhalte ausschalten."
msgid "All articles"
msgstr "Alle Artikel"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr "Titelseite"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr "Index"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr "Glossar"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr "Danksagung"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr "Literaturverzeichnis"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr "Schlussschrift"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr "Copyright"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr "Widmung"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr "Epigraph"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr "Vorwort"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr "Abbildungsverzeichnis"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr "Tabellenverzeichnis"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr "Anmerkungen"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr "Vorwort"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr "Haupttext"
@ -2495,15 +2484,15 @@ msgstr "Füge hinzu..."
msgid "Searching in all sub-directories..."
msgstr "Suche in allen Unterverzeichnissen..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr "Hinzugefügt"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Duplikate gefunden!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
@ -2511,11 +2500,11 @@ msgstr ""
"Es gibt schon Bücher mit dem selben Titel wie die folgenden in der "
"Datenbank. Trotzdem hinzufügen?"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr "Speichere..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr "Gespeichert"
@ -7200,12 +7189,12 @@ msgstr "Kopiere <b>%s</b>"
msgid "Compacting database"
msgstr "Komprimiere Datenbank"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
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:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-21 15:22+0000\n"
"Last-Translator: Thanos Petkakis <thanospet@gmail.com>\n"
"Language-Team: Greek <el@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Άγνωστο"
@ -380,15 +380,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -397,68 +397,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -466,24 +445,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -492,10 +471,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -505,67 +484,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -587,21 +580,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -753,11 +742,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -765,7 +754,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -773,7 +762,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -781,7 +770,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -790,17 +779,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -808,58 +797,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -869,7 +858,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -877,105 +866,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -985,86 +974,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1604,7 +1593,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1635,70 +1624,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2111,25 +2100,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6422,11 +6411,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

File diff suppressed because it is too large Load Diff

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre 0.4.22\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"PO-Revision-Date: 2009-07-30 13:29+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-08-05 20:40+0000\n"
"Last-Translator: Vincent C. <Unknown>\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-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Generated-By: pygettext.py 1.5\n"
@ -87,7 +87,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:530
msgid "Add an email address to which to send books"
msgstr "Ajouter une adresse email à qui seront envoyés les livres"
msgstr "Ajouter une adresse email où les livres seront envoyés"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config_ui.py:532
msgid "Make &default"
@ -531,14 +531,12 @@ msgid "Does absolutely nothing"
msgstr "Ne fait strictement rien"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -563,8 +561,8 @@ msgstr "Ne fait strictement rien"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -572,13 +570,13 @@ msgstr "Ne fait strictement rien"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -641,11 +639,13 @@ msgstr "Ne fait strictement rien"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Inconnu"
@ -805,7 +805,7 @@ msgstr "Ce profil est prévu pour le Cybook Opus."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:130
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:290
msgid "This profile is intended for the Amazon Kindle."
msgstr "Ce profil est prévu pour le Kindle d'Amazon"
msgstr "Ce profil est prévu pour le Kindle d'Amazon."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:142
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:323
@ -833,7 +833,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:206
msgid "This profile is intended for the 5-inch JetBook."
msgstr "Ce profil est prévu pour le JetBook de 5 pouces"
msgstr "Ce profil est prévu pour le JetBook de 5 pouces."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:217
msgid ""
@ -845,7 +845,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:307
msgid "This profile is intended for the Amazon Kindle DX."
msgstr "Ce profil est prévu pour le Kindle DX d'Amazon"
msgstr "Ce profil est prévu pour le Kindle DX d'Amazon."
#: /home/kovid/work/calibre/src/calibre/customize/ui.py:29
msgid "Installed plugins"
@ -902,15 +902,15 @@ msgstr "Activer le plugin nommé"
msgid "Disable the named plugin"
msgstr "Désactive le plugin nommé"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr "Communique avec les téléphones Android."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr "Communique avec le lecteur d'ebook BeBook."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr "Communique avec le mini lecteur d'ebook BeBook."
@ -919,68 +919,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr "Communique avec le smartphone Blackberry."
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
msgstr "Communique avec le lecteur d'ebook Cybook."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr "John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Informations"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr "Transfère les livres vers l'appareil..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
msgstr "Supprime les livres de l'appareil..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr "Communique avec le lecteur d'ebook EB600"
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -988,24 +967,24 @@ msgstr ""
msgid "Device Interface"
msgstr "Interface de l'appareil"
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr "Communique avec le lecteur d'ebook IRex Digital Reader 1000."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr "Communique avec le lecteur d'ebook JetBook."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr "James Ralston"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr "Communique avec le lecteur d'ebook Kindle."
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr "Communique avec le lecteur d'ebook Kindle 2."
@ -1014,10 +993,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr "Communique avec le lecteur d'ebook Sony PRS-500."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -1027,67 +1006,81 @@ msgstr "Communique avec le lecteur d'ebook Sony PRS-500."
msgid "Getting list of books on device..."
msgstr "Lit la liste des livres de l'appareil..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr "Communique avec le lecteur d'ebook Sony PRS-505."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr "Kovid Goyal et John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr "Lit les informations de l'appareil..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
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/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr "Supprime les livres de l'appareil..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "Espace insuffisant dans la mémoire principale"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
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/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr "Envoie les métadonnées vers l'appareil..."
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr "Communique avec le lecteur d'ebook Sony PRS-700."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
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:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
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:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr "Vous devez installer le paquet 'pmount'."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
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:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
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:644
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:668
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:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
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:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Informations"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr "Configurer l'appareil"
@ -1110,21 +1103,17 @@ msgstr ""
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/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Communique avec un lecteur d'ebook."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
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/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -1323,12 +1312,12 @@ msgstr "Lister les recettes intégrées"
msgid "Output saved to"
msgstr "Sortie sauvegardée vers"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
"Niveau de verbosité. Spécifier le plusieurs fois pour augmenter la verbosité."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -1340,7 +1329,7 @@ msgstr ""
"d'entrée. Par exemple, la résolution dépend des longueurs. (c.-à-d. "
"longueurs en pixels). Les choix sont:"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -1353,7 +1342,7 @@ msgstr ""
"documents qui fonctionneront sur cet appareil. Par exemple EPUB sur un "
"lecteur SONY. Les choix sont:"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -1366,7 +1355,7 @@ msgstr ""
"sortie et vice versa. Par défaut, la taille de base pour la fonte est "
"choisie par rapport au profil de sortie que vous avez choisi."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -1375,11 +1364,11 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr "Désactiver tous les redimensionnements de tailles de fontes."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
@ -1388,7 +1377,7 @@ msgstr ""
"consécutives de texte. Par défaut aucune manipulation sur la hauteur de "
"ligne n'est effectué."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -1400,7 +1389,7 @@ msgstr ""
"texte qui déborde de la page et d'autres artéfacts. Cette option extraira le "
"contenu des tables et le présentera dans un mode linéaire."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -1410,7 +1399,7 @@ msgstr ""
"au premier niveau de la table des matières. Si spécifiée, elle sera "
"prioritaire par rapport aux autres formulaires d'auto-détection."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -1420,7 +1409,7 @@ msgstr ""
"au deuxième niveau de la table des matières. Chaque entrée est ajoutée en "
"dessous de la précédente entrée de premier niveau."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
@ -1430,7 +1419,7 @@ msgstr ""
"troisième niveau de la table des matières. Chaque entrée est ajoutée en "
"dessous de la précédente entrée de deuxième niveau."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
@ -1440,13 +1429,13 @@ msgstr ""
"utilisée de préférence à celle auto-générée. Avec cette option, l'auto-"
"générée est toujours utilisée."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
"Ne pas ajouter à la table des matières les chapitres détectés "
"automatiquement."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -1454,7 +1443,7 @@ msgstr ""
"Lorsque le nombre de chapitres détectés est inférieur à ce chiffre, les "
"liens sont ajoutés à la table des matières. Par défaut: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
@ -1464,7 +1453,7 @@ msgstr ""
"désactiver. Par défaut : %default. Les liens sont ajoutés à la TOC seulement "
"si le seuil du nombre de chapitres détecté n'a pas été atteint."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
@ -1473,7 +1462,7 @@ msgstr ""
"l'expression régulière spécifiée. Les entrées correspondantes ainsi que "
"leurs fils sont supprimés."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -1491,7 +1480,7 @@ msgstr ""
"manuel utilisateur de calibre pour une aide complémentaire sur l'utilisation "
"de cette fonctionnalité."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -1504,7 +1493,7 @@ msgstr ""
"le marquage des chapitres et une valeur de \"both\" utilisera à la fois un "
"saut de page et un filet."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
@ -1514,56 +1503,56 @@ msgstr ""
"aux règles de style du fichier source, ainsi il pourra être utilisé pour "
"surcharger ces règles."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
"Une expression XPath. Des séparateurs de pages sont insérés avant les "
"éléments spécifiés."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Indiquer la marge haute en pts. Par défaut : %default. Note : 72 pts "
"équivaut à un pouce (2,54cm)"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Indiquer la marge basse en pts. Par défaut : %default. Note : 72 pts "
"équivaut à un pouce (2,54cm)"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Indiquer la marge gauche en pts. Par défaut : %default. Note : 72 pts "
"équivaut à un pouce (2,54cm)"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Indiquer la marge droite en pts. Par défaut : %default. Note : 72 pts "
"équivaut à un pouce (2,54cm)"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
@ -1571,7 +1560,7 @@ msgstr ""
"Utiliser la couverture contenue dans le fichier d'entrée plutôt que la "
"couverture spécifiée."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
@ -1579,7 +1568,7 @@ msgstr ""
"Insérer une ligne vide entre les paragraphes. Ne fonctionnera pas si le "
"fichier source n'utilise pas de paragraphes. (étiquettes <p> ou <div>)"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -1588,7 +1577,7 @@ msgstr ""
"lorsque la première image est une couverture alors que vous désirez "
"spécifier une couverture externe."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
@ -1596,31 +1585,31 @@ msgstr ""
"Insérer les métadonnées au début du livre. Ceci est utile si votre lecteur "
"d'ebook ne supporte pas directement l'affichage/recherche des métadonnées."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
"Utiliser une expression régulière pour essayer de supprimer l'en-tête."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr "L'expression régulière à utiliser pour la suppression de l'en-tête."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
"Utiliser une expression régulière pour essayer de supprimer le pied de page."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr "L'expression régulière à utiliser pour supprimer le pied de page."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
@ -1628,7 +1617,7 @@ msgstr ""
"Lire les métadonnées du fichier OPF spécifié. Les métadonnées lues à partir "
"de ce fichier écraseront les métadonnées dans le fichier source."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1645,89 +1634,89 @@ msgstr ""
"utilisé par le plus grand nombre de personnes sera utilisé (Chinois dans "
"l'exemple précédent)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr "Indiquer le titre."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
"Indiquer les auteurs. Les auteurs multiples doivent être séparés par des &."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr "La version du titre à utiliser pour le tri. "
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr "Chaîne à utiliser lors du tri par auteur. "
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr "Indiquer la couverture pour le fichier spécifié."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr "Indiquer la description de l'ebook."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr "Indiquer l'éditeur de l'ebook."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr "Indiquer les séries auxquelles appartient cet ebook."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr "Indiquer l'index de cet ebook dans les séries."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr "Indiquer le classement. Doit être un nombre entre 1 et 5."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr "Indiquer l'ISBN du livre."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
"Indiquer les étiquettes du livre. Doit être une liste séparée par des "
"virgules."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr "Indiquer le producteur du livre."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr "Indiquer la langue."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Ne trouve pas d'ebook dans l'archive"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr "Conversion de l'entrée en HTML..."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr "Démarrage les transformations de l'ebook...."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr "Création"
@ -2340,7 +2329,7 @@ msgstr ""
"LibraryThing.com\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr "Couverture"
@ -2375,70 +2364,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:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr "Page de titre"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr "Index"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr "Glossaire"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr "Remerciements"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr "Bibliographie"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr "Marque de l'imprimeur"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr "Copyright"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr "Dédicace"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr "Epigraphe"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr "Avant-propos"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr "Liste d'illustrations"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr "Liste de Tables"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr "Notes"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr "Préface"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr "Texte principal"
@ -2928,15 +2917,15 @@ msgstr "Ajout..."
msgid "Searching in all sub-directories..."
msgstr "Cherche dans tous les sous-répertoires..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr "Ajouté"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Des doublons ont été détectés !"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
@ -2944,11 +2933,11 @@ msgstr ""
"Des livres avec des titres identiques à ceux qui suivent existent déjà la "
"base. Voulez-vous quand-même les ajouter ?"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr "Sauvegarde..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr "Sauvegardé"
@ -5134,7 +5123,7 @@ msgstr "Trouver les entrées qui ont..."
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:90
msgid "&All these words:"
msgstr "&Tout ces mots:"
msgstr "&Tous ces mots:"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/search_ui.py:91
msgid "This exact &phrase:"
@ -7443,12 +7432,12 @@ msgstr "Copie <b>%s</b>"
msgid "Compacting database"
msgstr "Compacte la base"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
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:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-06-14 18:08+0000\n"
"Last-Translator: Marcos X. <antiparvos@gmail.com>\n"
"Language-Team: Galician <gl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Non facer nada"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Non facer nada"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Non facer nada"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Non facer nada"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Descoñecido"
@ -380,15 +380,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -397,68 +397,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -466,24 +445,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -492,10 +471,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -505,67 +484,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Non se puido detectar a unidade de disco %s. Probe a reiniciar."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -587,21 +580,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -753,11 +742,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -765,7 +754,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -773,7 +762,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -781,7 +770,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -790,17 +779,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -808,58 +797,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -869,7 +858,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -877,105 +866,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -985,86 +974,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1604,7 +1593,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1635,70 +1624,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2111,25 +2100,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6422,11 +6411,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-21 15:24+0000\n"
"Last-Translator: nikitajy <nikitajy@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "לא עושה דבר"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "לא עושה דבר"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "לא עושה דבר"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "לא עושה דבר"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "לא ידוע"
@ -382,15 +382,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -399,68 +399,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -468,24 +447,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -494,10 +473,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -507,67 +486,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -589,21 +582,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -755,11 +744,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -767,7 +756,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -775,7 +764,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -783,7 +772,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -792,17 +781,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -810,58 +799,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -871,7 +860,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -879,105 +868,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -987,86 +976,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1606,7 +1595,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1637,70 +1626,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2113,25 +2102,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6424,11 +6413,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"PO-Revision-Date: 2009-08-01 02:25+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-08-05 04:25+0000\n"
"Last-Translator: Miro Glavić <glavicmiro@gmail.com>\n"
"Language-Team: Croatian <hr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Uopće ne funkcionira"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Uopće ne funkcionira"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Uopće ne funkcionira"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Uopće ne funkcionira"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Nepoznat"
@ -411,15 +411,15 @@ msgstr "Osposobi imenovani priključak"
msgid "Disable the named plugin"
msgstr "Onesposobi imenovani priključak"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr "Kominiciraj sa Android telefonima."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr "Komuniciraj sa BeBook eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr "Komuniciraj sa BeBook Mini eBook čitačem."
@ -428,68 +428,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr "Komuniciraj sa Blackberry smart phone."
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
msgstr "Komuniciraj sa Cybook eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr "Komunicirajte sa Cybook Gen 3 eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr "John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Vijesti"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr "Prenošenje knjiga na uređaj..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
msgstr "Uklanjanje knjiga sa uređaja..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr "Komunicirajte sa Cybook Opus eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr "Komuniciraj sa EB600 eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr "Komuniciraj sa IRex Iliad eBook čitačem."
@ -497,24 +476,24 @@ msgstr "Komuniciraj sa IRex Iliad eBook čitačem."
msgid "Device Interface"
msgstr "Sučelje Uređaja"
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr "Komuniciraj sa IRex Digital Reader 1000 eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr "Komuniciraj sa JetBook eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr "James Ralston"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr "Komuniciraj sa Kindle eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr "Komuniciraj sa Kindle 2 eBook čitačem."
@ -523,10 +502,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr "Komuniciraj sa Sony PRS-500 eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -536,67 +515,81 @@ msgstr "Komuniciraj sa Sony PRS-500 eBook čitačem."
msgid "Getting list of books on device..."
msgstr "Uzimanje liste knjiga na uređaju..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr "Komuniciraj sa Sony PRS-505 eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr "Kovid Goyal i John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr "Uzmi informacije o uređaju..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
msgstr "Čitač nema memorijsku karticu u ovom ležištu."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr "Uklanjanje knjiga sa uređaja..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "Glavna memorija nema dovoljno slobodnog prostora"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Memorijska kartica nema dovoljno slobodnog prostora"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr "Slanje metapodataka na uređaj..."
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr "Komuniciraj sa Sony PRS-700 eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Nije moguće otkriti %s disketni pogon"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr "Nemoguće pronaći %s disketni pogon."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr "Morate instalirati pmount paket."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr "Nemoguće organizirati glavnu memoriju (Kod greške: %d)"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr "Čitač nema memorijsku karticu u ovom ležištu."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr "Odabrano ležište: %s nije podržano."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "Glavna memorija nema dovoljno slobodnog prostora"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Memorijska kartica nema dovoljno slobodnog prostora"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Vijesti"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr "Konfiguriraj Uređaj"
@ -618,21 +611,17 @@ msgstr "Postavi datoteke u pod-direktorije ako ih ovaj uređaj podržava."
msgid "Read metadata from files on device"
msgstr "Čitaj metapodatke iz datoteka na uređaju"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Komuniciraj sa eBook čitačem."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr "Odabrano ležište: %s nije podržano."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr "Dodavanje knjiga u popis metapodataka uređaja..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr "Uklanjanje knjiga iz popisa metapodataka uređaja..."
@ -825,11 +814,11 @@ msgstr "Izlistaj uglavljene recepte"
msgid "Output saved to"
msgstr "Izlaz spremljen u"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr "Razina rječitosti. Specificiraj više puta za veću rječitost."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -840,7 +829,7 @@ msgstr ""
"podatke kako interpretirati različite informacije u ulaznom dokumentu. Na "
"primjer razlučivo ovisne dužine (npr. dužine u pikselima). Izbori su:"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -852,7 +841,7 @@ msgstr ""
"slučajevima izlazni profil je potreban za proizvodnju dokumenata koji bi "
"funkcionirali na uređaju. Na primjer EPUB na SONY čitaču. Izbori su:"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -864,7 +853,7 @@ msgstr ""
"napraviti pisma u izlazu većim i obratno. Standardno, osnovna veličina pisma "
"se određuje po osnovu izlaznog profila kojeg vi odaberete."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -878,11 +867,11 @@ msgstr ""
"koristi ove veličine za inteligentnu promjenu pisma. Standardno se koristi "
"preslikavanje po osnovu izlaznog profila kojeg ste vi odabrali."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr "Onemogući promjenu veličine svih pisama."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
@ -890,7 +879,7 @@ msgstr ""
"Visina reda u pts. Kontrolira razmak između dva susjedna reda teksta. "
"Standardno, manipulacija visine reda se ne obavlja."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -902,7 +891,7 @@ msgstr ""
"stranice ili slične greške. Ova opcija će izlučiti sadržaj tabela i "
"prezentirati ih u linearnom obliku."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -912,7 +901,7 @@ msgstr ""
"Sadržaj na razini jedan. Ako je ovo specificirano, ima prednost nad ostalim "
"oblicima auto-otkrivanja."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -922,7 +911,7 @@ msgstr ""
"Sadržaj na razini dva. Svaki unos je dodan kao prethodni unos na razini "
"jedan."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
@ -931,7 +920,7 @@ msgstr ""
"XPath izraz koji specificira sve tagove koji bi trebali biti dodani u "
"Sadržaj na razini tri. Svaki unos je dodan kao prethodni unos na razini dva."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
@ -940,11 +929,11 @@ msgstr ""
"Normalno, ako izvorna datoteka već ima Sadržaj, ova će se upotrijebiti prije "
"auto-generirane. Sa ovom opcijom, auto-generirana se uvijek upotrebljava."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Ne dodavati auto-otkrivena poglavlja u Sadržaj"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -952,7 +941,7 @@ msgstr ""
"Ukoliko je otkriven manji broj poglavlja od ovog broja, onda se veze dodaju "
"u Sadržaj. Standardno: %default."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
@ -962,7 +951,7 @@ msgstr ""
"Standardno je %default. Veze su dodane u TOC samo ako je manje od početnog "
"broja poglavlja otkriveno."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
@ -970,7 +959,7 @@ msgstr ""
"Ukloni zabilješke iz Sadržaja čiji naslovi odgovaraju specificiranom "
"regularnom izrazu. Uparene zabilješke i svi njihovi sljedbenici su uklonjeni."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -987,7 +976,7 @@ msgstr ""
"XPath Vodič u calibre Korisničkom Priručniku za detalje oko korištenja ove "
"osobenosti."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -1000,7 +989,7 @@ msgstr ""
"onesposobiti obilježavanje poglavlja a vrijednost \"oba\" će upotrijebiti i "
"kraj stranice i crtu da obilježi poglavlja."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
@ -1010,41 +999,41 @@ msgstr ""
"stilskim pravilima iz izvorne datoteke, tako da može biti upotrijebljen za "
"prevladavanje ovih pravila."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
"Ovo je XPath izraz. Krajevi stranica se unose prije specificiranih elemenata."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Postavi gornju marginu u pts. Zadano je %default. Napomena: 72 pts je "
"jednako 1inch."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Postavi donju marginu u pts. Zadano je %default. Napomena: 72 pts je jednako "
"1inch."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Postavi lijevu marginu u pts. Zadano je %default. Napomena: 72 pts je "
"jednako 1inch."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Postavi desnu marginu u pts. Zadano je %default. Napomena: 72 pts je jednako "
"1inch."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
@ -1054,7 +1043,7 @@ msgstr ""
"poravnano ili ne ovisi o tome da li format knjige i čitač podržavaju "
"poravnavanje."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
@ -1064,7 +1053,7 @@ msgstr ""
"1.5em. Uklanjanje razmaka neće funkcionirati ako izvorna datoteka ne koristi "
"paragrafe (<p> ili <div> oznake)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
@ -1072,7 +1061,7 @@ msgstr ""
"Upotrijebi omot koji je otkriven u izvornoj datoteci namjesto specificiranog "
"omota."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
@ -1080,7 +1069,7 @@ msgstr ""
"Umetni prazan red između paragrafa. Ovo neće funkcionirati ako izvorna "
"datoteka ne koristi paragrafe (<p> ili <div> tagovi)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -1088,7 +1077,7 @@ msgstr ""
"Ukloni prvu sliku sa ulazne elektroničke knjige. Korisno kad je prva slika u "
"izvornoj datoteci omot a vi zahtijevate vanjski omot."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
@ -1096,7 +1085,7 @@ msgstr ""
"Umetni knjižne metapodatke na početku knjige. Ovo je korisno ako vaš e-book "
"čitač ne podržava direktnu pretragu/prikazivanje metapodataka."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
@ -1104,23 +1093,23 @@ msgstr ""
"Pokušaj otkrića i korekcije oštrog završetka redova i ostalih problema u "
"izvornoj datoteci. Ovo može pogoršati stvari, te koristite s oprezom."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr "Upotrijebi regularni izraz da probaš ukloniti zaglavlje."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr "Regularni izraz za upotrebu kod uklanjanja zaglavlja."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr "Upotrijebi regularni izraz da probaš ukloniti podnožje."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr "Regularni izraz za upotrebu kod uklanjanja podnožja."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
@ -1128,7 +1117,7 @@ msgstr ""
"Čitaj metapodatke iz specificirane OPF datoteke. Metapodaci čitani iz ove "
"datoteke će prevladati sve metapodatke u izvornoj datoteci."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1137,88 +1126,94 @@ msgid ""
"by Chinese and Japanese for instance) the representation used by the largest "
"number of people will be used (Chinese in the previous example)."
msgstr ""
"Pretvorite unikodne znakove u ASCII prikaz. Budite pažljivi jer će ovo "
"ukloniti zamjenu unikodnih znakova sa ASCII. NA primjer: zamijenit će \"%s\" "
"sa \"Mikhail Gorbachov\". Također, imajte na umu da tamo gdje postoji više "
"prikaza znakova (znakovi koji se koriste i u Kineskom i u Japanskom pismu) "
"koristiće se znakovi upotrebljavani od strane većeg broja ljudi (u "
"prethodnom primjeru Kineski)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr "Postavi naslov."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr "Odredi autore. Više autora bi trebalo biti odvojeno znacima \"&\"."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr "Verzija naslova koji će se koristiti za sortiranje. "
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr "String koji će se koristiti za sortiranje po autoru. "
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr "Postavi omot na specificiranu datoteku."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr "Postavi e-book opis."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr "Postavi e-book izdavača."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr "Postavi seriju kojoj ova knjiga pripada."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr "Postavi indeks knjige u ovoj seriji."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr "Postavi ocjenu. Ovo bi trebao biti broj između 1 i 5."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr "Postavi ISBN knjige."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
"Postavi tagove za knjigu. Ovo bi trebala biti zarezom odvojena lista."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr "Postavi redatelja knjige."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr "Postavi jezik"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Nije pronađena elektronička knjiga u arhivi"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr "Pretvaranje ulaza u HTML..."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr "Izvršavanje transformacija na e-knjizi..."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr "Stvaranje"
@ -1843,7 +1838,7 @@ msgstr ""
"Dograbi sliku omota za knjigu identificiranu od ISBN sa LibraryThing.com\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr "Omot"
@ -1876,70 +1871,70 @@ msgstr "Onemogući kompresiju sadržaja datoteke."
msgid "All articles"
msgstr "Svi članci"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr "Naslovna Stranica"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr "Sadržaj"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr "IndeksB"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr "Pojmovnik"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr "Zahvale"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr "Bibliografija"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr "Kolofon"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr "Autorsko pravo"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr "Posveta"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr "Epigraf"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr "Predgovor"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr "Popis Ilustracija"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr "Popis Tabela"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr "Zabilješke"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr "Uvod"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr "Glavni Tekst"
@ -2429,15 +2424,15 @@ msgstr "Dodavanje..."
msgid "Searching in all sub-directories..."
msgstr "Pretraživanje u svim pod-direktorijima..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr "Dodano"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Pronađeni duplikati!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
@ -2445,11 +2440,11 @@ msgstr ""
"Knjige sa naslovom identičnim slijedećim već postoje u bazi podataka. Dodaj "
"ih, bez obzira?"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr "Spremanje..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr "Spremljeno"
@ -7071,11 +7066,11 @@ msgstr "Kopiranje <b>%s</b>"
msgid "Compacting database"
msgstr "Sažimanje baze podataka"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr "Lozinka za pristup vašoj calibre biblioteci. Korisničko ime je "
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

File diff suppressed because it is too large Load Diff

View File

@ -8,14 +8,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre_calibre-it\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-16 09:34+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: italiano\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:05+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Generated-By: pygettext.py 1.5\n"
@ -87,21 +87,18 @@ msgid "Disable the named plugin"
msgstr "Disabilita il plug-in"
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "Non c'è spazio sufficiente nella memoria principale"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Non c'è spazio sufficiente nella scheda di memoria"
@ -115,21 +112,21 @@ msgstr ""
msgid "Apply no processing to the image"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -183,7 +180,7 @@ msgid "LibraryThing.com timed out. Try again later."
msgstr "Tempo di attesa per LibraryThing.com terminato. Riprovare più tardi."
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -196,63 +193,63 @@ msgstr ""
msgid "Title for any generated in-line table of contents."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -284,7 +281,7 @@ msgstr ""
msgid "Searching in"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -1426,14 +1423,12 @@ msgid "Does absolutely nothing"
msgstr "Non fa assolutamente niente"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -1458,8 +1453,8 @@ msgstr "Non fa assolutamente niente"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -1467,13 +1462,13 @@ msgstr "Non fa assolutamente niente"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -1536,11 +1531,13 @@ msgstr "Non fa assolutamente niente"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Sconosciuto"
@ -1723,15 +1720,15 @@ msgstr ""
msgid "List all installed plugins"
msgstr "Elenca tutti i plug-in installati"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -1739,62 +1736,41 @@ msgstr ""
msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Notizie"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -1802,24 +1778,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -1828,10 +1804,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -1841,55 +1817,72 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Impossibile individuare il disco %s. Provare a riavviare."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Notizie"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -1911,21 +1904,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -2082,11 +2071,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -2094,7 +2083,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -2102,7 +2091,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -2110,7 +2099,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -2119,17 +2108,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -2137,7 +2126,7 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -2147,7 +2136,7 @@ msgstr ""
"sommario al primo livello. Se viene specificata, prende la precedenza sulle "
"altre forme di autorilevamento."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -2157,11 +2146,11 @@ msgstr ""
"sommario al secondo livello. Ogni elemento viene aggiunto sotto l'elemento "
"di primo livello precedente."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Non aggiungere i capitoli rilevati automaticamente al sommario."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -2169,20 +2158,20 @@ msgstr ""
"Se viene rilevato un numero di capitoli inferiore a questo, i collegamenti "
"saranno aggiunti al sommario. Predefinito: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -2192,7 +2181,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -2205,53 +2194,53 @@ msgstr ""
"marcatura dei capitoli e il valore \"both\" userà sia l'interruzione di "
"pagina che la linea per marcare i capitoli."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
@ -2259,47 +2248,47 @@ msgstr ""
"Usare la copertina rilevata dal file di origine al posto di quella "
"specificata."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -2309,86 +2298,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Impossibile trovare un libro dentro l'archivio"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -2937,7 +2926,7 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
@ -3335,21 +3324,21 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Scoperti duplicati!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
@ -7253,12 +7242,12 @@ msgstr "Sto copiando <b>%s</b>"
msgid "Compacting database"
msgstr "Compattazione database"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
"Password per accedere alla propria biblioteca di calibre. Il nome utente è "
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-30 16:02+0000\n"
"Last-Translator: MASA.H <masahase@users.sourceforge.jp>\n"
"Language-Team: Japanese <ja@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "まったく何もしません。(何も影響しません。)"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "まったく何もしません。(何も影響しません。)"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "まったく何もしません。(何も影響しません。)"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "まったく何もしません。(何も影響しません。)"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "不明です。"
@ -382,15 +382,15 @@ msgstr "名付けたプラグインを有効にする"
msgid "Disable the named plugin"
msgstr "名付けたプラグインを無効にする"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -399,68 +399,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "ニュース"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -468,24 +447,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -494,10 +473,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -507,67 +486,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "メインメモリには十分な空きスペースがない"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "記憶媒体のカードには十分な空きスペースがない"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "%sディスク・ドライブが検出できない場合は、再起動してください。"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "メインメモリには十分な空きスペースがない"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "記憶媒体のカードには十分な空きスペースがない"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "ニュース"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -589,21 +582,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -755,11 +744,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -767,7 +756,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -775,7 +764,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -783,7 +772,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -792,17 +781,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -810,58 +799,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "目次に自動判定された章を追加しない"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -871,7 +860,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -879,105 +868,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -987,86 +976,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "この書庫からはebookを見つけられませんでした。"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1606,7 +1595,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1637,70 +1626,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2113,25 +2102,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6424,11 +6413,11 @@ msgstr ""
msgid "Compacting database"
msgstr "データベースのコンパクト化"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-21 15:28+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Norwegian Bokmal <nb@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Ukjent"
@ -380,15 +380,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -397,68 +397,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -466,24 +445,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -492,10 +471,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -505,67 +484,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Det er ikke nok ledig plass på lagringskortet"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Finner ikke %s lagringsenheten. Venligst prøv å restarte."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Det er ikke nok ledig plass på lagringskortet"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -587,21 +580,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -761,11 +750,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -773,7 +762,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -781,7 +770,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -789,7 +778,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -798,17 +787,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -816,7 +805,7 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -826,7 +815,7 @@ msgstr ""
"innholdsregisteret på første nivå. Når dette er spesifisert, så vil det ha "
"høyere prioritet enn andre former for automatisk detektering."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -835,44 +824,44 @@ msgstr ""
"XPath uttrykket angir at alle tagger burde bli lagt til nivå to av "
"innholdsregisteret. Hvert innlegg blir lagt til under forrige nivå en."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Ikke legg til automatisk oppdagede kapitler til innholdsregisteret."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -882,7 +871,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -895,105 +884,105 @@ msgstr ""
"verdien \"both\" vil bruke både sideavslutning og linjer for å markere "
"kapitler."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr "Bruk omslagsbilde fra kildefilen fremfor spesifisert omslagsbilde."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1003,86 +992,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1648,7 +1637,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1679,70 +1668,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr "Forord"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2156,25 +2145,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr "Lagret"
@ -6467,11 +6456,11 @@ msgstr "Kopierer <b>%s</b>"
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"PO-Revision-Date: 2009-08-01 17:53+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-08-04 13:05+0000\n"
"Last-Translator: S. Dorscht <Unknown>\n"
"Language-Team: American English <kde-i18n-doc@lists.kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:05+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Generated-By: pygettext.py 1.5\n"
@ -743,14 +743,12 @@ msgid "Does absolutely nothing"
msgstr "Macht gar nix"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -775,8 +773,8 @@ msgstr "Macht gar nix"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -784,13 +782,13 @@ msgstr "Macht gar nix"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -853,11 +851,13 @@ msgstr "Macht gar nix"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Unbekannt"
@ -1122,15 +1122,15 @@ msgstr "Gewähltes Plugin einschalten"
msgid "Disable the named plugin"
msgstr "Gewähltes Plugin ausschalten"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr "Kommunikation mit Android Telefonen."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr "Kommunikation mit dem BeBook eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr "Kommunikation mit dem BeBook Mini eBook Reader."
@ -1139,68 +1139,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr "Kommunikation mit dem Blackberry Smartphone."
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
msgstr "Kommunikation mit dem Cybook eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr "Kommunikation mit dem Cybook Gen 3 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr "John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Nachrichten"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr "Übertrage Bücher ans Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
msgstr "Entferne Bücher vom Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr "Kommunikation mit dem Cybook Opus eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr "Kommunikation mit dem EB600 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr "Kommunikation mit dem IRex Iliad eBook Reader."
@ -1208,24 +1187,24 @@ msgstr "Kommunikation mit dem IRex Iliad eBook Reader."
msgid "Device Interface"
msgstr "Geräte-Interface"
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr "Kommunikation mit dem IRex Digital Reader 1000."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr "Kommunikation mit dem JetBook eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr "James Ralston"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr "Kommunikation mit dem Kindle eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr "Kommunikation mit dem Kindle 2 eBook Reader."
@ -1234,10 +1213,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr "Kommunikation mit dem Sony PRS-500 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -1247,67 +1226,81 @@ msgstr "Kommunikation mit dem Sony PRS-500 eBook Reader."
msgid "Getting list of books on device..."
msgstr "Erhalte die Liste der Bücher auf dem Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr "Kommunikation mit dem Sony PRS-505 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr "Kovid Goyal und John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr "Erhalte Geräte Information..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
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/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr "Entferne Bücher vom Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "Nicht genügend freier Spreicherplatz im Hauptspeicher"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
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/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr "Sende Metadaten ans Gerät..."
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr "Kommunikation mit dem Sony PRS-700 eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Konnte das Laufwerk %s nicht finden. Versuchen Sie einen Neustart."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr "Konnte das %s Laufwerk nicht erkennen."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr "Du musst das pmount Paket installieren."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr "Konnte Hauptspeicher nicht mounten (Error code: %d)"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
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:644
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:668
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:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
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:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Nachrichten"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr "Gerät konfigurieren"
@ -1330,21 +1323,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr "Metadaten aus Dateien auf dem Gerät lesen"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Kommunikation mit einem eBook Reader."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr "Gewählter Slot: %s wird nicht unterstützt."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr "Füge Bücher zur Metadaten Liste des Geräts hinzu..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr "Entferne Bücher von der Metadaten Liste des Geräts..."
@ -1542,13 +1531,13 @@ msgstr "Vorgegebene Downloadschemata auflisten"
msgid "Output saved to"
msgstr "Ausgabe gespeichert in"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
"Einstellung der Ausführlichkeit. Für größere Ausführlichkeit mehrmals "
"angeben."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -1560,7 +1549,7 @@ msgstr ""
"Dokument zu interpretieren sind. Zum Beispiel auflösungsabhängige Längen "
"(z.B. Längen in Punkt). Wählbar ist:"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -1573,7 +1562,7 @@ msgstr ""
"einer auf dem Gerät funktionierenden Datei nötig. Zum Beispiel EPUB auf dem "
"SONY Reader. Wählbar ist:"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -1586,7 +1575,7 @@ msgstr ""
"Voreinstellung basiert die Bezugsschriftgröße auf dem gewählten Ausgabe "
"Profil."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -1601,11 +1590,11 @@ msgstr ""
"intelligente Skalierung von Schriften. Voreinstellung ist die Verwendung "
"einer Zuordnung auf der Grundlage des gewählten Ausgabe Profils."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr "Skalierung von Schriftgrößen ausschalten."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
@ -1613,7 +1602,7 @@ msgstr ""
"Zeilenhöhe in Punkt. Kontrolliert den Abstand zwischen zwei aufeinander "
"folgenden Zeilen. In der Voreinstellung werden Zeilenhöhen nicht verändert."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -1625,7 +1614,7 @@ msgstr ""
"unvollständige Textstellen und andere Artefakte. Diese Einstellung "
"extrahiert den Inhalt von Tabellen und gibt ihn linear wieder."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -1635,7 +1624,7 @@ msgstr ""
"Ebene 1 hinzugefügt werden sollen. Falls dies angegeben wird, erhält es "
"Priorität über andere Formen der automatischen Erkennung."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -1645,7 +1634,7 @@ msgstr ""
"Ebene 2 hinzugefügt werden sollen. Jeder Eintrag wird unter dem vorherigen "
"Ebene 1 Eintrag angelegt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
@ -1655,7 +1644,7 @@ msgstr ""
"Ebene 3 hinzugefügt werden sollen. Jeder Eintrag wird unter dem vorherigen "
"Ebene 2 Eintrag angefügt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
@ -1665,11 +1654,11 @@ msgstr ""
"Ursprungsdatei verwendet anstatt des automatisch erstellten. Mit dieser "
"Einstellung wird immer das automatisch erstellte verwendet."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Automatisch erkannte Kapitel nicht zum Inhaltsverzeichnis hinzufügen"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -1677,7 +1666,7 @@ msgstr ""
"Wurden weniger Kapitel als hier angegeben erkannt, werden Verknüpfungen zum "
"Inhaltsverzeichnis hinzugefügt. Voreinstellung: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
@ -1688,7 +1677,7 @@ msgstr ""
"Verknüpfungen werden nur dann zum Inhaltsverzeichnis hinzugefügt, wenn "
"weniger Kapitel als in der Schwellenzahl angegeben erkannt werden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
@ -1697,7 +1686,7 @@ msgstr ""
"Ausdruck entsprechen. Entsprechende Einträge und deren untergeordnete "
"Einträge werden entfernt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -1715,7 +1704,7 @@ msgstr ""
"ausgeschaltet. Ein Hilfe zur Verwendung dieses Features gibt es im XPath "
"Tutorial im calibre User Manual."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -1728,7 +1717,7 @@ msgstr ""
"Kapitelmarkierung aus und der Wert \"both\" verwendet sowohl Seitenumbrüche "
"als auch Linien zur Kapitelmarkierung."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
@ -1738,42 +1727,42 @@ msgstr ""
"an die Stilregeln der Ursprungsdatei angehängt, so dass es zum Überschreiben "
"dieser Regeln verwendet werden kann."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
"Ein XPath Ausdruck. Seitenumbrüche werden vor den angegebenen Elementen "
"eingefügt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Oberen Rand der Seite in Punkt eingeben. Die Voreinstellung ist %default. "
"Anmerkung: 72 Punkt sind 1 Inch"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Unteren Rand der Seite in Punkt eingeben. Die Voreinstellung ist %default. "
"Anmerkung: 72 Punkt sind 1 Inch"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Linken Rand der Seite in Punkt eingeben. Die Voreinstellung ist %default. "
"Anmerkung: 72 Punkt sind 1 Inch"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
"Rechten Rand der Seite in Punkt eingeben. Die Voreinstellung ist %default. "
"Anmerkung: 72 Punkt sind 1 Inch"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
@ -1783,7 +1772,7 @@ msgstr ""
"angezeigt wird oder nicht, hängt davon ab, ob das eBook Format oder der "
"Reader Blocksatz unterstützen."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
@ -1793,7 +1782,7 @@ msgstr ""
"Paragraphen von 1,5 em ein. Die Entfernung des Abstands funktioniert nur bei "
"Quelldateien, die Paragraphen verwenden (<p> oder <div> Tags)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
@ -1801,7 +1790,7 @@ msgstr ""
"Verwendet bevorzugt das aus der Ursprungsdatei gewonnene Umschlagbild "
"anstatt des angegebenen Umschlagbildes."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
@ -1809,7 +1798,7 @@ msgstr ""
"Leerzeile zwischen Paragraphen einfügen. Funktioniert nur, wenn die "
"Quelldatei Paragraphen verwendet (<p> oder <div> Tags)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -1818,7 +1807,7 @@ msgstr ""
"Bild in der Ursprungsdatei ein Umschlagbild ist und ein externes "
"Umschlagbild angegeben werden soll."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
@ -1826,7 +1815,7 @@ msgstr ""
"Metadaten des Buchs am Buchanfang einfügen. Das ist hilfreich, wenn Ihr "
"eBook Reader das direkte Anzeigen/Suchen von Metadaten nicht unterstützt."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
@ -1835,25 +1824,25 @@ msgstr ""
"erkennen und zu korrigieren. Dies kann das Ergebnis verschlechtern, bitt mit "
"Sorgfalt verwenden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
"Einen Regulären Ausdruck zum Testen und Entfernen der Kopfzeile verwenden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr "Regulärer Ausdruck zum Entfernen der Kopfzeile."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
"Einen Regulären Ausdruck zum Testen und Entfernen der Fußzeile verwenden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr "Regulärer Ausdruck zum Entfernen der Fußzeile."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
@ -1861,7 +1850,7 @@ msgstr ""
"Lese Metadaten aus angegebener OPF Datei. Die aus dieser Datei gelesenen "
"Metadaten überschreiben jegliche Metadaten in der Ursprungsdatei."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1878,91 +1867,91 @@ msgstr ""
"verwendet wird, die von der größten Anzahl von Personen benutzt wird (im "
"vorherigen Beispiel das Chinesische)."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr "Geben Sie den Titel an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
"Geben Sie den Autor an. Mehrere Autoren sollten durch UND-Zeichen getrennt "
"angegeben werden."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr "Titel, der für die Sortierung verwendet werden soll. "
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
"Zeichenfolge, die für die Sortierung nach Autor verwendet werden soll. "
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr "Geben Sie das Umschlagbild für die angegebene Datei an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr "Geben Sie die Beschreibung des Buches an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr "Geben Sie den Herausgeber des Buches an"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr "Geben Sie die Reihe an, zu der dieses Buch gehört."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr "Geben Sie den Index des Buches in dieser Reihe an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
"Geben Sie die Bewertung an. Dies sollte eine Zahl zwischen 1 und 5 sein."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr "Geben Sie die ISBN des Buches an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
"Geben Sie die Etiketten für das Buch an. Durch Kommata getrennte Liste."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr "Geben Sie den Hersteller des Buches an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr "Geben Sie die Sprache an."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Konnte kein eBook im Archiv finden"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr "Konvertiere Eingabe zu HTML..."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr "Führe Veränderungen am eBook durch..."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr "Erstelle"
@ -2580,7 +2569,7 @@ msgstr ""
"abrufen\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr "Umschlagbild"
@ -2613,70 +2602,70 @@ msgstr "Komprimierung der Datei Inhalte ausschalten."
msgid "All articles"
msgstr "Alle Artikel"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr "Titelseite"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr "Index"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr "Glossar"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr "Danksagung"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr "Literaturverzeichnis"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr "Schlussschrift"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr "Copyright"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr "Widmung"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr "Epigraph"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr "Vorwort"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr "Abbildungsverzeichnis"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr "Tabellenverzeichnis"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr "Anmerkungen"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr "Vorwort"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr "Haupttext"
@ -3172,15 +3161,15 @@ msgstr "Füge hinzu..."
msgid "Searching in all sub-directories..."
msgstr "Suche in allen Unterverzeichnissen..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr "Hinzugefügt"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Duplikate gefunden!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
@ -3188,11 +3177,11 @@ msgstr ""
"Es gibt schon Bücher mit dem selben Titel wie die folgenden in der "
"Datenbank. Trotzdem hinzufügen?"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr "Speichere..."
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr "Gespeichert"
@ -7523,12 +7512,12 @@ msgstr "Kopiere <b>%s</b>"
msgid "Compacting database"
msgstr "Komprimiere Datenbank"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
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:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-07-25 13:02+0000\n"
"Last-Translator: Yentl <y.v.t@scarlet.be>\n"
"Language-Team: Dutch <nl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Doet absoluut niets."
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Doet absoluut niets."
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Doet absoluut niets."
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Doet absoluut niets."
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Onbekend"
@ -395,15 +395,15 @@ msgstr "Activeer de genoemde plugin"
msgid "Disable the named plugin"
msgstr "Desactiveer de genoemde plugin"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -412,68 +412,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -481,24 +460,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -507,10 +486,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -520,67 +499,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Er is onvoldoende vrije plaats op de geheugenkaart"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Schijf %s is niet gevonden. Probeer te herstarten."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Er is onvoldoende vrije plaats op de geheugenkaart"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -602,21 +595,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -779,11 +768,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -791,7 +780,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -799,7 +788,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -807,7 +796,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -816,17 +805,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -834,59 +823,59 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
"Voeg geen automatisch gedetecteerde hoofdstukken toe aan de Inhoudstafel"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -896,7 +885,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -904,53 +893,53 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
@ -958,53 +947,53 @@ msgstr ""
"Gebruik de in het bronbestand gedetecteerde omslag en niet de opgegeven "
"omslag"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1014,86 +1003,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1669,7 +1658,7 @@ msgstr ""
"LibraryThing.com\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1700,70 +1689,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2177,25 +2166,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Duplicaten gevonden!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6632,11 +6621,11 @@ msgstr "Copieer <b>%s</b>"
msgid "Compacting database"
msgstr "Comprimeren database"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-06-04 16:16+0000\n"
"Last-Translator: Bartosz Wierzejewski <bartoszwierzejewski@o2.pl>\n"
"Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Ta opcja nic nie zmienia"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Ta opcja nic nie zmienia"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Ta opcja nic nie zmienia"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Ta opcja nic nie zmienia"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Nieznany"
@ -386,15 +386,15 @@ msgstr "Włącz wtyczkę"
msgid "Disable the named plugin"
msgstr "Wyłącz wtyczkę"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -403,68 +403,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Aktualności"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -472,24 +451,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -498,10 +477,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -511,67 +490,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "Niewystarczająca ilość wolnej pamięci głównej"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Na karcie pamięci jest niewystarczająca ilość wolnego miejsca"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Wykrycie dysku %s niemożliwe. Spróbuj ponownie uruchomić komputer."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "Niewystarczająca ilość wolnej pamięci głównej"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Na karcie pamięci jest niewystarczająca ilość wolnego miejsca"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Aktualności"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -593,21 +586,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -764,11 +753,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -776,7 +765,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -784,7 +773,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -792,7 +781,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -801,17 +790,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -819,7 +808,7 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -829,7 +818,7 @@ msgstr ""
"zawartości spisu treści na poziomie pierwszym, przed wszystkimi formami auto-"
"wykrywania."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -839,25 +828,25 @@ msgstr ""
"zawartości tabli na poziomie drugim. Każde wejście jest dodawane pod "
"wcześniejszy pierwszy poziom."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Nie dodawaj automatycznie wykrytych rozdziałów do Spisu Treści"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -865,20 +854,20 @@ msgstr ""
"Jeśli wykryto mniej niż tyle rozdziałów, odnośniki są dodawane do spisu "
"treści (TOC). Domyślnie: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -888,7 +877,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -900,105 +889,105 @@ msgstr ""
"rozdziałami. Wartość \"brak\" wyłącza zaznaczanie rozdziałów, a \"wszystko\" "
"włącza linie i strony przerw jednocześnie."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr "Preferuj okładkę z pliku źródłowego w stosunku do wybranej okładki."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1008,86 +997,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Nie znaleziono e-book'a w archiwum"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1651,7 +1640,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1682,70 +1671,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr "Spis treści"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2164,25 +2153,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Znleziono duplikaty!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6512,11 +6501,11 @@ msgstr "Kopiowanie <b>%s</b>"
msgid "Compacting database"
msgstr "Kompaktowanie bazy danych"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr "Hasło do biblioteki calibre. Nazwa użytkownika to "
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

File diff suppressed because it is too large Load Diff

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-21 15:31+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Romanian <ro@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Nu face absolut nimic"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Nu face absolut nimic"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Nu face absolut nimic"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Nu face absolut nimic"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Necunoscut(ă)"
@ -384,15 +384,15 @@ msgstr "Activează plugin-ul specificat prin nume"
msgid "Disable the named plugin"
msgstr "Dezactivează plugin-ul specificat prin nume"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -401,68 +401,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -470,24 +449,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -496,10 +475,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -509,68 +488,82 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "Nu există suficient spaţiu liber în memoria principală"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Nu există suficient spaţiu liber pe cartela de stocare"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
"Unitatea de disc %s nu a putut fi detectată. Încercaţi să reporniţi sistemul."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "Nu există suficient spaţiu liber în memoria principală"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Nu există suficient spaţiu liber pe cartela de stocare"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -592,21 +585,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -758,11 +747,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -770,7 +759,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -778,7 +767,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -786,7 +775,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -795,17 +784,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -813,7 +802,7 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -823,7 +812,7 @@ msgstr ""
"cuprins la nivelul unu. Dacă este specificată, are prioritate mai mare faţă "
"de alte forme de auto-detecţie."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -833,25 +822,25 @@ msgstr ""
"cuprins la nivelul doi. Fiecare intrare este adăugată sub intrarea "
"precedentă de nivel unu."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Nu adăuga capitolele auto-detectate la cuprins."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -859,20 +848,20 @@ msgstr ""
"Dacă sunt detectate mai puţine capitole decât numărul acesta, atunci se "
"adaugă legături la cuprins. Implicit: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -882,7 +871,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -890,105 +879,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -998,86 +987,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Nu a fost găsită o e-carte în arhivă"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1624,7 +1613,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1655,70 +1644,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2131,25 +2120,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6442,11 +6431,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre 0.4.55\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-07-31 19:00+0000\n"
"Last-Translator: Narmo <Unknown>\n"
"Language-Team: American English <kde-i18n-doc@lists.kde.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:05+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"X-Poedit-Country: RUSSIAN FEDERATION\n"
"X-Poedit-Language: Russian\n"
@ -26,14 +26,12 @@ msgid "Does absolutely nothing"
msgstr "Ничего не делает"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -58,8 +56,8 @@ msgstr "Ничего не делает"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -67,13 +65,13 @@ msgstr "Ничего не делает"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -136,11 +134,13 @@ msgstr "Ничего не делает"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Неизвестно"
@ -406,15 +406,15 @@ msgstr "Включить указанный модуль"
msgid "Disable the named plugin"
msgstr "Отключить указанный модуль"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr "Соединяться с устройствами Android."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr "Соединяться с BeBook."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr "Соединяться с BeBook Mini."
@ -423,68 +423,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr "Соединяться со смартфонами Blackberry."
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Ковид Гоял"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
msgstr "Соединяться с Cybook."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr "Джош Шембер"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Новости"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr "Передаю книги на устройство..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
msgstr "Удаляю книги с устройства..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr "Соединяться с EB600."
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -492,24 +471,24 @@ msgstr ""
msgid "Device Interface"
msgstr "Интерфейс устройства"
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr "Соединяться с iRex Digital Reader 1000."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr "Соединяться с JetBook."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr "Джеймс Рэлстон"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr "Соединяться с Kindle."
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr "Соединяться с Kindle 2."
@ -518,10 +497,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr "Соединяться с Sony PRS-500."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -531,67 +510,81 @@ msgstr "Соединяться с Sony PRS-500."
msgid "Getting list of books on device..."
msgstr "Получаю список книг с устройства..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr "Соединяться с Sony PRS-505."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr "Ковид Гоял и Джон Шембер"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr "Получаю информацию об устройстве..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
msgstr "В устройство не вставлена карта памяти."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr "Удаляю книги с устройства..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "Не хватает свободного места в основной памяти"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Не хватает свободного места на карте памяти"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr "Отправляю метаданные на устройство..."
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr "Соединяться с Sony PRS-700."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Не удалось определить диск %s. Попробуйте перезагрузиться."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr "Не удалось определить диск %s."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr "Необходимо установить пакет pmount."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr "Не возможно примонтировать основную памят (Код ошибки: %d)"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr "В устройство не вставлена карта памяти."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr "Выбранный слот: %s не поддерживается."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "Не хватает свободного места в основной памяти"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Не хватает свободного места на карте памяти"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Новости"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr "Настройка устройства"
@ -613,21 +606,17 @@ msgstr "Помещать файлы в поддиректории если ус
msgid "Read metadata from files on device"
msgstr "Получить метаданные с файлов на устройстве"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Соединиться с электронной книгой."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr "Выбранный слот: %s не поддерживается."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr "Добавляю книги в список метаданных устройства..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr "Удаляю книги из списка метаданных устройства..."
@ -817,11 +806,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -829,7 +818,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -837,7 +826,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -845,7 +834,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -854,17 +843,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -872,7 +861,7 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -881,7 +870,7 @@ msgstr ""
"XPath выражение добавит все заданные тэги в первый уровень Оглавления. Если "
"выражение задано, то оно имеет преимущество над авто-определением."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -890,7 +879,7 @@ msgstr ""
"XPath выражение добавит все заданные тэги во второй уровень Оглавления. "
"Каждая запись добавляется под предыдущий уровень, одной строкой."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
@ -899,7 +888,7 @@ msgstr ""
"XPath выражение добавит все заданные тэги в третий уровень Оглавления. "
"Каждая запись добавляется под предыдущий уровень."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
@ -908,11 +897,11 @@ msgstr ""
"Обычно, если файл-источник уже имеет Оглавление, оно используется в случае "
"автогенерации."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Не добавлять авто-определенные главы в Оглавление."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -920,20 +909,20 @@ msgstr ""
"Если меньше, чем это количество глав обнаружено, то ссылки добавляются в "
"Оглавление. По умолчанию: %default"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -943,7 +932,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -955,66 +944,66 @@ msgstr ""
"\"both\" будет использовать оба маркера, а значение \"none\" не использует "
"разметку."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
"Вместо заданной, использовать определение обложки из исходного файла."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -1022,41 +1011,41 @@ msgstr ""
"Удалять первую картинку из ebook. Полезно в случае, если первая картинка в "
"файле-источнике - обложка, а Вы собираетесь указать другую обложку."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1066,86 +1055,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Не могу найти книгу в архиве"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1725,7 +1714,7 @@ msgstr ""
"LibraryThing.com\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr "Обложка"
@ -1756,70 +1745,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr "Титульная страница"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr "Индекс"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr "Глоссарий"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr "Подтверждения"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr "Библиография"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr "Колофон"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr "Копирайт"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr "Посвящение"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr "Эпиграф"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr "Предисловие"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr "Список иллюстраций"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr "Оглавление"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr "Заметки"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr "Введение"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr "Основной текст"
@ -2235,25 +2224,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Есть повторения!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr "Сохранено"
@ -6772,11 +6761,11 @@ msgstr "Копирование <b>%s</b>"
msgid "Compacting database"
msgstr "Сжатие базы данных"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr "Пароль для доступа в библиотеку. Имя пользователя "
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-21 15:32+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Slovak <sk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Nerobí vôbec nič"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Nerobí vôbec nič"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Nerobí vôbec nič"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Nerobí vôbec nič"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Neurčené"
@ -384,15 +384,15 @@ msgstr "Aktivovať modul podľa mena"
msgid "Disable the named plugin"
msgstr "Deaktivovať modul podľa mena"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -401,68 +401,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Správy"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -470,24 +449,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -496,10 +475,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -509,67 +488,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "V hlavnej pamäti zariadenia nie je dostatok miesta"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Na pamäťovej karte nie je dostatok voľného miesta"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Nepodarilo sa nájsť disk %s. Skúste reštartovať systém."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "V hlavnej pamäti zariadenia nie je dostatok miesta"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Na pamäťovej karte nie je dostatok voľného miesta"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Správy"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -591,21 +584,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -770,11 +759,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -782,7 +771,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -790,7 +779,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -798,7 +787,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -807,17 +796,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -825,7 +814,7 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
@ -834,7 +823,7 @@ msgstr ""
"Výraz XPath určujúci tagy, ktoré sa majú pridať do obsahu na prvej úrovni. "
"Ak je tento výraz špecifikovaný, má prednosť pred inými formami autodetekcie."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
@ -843,7 +832,7 @@ msgstr ""
"Výraz XPath určujúci tagy, ktoré sa majú pridať do obsahu na druhej úrovni. "
"Každý záznam bude vložený pod príslušný prvoúrovňový záznam."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
@ -853,18 +842,18 @@ msgstr ""
"do Obsahu na úrovni tri. Každá hodnota je zadaná pod existujúcou hodnotou "
"úrovne tri."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Nepridávať automaticky nájdené kapitoly do obsahu."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
@ -872,20 +861,20 @@ msgstr ""
"Ak počet automaticky nájdených kapitol neprekročí túto hodnotu, budú odkazy "
"na ne pridané do obsahu. Predvolená hodnota je %default."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -895,7 +884,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -908,65 +897,65 @@ msgstr ""
"kapitoly nebudú nijako oddelené. Možnosť \"oboje\" vloží pred začiatky "
"kapitol zalomenia strán, spolu s vodorovnými čiarami."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr "Obálka nájdená v zdrojovom súbore má prednosť pred zvolenou obálkou."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
@ -975,41 +964,41 @@ msgstr ""
"užitočná ak prvý obrázok v knihe je obálka a má byť nahradená externou "
"obálkou."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1019,86 +1008,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "V archíve nebola nájdená žiadna elektronická kniha"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1675,7 +1664,7 @@ msgstr ""
"Prevezme obálku knihy podľa uvedeného kódu ISBN z LibraryThing.com\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr "Obálka"
@ -1707,70 +1696,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr "Titulná strana"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:168
msgid "Table of Contents"
msgstr "Obsah"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr "Register"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr "Slovník"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr "Poďakovania"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr "Zoznam použitej literatúry"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr "Tiráž"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr "Autorské práva"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr "Venovanie"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr "Doslov"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr "Predslov"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr "Zoznam obrázkov"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr "Zoznam tabuliek"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr "Poznámky"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr "Predhovor"
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr "Hlavný text"
@ -2189,25 +2178,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Boli nájdené duplikáty!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr "Uložené"
@ -6723,11 +6712,11 @@ msgstr "Kopírujem <b>%s</b>"
msgid "Compacting database"
msgstr "Zmenšujem databázu"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr "Prístupové heslo k vašej databáze calibre. Používateľské meno je "
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre 0.4.17\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-16 09:32+0000\n"
"Last-Translator: Ketrin <i_ketrin@mail.ru>\n"
"Language-Team: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"Generated-By: pygettext.py 1.5\n"
@ -64,7 +64,7 @@ msgstr "Preberi meta podatke iz %s datotek"
msgid "Installed plugins"
msgstr "Nameščeni plugini"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
@ -79,14 +79,12 @@ msgstr ""
#~ msgstr "Izpiši ustvarjeno NCX datoteko na standardni izhod"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -111,8 +109,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -120,13 +118,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -189,11 +187,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Neznano"
@ -394,15 +394,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -411,68 +411,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -480,24 +459,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -506,10 +485,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -519,67 +498,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Zaznava diska v pogonu %s ni mogoča. Poskusite s ponovnim zagonom."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -601,21 +594,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -776,11 +765,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -788,7 +777,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -796,7 +785,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -804,7 +793,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -813,17 +802,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -831,58 +820,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Ne dodaj samodejno zaznanih poglavij v Kazalo."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -892,7 +881,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -900,99 +889,99 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1002,86 +991,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1653,7 +1642,7 @@ msgstr ""
"Pridobi naslovnico za knjigo, identificirano po ISBN iz LibraryThing.com\n"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1684,70 +1673,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2160,25 +2149,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr "Duplikati najdeni!"
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6579,11 +6568,11 @@ msgstr "Kopiram <b>%s</b>"
msgid "Compacting database"
msgstr "Krčim bazo"
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-21 15:34+0000\n"
"Last-Translator: nicke <niklas.aronsson@gmail.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Gör ingenting"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Gör ingenting"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Gör ingenting"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Gör ingenting"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Okänt"
@ -380,15 +380,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -397,68 +397,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -466,24 +445,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -492,10 +471,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -505,67 +484,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -587,21 +580,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -753,11 +742,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -765,7 +754,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -773,7 +762,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -781,7 +770,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -790,17 +779,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -808,58 +797,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -869,7 +858,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -877,105 +866,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -985,86 +974,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1604,7 +1593,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1635,70 +1624,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2111,25 +2100,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6422,11 +6411,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-05-21 15:34+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Telugu <te@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr ""
@ -380,15 +380,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -397,68 +397,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -466,24 +445,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -492,10 +471,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -505,67 +484,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -587,21 +580,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -753,11 +742,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -765,7 +754,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -773,7 +762,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -781,7 +770,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -790,17 +779,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -808,58 +797,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -869,7 +858,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -877,105 +866,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -985,86 +974,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1604,7 +1593,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1635,70 +1624,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2111,25 +2100,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6422,11 +6411,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-06-06 08:53+0000\n"
"Last-Translator: Knedlyk <Unknown>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:04+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr "Робить абсолютно нічого"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr "Робить абсолютно нічого"
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr "Робить абсолютно нічого"
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr "Робить абсолютно нічого"
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "Невідомо"
@ -395,15 +395,15 @@ msgstr "Включити вибраний плагін"
msgid "Disable the named plugin"
msgstr "Виключити вибраний плагін"
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -412,68 +412,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr "John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Новини"
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr "Передаю книжки до пристрою..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
msgstr "Видаляю книжки з пристрою..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -481,24 +460,24 @@ msgstr ""
msgid "Device Interface"
msgstr "Інтерфейс пристрою"
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr "Спілкуюся з JetBook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr "James Ralston"
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr "Спілкуюся з Kindle eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr "Спілкуюся з Kindle 2 eBook reader."
@ -507,10 +486,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr "Спілкуюся з Sony PRS-500 eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -520,67 +499,81 @@ msgstr "Спілкуюся з Sony PRS-500 eBook reader."
msgid "Getting list of books on device..."
msgstr "Отримую список книжок на пристрої..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr "Спілкуюся з Sony PRS-505 eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr "Kovid Goyal і John Schember"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr "Отримую інформацію про пристрій..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
msgstr "Пристрій не має карти пам’яті в цьому слоті."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr "Видаляю книжки з пристрою..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr "Немає достатньо місця в головній пам’яті"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr "Немає достатньо місця на карті пам’яті"
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr "Висилаю метадані до пристрою..."
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr "Спілкуюся з Sony PRS-700 eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Не можу ініціалізувати диск %s. Спробуйте перезавантажитись."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr "Пристрій не має карти пам’яті в цьому слоті."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr "Вибраний слот: %s не підтримується."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr "Немає достатньо місця в головній пам’яті"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr "Немає достатньо місця на карті пам’яті"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr "Новини"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -602,21 +595,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr "Спілкуюся з eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr "Вибраний слот: %s не підтримується."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr "Додаю книжки до списку метаданих на пристрої..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr "Видаляю книжки з списку метаданих на пристрої..."
@ -768,11 +757,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -780,7 +769,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -788,7 +777,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -796,7 +785,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -805,17 +794,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -823,58 +812,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr "Не додавати автовизначені розділи до Змісту."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -884,7 +873,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -892,53 +881,53 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
@ -946,53 +935,53 @@ msgstr ""
"Використати обкладинку з джерельного файлу в налаштуваннях до визначеної "
"обкладинки."
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -1002,86 +991,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr "Не можу знайти е-книжку всередині архіву"
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1621,7 +1610,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1652,70 +1641,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2128,25 +2117,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6439,11 +6428,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: calibre\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2009-07-31 23:18+0000\n"
"POT-Creation-Date: 2009-08-03 21:27+0000\n"
"PO-Revision-Date: 2009-07-31 17:16+0000\n"
"Last-Translator: myle00 <Unknown>\n"
"Language-Team: Yiddish <yi@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-08-03 21:05+0000\n"
"X-Launchpad-Export-Date: 2009-08-07 16:28+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -22,14 +22,12 @@ msgid "Does absolutely nothing"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /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:649
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:653
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:702
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:706
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:403
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:68
@ -54,8 +52,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf.py:444
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:870
#: /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/pdf.py:66
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:29
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/pdf.py:71
#: /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
@ -63,13 +61,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:79
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:151
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:561
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:745
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:564
#: /home/kovid/work/calibre/src/calibre/ebooks/mobi/reader.py:748
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:44
#: /home/kovid/work/calibre/src/calibre/ebooks/odt/input.py:46
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:878
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:883
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:921
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:935
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:135
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/reader.py:137
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/jacket.py:86
@ -132,11 +130,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1601
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1629
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1680
#: /home/kovid/work/calibre/src/calibre/library/server.py:298
#: /home/kovid/work/calibre/src/calibre/library/server.py:361
#: /home/kovid/work/calibre/src/calibre/library/server.py:309
#: /home/kovid/work/calibre/src/calibre/library/server.py:373
#: /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
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:27
#: /home/kovid/work/calibre/src/calibre/utils/poppler/__init__.py:31
#: /home/kovid/work/calibre/src/calibre/web/feeds/news.py:51
msgid "Unknown"
msgstr "אומבאקאנט"
@ -380,15 +380,15 @@ msgstr ""
msgid "Disable the named plugin"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:12
msgid "Communicate with Android phones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:18
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:93
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
@ -397,68 +397,47 @@ msgid "Communicate with the Blackberry smart phone."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:24
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/recipe_hindu.py:12
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:17
msgid "Communicate with the Cybook eBook reader."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:20
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:79
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:27
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:21
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:66
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:77
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:30
msgid "John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:59
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:63
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:629
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:161
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:142
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:73
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:76
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:129
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:131
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:99
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:101
msgid "Transferring books to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:106
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:126
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:42
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:57
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:43
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:194
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:201
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:164
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:173
msgid "Removing books from device..."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:83
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:23
msgid "Communicate with the EB600 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -466,24 +445,24 @@ msgstr ""
msgid "Device Interface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/irexdr/driver.py:16
msgid "Communicate with the IRex Digital Reader 1000 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:16
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:22
msgid "Communicate with the JetBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:17
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:23
msgid "James Ralston"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:20
msgid "Communicate with the Kindle eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:69
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:65
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:76
msgid "Communicate with the Kindle 2 eBook reader."
msgstr ""
@ -492,10 +471,10 @@ msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/books.py:150
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:86
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:89
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:92
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:95
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:98
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:49
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:52
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:55
@ -505,67 +484,81 @@ msgstr ""
msgid "Getting list of books on device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:19
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:25
msgid "Communicate with the Sony PRS-505 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:20
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:14
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:17
msgid "Kovid Goyal and John Schember"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:80
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:109
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:113
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:84
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:86
msgid "The reader has no storage card in this slot."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:162
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:169
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:119
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:134
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:109
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:111
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:113
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:229
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:188
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:197
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:149
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/prs700/driver.py:16
msgid "Communicate with the Sony PRS-700 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:262
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:332
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:279
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:351
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:400
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:503
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:419
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:520
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:490
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:508
msgid "You must install the pmount package."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:509
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:526
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:640
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:642
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:668
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:670
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:672
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:682
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:467
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:83
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1006
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1010
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1333
msgid "News"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/deviceconfig.py:11
msgid "Configure Device"
msgstr ""
@ -587,21 +580,17 @@ msgstr ""
msgid "Read metadata from files on device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:26
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:29
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:88
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:151
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:107
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:115
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:177
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:182
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:138
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:143
msgid "Removing books from device metadata listing..."
msgstr ""
@ -753,11 +742,11 @@ msgstr ""
msgid "Output saved to"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:68
msgid "Level of verbosity. Specify multiple times for greater verbosity."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:74
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:75
msgid ""
"Specify the input profile. The input profile gives the conversion system "
"information on how to interpret various information in the input document. "
@ -765,7 +754,7 @@ msgid ""
"are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:85
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:86
msgid ""
"Specify the output profile. The output profile tells the conversion system "
"how to optimize the created document for the specified device. In some "
@ -773,7 +762,7 @@ msgid ""
"a device. For example EPUB on the SONY reader. Choices are:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:96
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:97
msgid ""
"The base font size in pts. All font sizes in the produced book will be "
"rescaled based on this size. By choosing a larger size you can make the "
@ -781,7 +770,7 @@ msgid ""
"chosen based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:106
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:107
msgid ""
"Mapping from CSS font names to font sizes in pts. An example setting is "
"12,12,14,16,18,20,22,24. These are the mappings for the sizes xx-small to xx-"
@ -790,17 +779,17 @@ msgid ""
"use a mapping based on the output profile you chose."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:118
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:119
msgid "Disable all rescaling of font sizes."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:125
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:126
msgid ""
"The line height in pts. Controls spacing between consecutive lines of text. "
"By default no line height manipulation is performed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:133
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:134
msgid ""
"Some badly designed documents use tables to control the layout of text on "
"the page. When converted these documents often have text that runs off the "
@ -808,58 +797,58 @@ msgid ""
"tables and present it in a linear fashion."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:143
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:144
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level one. If this is specified, it takes precedence over "
"other forms of auto-detection."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:152
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:153
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level two. Each entry is added under the previous level one "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:160
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:161
msgid ""
"XPath expression that specifies all tags that should be added to the Table "
"of Contents at level three. Each entry is added under the previous level two "
"entry."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:168
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:169
msgid ""
"Normally, if the source file already has a Table of Contents, it is used in "
"preference to the auto-generated one. With this option, the auto-generated "
"one is always used."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:176
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:177
msgid "Don't add auto-detected chapters to the Table of Contents."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:183
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:184
msgid ""
"If fewer than this number of chapters is detected, then links are added to "
"the Table of Contents. Default: %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:190
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:191
msgid ""
"Maximum number of links to insert into the TOC. Set to 0 to disable. Default "
"is: %default. Links are only added to the TOC if less than the threshold "
"number of chapters were detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:198
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:199
msgid ""
"Remove entries from the Table of Contents whose titles match the specified "
"regular expression. Matching entries and all their children are removed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:209
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:210
msgid ""
"An XPath expression to detect chapter titles. The default is to consider "
"<h1> or <h2> tags that contain the words \"chapter\",\"book\",\"section\" or "
@ -869,7 +858,7 @@ msgid ""
"User Manual for further help on using this feature."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:223
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:224
msgid ""
"Specify how to mark detected chapters. A value of \"pagebreak\" will insert "
"page breaks before chapters. A value of \"rule\" will insert a line before "
@ -877,105 +866,105 @@ msgid ""
"\"both\" will use both page breaks and lines to mark chapters."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:233
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:234
msgid ""
"Either the path to a CSS stylesheet or raw CSS. This CSS will be appended to "
"the style rules from the source file, so it can be used to override those "
"rules."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:242
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:243
msgid ""
"An XPath expression. Page breaks are inserted before the specified elements."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:248
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:249
msgid ""
"Set the top margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:253
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:254
msgid ""
"Set the bottom margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:258
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:259
msgid ""
"Set the left margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:263
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:264
msgid ""
"Set the right margin in pts. Default is %default. Note: 72 pts equals 1 inch"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:268
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:269
msgid ""
"Do not force text to be justified in output. Whether text is actually "
"displayed justified or not depends on whether the ebook format and reading "
"device support justification."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:275
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:276
msgid ""
"Remove spacing between paragraphs. Also sets an indent on paragraphs of "
"1.5em. Spacing removal will not work if the source file does not use "
"paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:282
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:283
msgid ""
"Use the cover detected from the source file in preference to the specified "
"cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:288
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:289
msgid ""
"Insert a blank line between paragraphs. Will not work if the source file "
"does not use paragraphs (<p> or <div> tags)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:295
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:296
msgid ""
"Remove the first image from the input ebook. Useful if the first image in "
"the source file is a cover and you are specifying an external cover."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:303
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:304
msgid ""
"Insert the book metadata at the start of the book. This is useful if your "
"ebook reader does not support displaying/searching metadata directly."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:311
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:312
msgid ""
"Attempt to detect and correct hard line breaks and other problems in the "
"source file. This may make things worse, so use with care."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:319
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:320
msgid "Use a regular expression to try and remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:326
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:327
msgid "The regular expression to use to remove the header."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:332
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:333
msgid "Use a regular expression to try and remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:339
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:340
msgid "The regular expression to use to remove the footer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:346
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:347
msgid ""
"Read metadata from the specified OPF file. Metadata read from this file will "
"override any metadata in the source file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:353
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:354
msgid ""
"Transliterate unicode characters to an ASCII representation. Use with care "
"because this will replace unicode characters with ASCII. For instance it "
@ -985,86 +974,86 @@ msgid ""
"number of people will be used (Chinese in the previous example)."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:368
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:369
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:37
msgid "Set the title."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:372
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:373
msgid "Set the authors. Multiple authors should be separated by ampersands."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:377
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:378
msgid "The version of the title to be used for sorting. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:381
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:382
msgid "String to be used when sorting by author. "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:385
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:386
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:51
msgid "Set the cover to the specified file."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:389
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:390
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:53
msgid "Set the ebook description."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:393
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:394
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:55
msgid "Set the ebook publisher."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:397
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:398
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:59
msgid "Set the series this ebook belongs to."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:401
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:402
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:61
msgid "Set the index of the book in this series."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:405
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:406
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:63
msgid "Set the rating. Should be a number between 1 and 5."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:409
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:410
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:65
msgid "Set the ISBN of the book."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:413
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:67
msgid "Set the tags for the book. Should be a comma separated list."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:417
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:418
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:69
msgid "Set the book producer."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:421
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:422
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/cli.py:71
msgid "Set the language."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:512
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:513
msgid "Could not find an ebook inside the archive"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:643
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:646
msgid "Converting input to HTML..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:658
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:661
msgid "Running transforms on ebook..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:733
#: /home/kovid/work/calibre/src/calibre/ebooks/conversion/plumber.py:736
msgid "Creating"
msgstr ""
@ -1604,7 +1593,7 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/opf2.py:1055
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1281
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
msgid "Cover"
msgstr ""
@ -1635,70 +1624,70 @@ msgstr ""
msgid "All articles"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1282
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
msgid "Title Page"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1283
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/transforms/htmltoc.py:15
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main.py:48
#: /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:1284
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1298
msgid "Index"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1285
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1299
msgid "Glossary"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1286
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1300
msgid "Acknowledgements"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1287
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1301
msgid "Bibliography"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1288
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1302
msgid "Colophon"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1289
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1303
msgid "Copyright"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1290
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1304
msgid "Dedication"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1291
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1305
msgid "Epigraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1292
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1306
msgid "Foreword"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1293
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1307
msgid "List of Illustrations"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1294
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1308
msgid "List of Tables"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1295
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1309
msgid "Notes"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1296
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1310
msgid "Preface"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1297
#: /home/kovid/work/calibre/src/calibre/ebooks/oeb/base.py:1311
msgid "Main Text"
msgstr ""
@ -2111,25 +2100,25 @@ msgstr ""
msgid "Searching in all sub-directories..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:155
msgid "Added"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:160
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:162
msgid "Duplicates found!"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:161
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:163
msgid ""
"Books with the same title as the following already exist in the database. "
"Add them anyway?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:185
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:187
msgid "Saving..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:237
#: /home/kovid/work/calibre/src/calibre/gui2/add.py:239
msgid "Saved"
msgstr ""
@ -6422,11 +6411,11 @@ msgstr ""
msgid "Compacting database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:148
#: /home/kovid/work/calibre/src/calibre/library/server.py:159
msgid "Password to access your calibre library. Username is "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/library/server.py:435
#: /home/kovid/work/calibre/src/calibre/library/server.py:450
msgid ""
"[options]\n"
"\n"

View File

@ -26,7 +26,7 @@ def get_metadata(stream, cover=True):
if not title or not title.strip():
title = _('Unknown')
if hasattr(stream, 'name'):
title = os.path.splitext(stream.name)[0]
title = os.path.splitext(os.path.basename(stream.name))[0]
author = doc.author
authors = string_to_authors(author) if author else [_('Unknown')]
creator = doc.creator

View File

@ -21,7 +21,7 @@ class Article(object):
self.id = id
self._title = title.strip() if title else title
try:
self._title = re.sub(r'&(\S+);',
self._title = re.sub(r'&(\S+?);',
entity_to_unicode, self._title)
except:
pass

View File

@ -48,7 +48,7 @@ recipe_modules = ['recipe_' + r for r in (
'the_budget_fashionista', 'elperiodico_catalan',
'elperiodico_spanish', 'expansion_spanish', 'lavanguardia',
'marca', 'kellog_faculty', 'kellog_insight', 'noaa',
'7dias', 'buenosaireseconomico',
'7dias', 'buenosaireseconomico', 'huntechnet',
'diagonales', 'miradasalsur', 'newsweek_argentina', 'veintitres',
'gva_be', 'hln', 'tijd', 'degentenaar', 'inquirer_net', 'uncrate',
'fastcompany', 'accountancyage', 'laprensa_hn', 'latribuna',

View File

@ -10,23 +10,34 @@ from calibre.web.feeds.news import BasicNewsRecipe
class BBC(BasicNewsRecipe):
title = u'The BBC'
__author__ = 'Kovid Goyal and Sujata Raman'
__author__ = 'Kovid Goyal ans Sujata Raman'
description = 'Global news and current affairs from the British Broadcasting Corporation'
language = _('English')
no_stylesheets = True
remove_tags = [dict(name='div', attrs={'class':'footer'}),
{'id' : ['popstory','blq-footer']},
{'class' : ['arrup','links','relatedbbcsites','arr','promobottombg','bbccom_visibility_hidden', 'sharesb', 'sib606', 'mvtb', 'storyextra', 'sidebar1', 'bbccom_text','promotopbg', 'gppromo','promotopbg','bbccom_display_none']},
]
remove_tags = [dict(name='div', attrs={'class':'footer'}),]
keep_only_tags = [dict(name='div', attrs={'class':'mainwrapper'})]
extra_css = '''
body{font-family:Arial,Helvetica,sans-serif; font-size:small;}
body{font-family:Arial,Helvetica,sans-serif; font-size:small; align:left}
h1{font-size:large;}
.sh{font-size:large; font-weight:bold}
.cap{font-size:xx-small; }
.lu{font-size:xx-small; }
.ds{font-size:xx-small; }
.mvb{font-size:xx-small;}
.by1{font-size:x-small; color:#666666}
.byd{font-size:x-small;}
'''
feeds = [
('News Front Page', 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml'),
('Science/Nature', 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/science/nature/rss.xml'),
('Technology', 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/technology/rss.xml'),
('Enterntainment', 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/entertainment/rss.xml'),
('Entertainment', 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/entertainment/rss.xml'),
('Magazine', 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/uk_news/magazine/rss.xml'),
('Business', 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/business/rss.xml'),
('Health', 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/health/rss.xml'),
@ -38,8 +49,22 @@ class BBC(BasicNewsRecipe):
('Africa', 'http://newsrss.bbc.co.uk/rss/newsonline_world_edition/africa/rss.xml'),
]
def postprocess_html(self, soup, first):
def print_version(self, url):
return url.replace('http://', 'http://newsvote.bbc.co.uk/mpapps/pagetools/print/')
for tag in soup.findAll(name= 'img', alt=""):
tag.extract()
for item in soup.findAll(align = "right"):
del item['align']
for tag in soup.findAll(name=['table', 'tr', 'td']):
tag.name = 'div'
return soup
# def print_version(self, url):
# return url.replace('http://', 'http://newsvote.bbc.co.uk/mpapps/pagetools/print/')

View File

@ -58,7 +58,7 @@ class ChicagoTribune(BasicNewsRecipe):
def get_article_url(self, article):
return article.get('feedburner_origlink', article.get('guid', article.get('link')))
def get_obfuscated_article(self, url, logger):
def get_obfuscated_article(self, url):
with self.obfuctation_lock:
soup = self.index_to_soup(url)
img = soup.find('img', alt='Print')

View File

@ -0,0 +1,37 @@
#!/usr/bin/env python
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
from __future__ import with_statement
__license__ = 'GPL v3'
__copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
__docformat__ = 'restructuredtext en'
from calibre.web.feeds.news import BasicNewsRecipe
class HunTechNet(BasicNewsRecipe):
title = u'TechNet'
oldest_article = 3
description = u'Az ut\xf3bbi 3 nap TechNet h\xedrei'
language = _('Hungarian')
lang = 'hu'
encoding = 'utf-8'
__author__ = 'Devilinside'
max_articles_per_feed = 30
timefmt = ' [%Y, %b %d, %a]'
extra_css = '''
body{font-family:Arial,Helvetica,sans-serif; font-size:small;}
h1{font-size:large;}
'''
remove_tags_after = dict(name='ul', attrs={'class':'cikk_bottom box'})
remove_tags_before = dict(name='div', attrs={'id':'c-main'})
remove_tags = [dict(name='div', attrs={'class':'wrp clr'})]
feeds = [(u'C\xedmlap',
u'http://www.technet.hu/rss/cimoldal/'), (u'TechTud',
u'http://www.technet.hu/rss/techtud/'), (u'PDA M\xe1nia',
u'http://www.technet.hu/rss/pdamania/'), (u'Telefon',
u'http://www.technet.hu/rss/telefon/'), (u'Sz\xe1m\xedt\xf3g\xe9p',
u'http://www.technet.hu/rss/notebook/'), (u'GPS',
u'http://www.technet.hu/rss/gps/')]

View File

@ -12,7 +12,10 @@ from calibre.web.feeds.news import BasicNewsRecipe
class Instapaper(BasicNewsRecipe):
title = 'Instapaper.com'
__author__ = 'Darko Miletic'
description = 'Personalized news feeds. Go to instapaper.com to setup up your news.'
description = '''Personalized news feeds. Go to instapaper.com to
setup up your news. Fill in your instapaper
username, and leave the password field
below blank.'''
publisher = 'Instapaper.com'
category = 'news, custom'
oldest_article = 7

View File

@ -8,7 +8,7 @@ nytimes.com
import re
from calibre import entity_to_unicode
from calibre.web.feeds.recipes import BasicNewsRecipe
from calibre.ebooks.BeautifulSoup import BeautifulSoup, Tag
from calibre.ebooks.BeautifulSoup import BeautifulSoup, Tag, NavigableString, Comment
class NYTimes(BasicNewsRecipe):
@ -42,36 +42,39 @@ class NYTimes(BasicNewsRecipe):
# By default, no sections are skipped.
excludeSectionKeywords = []
# To skip sections containing the word 'Sports' or 'Dining', use:
# Add section keywords from the right column above to skip that section
# For example, to skip sections containing the word 'Sports' or 'Dining', use:
# excludeSectionKeywords = ['Sports', 'Dining']
# Fetch only Business and Technology
#excludeSectionKeywords = ['Arts','Dining','Editorials','Health','Magazine','Media','Region','Op-Ed','Politics','Science','Sports','Top Stories','Travel','U.S.','World']
# excludeSectionKeywords = ['Arts','Dining','Editorials','Health','Magazine','Media','Region','Op-Ed','Politics','Science','Sports','Top Stories','Travel','U.S.','World']
# Fetch only Top Stories
#excludeSectionKeywords = ['Arts','Business','Dining','Editorials','Health','Magazine','Media','Region','Op-Ed','Politics','Science','Sports','Technology','Travel','U.S.','World']
# excludeSectionKeywords = ['Arts','Business','Dining','Editorials','Health','Magazine','Media','Region','Op-Ed','Politics','Science','Sports','Technology','Travel','U.S.','World']
# The maximum number of articles that will be downloaded
max_articles_per_feed = 50
max_articles_per_feed = 40
timefmt = ''
needs_subscription = True
remove_tags_after = dict(attrs={'id':['comments']})
remove_tags = [dict(attrs={'class':['articleTools', 'post-tools', 'side_tool', 'nextArticleLink',
'clearfix', 'nextArticleLink clearfix','inlineSearchControl',
'columnGroup','entry-meta','entry-response module','jumpLink','nav',
'columnGroup advertisementColumnGroup', 'kicker entry-category']}),
dict(id=['footer', 'toolsRight', 'articleInline', 'navigation', 'archive',
'side_search', 'blog_sidebar', 'side_tool', 'side_index', 'login',
'blog-header','searchForm','NYTLogo','insideNYTimes','adxToolSponsor',
'adxLeaderboard']),
dict(name=['script', 'noscript', 'style','hr'])]
keep_only_tags = [ dict(attrs={ 'id':['article']})]
remove_tags = [ dict(attrs={'class':['nextArticleLink clearfix', 'clearfix',
'inlineVideo left brightcove']}),
dict(attrs={ 'id':['toolsRight','inlineBox','sidebarArticles',
'portfolioInline','articleInline','readerscomment']}) ]
encoding = 'cp1252'
no_stylesheets = True
extra_css = '.headline {text-align:left;}\n\
.byline {font:monospace; margin-bottom:0px;}\n\
.source {align:left;}\n\
.credit {text-align:right;font-size:smaller;}\n'
extra_css = '.headline {text-align: left;}\n \
.byline {font-family: monospace; \
text-align: left; \
margin-bottom: 0px;}\n \
.timestamp {font-size: smaller;}\n \
.source {text-align: left;}\n \
.image {text-align: center;}\n \
.credit {text-align: right; \
font-size: smaller;}\n \
.articleBody {text-align: left;}\n \
.authorId {text-align: left; \
font-style: italic;}\n '
def get_browser(self):
br = BasicNewsRecipe.get_browser()
@ -113,6 +116,8 @@ class NYTimes(BasicNewsRecipe):
if docEncoding == '' :
docEncoding = self.encoding
if self.verbose > 2:
self.log( " document encoding: '%s'" % docEncoding)
if docEncoding != self.encoding :
soup = get_the_soup(docEncoding, url_or_raw)
@ -189,7 +194,6 @@ class NYTimes(BasicNewsRecipe):
key = self.sections[section]
excluded = re.compile('|'.join(self.excludeSectionKeywords))
if excluded.search(key) or articles.has_key(key):
if self.verbose : self.log("Skipping section %s" % key)
skipThisSection = True
break
@ -200,8 +204,7 @@ class NYTimes(BasicNewsRecipe):
# Extract the bylines and descriptions
if (i.string is not None) and \
(i.string.strip() > "") and \
not ('Comment' in str(i.__class__)) :
not isinstance(i,Comment):
contentString = i.strip().encode('utf-8')
if contentString[0:3] == 'By ' :
bylines.append(contentString)
@ -212,8 +215,6 @@ class NYTimes(BasicNewsRecipe):
articleCount = len(sectionblock.findAll('span'))
for (i,span) in enumerate(sectionblock.findAll('span')) :
a = span.find('a', href=True)
#if not a:
#continue
url = re.sub(r'\?.*', '', a['href'])
url += '?pagewanted=all'
@ -234,15 +235,13 @@ class NYTimes(BasicNewsRecipe):
# Check for duplicates
duplicateFound = False
if len(articles[feed]) > 1:
#print articles[feed]
for article in articles[feed] :
#print "comparing %s\n %s\n" % (url, article['url'])
if url == article['url'] :
duplicateFound = True
break
#print
if duplicateFound:
# Continue fetching, don't add this article
continue
if not articles.has_key(feed):
@ -253,32 +252,41 @@ class NYTimes(BasicNewsRecipe):
ans = self.sort_index_by(ans, {'Top Stories':-1})
ans = [(key, articles[key]) for key in ans if articles.has_key(key)]
return ans
def strip_anchors(self,soup):
paras = soup.findAll(True)
for para in paras:
aTags = para.findAll('a')
for a in aTags:
if a.img is None:
a.replaceWith(a.renderContents().decode('cp1252','replace'))
return soup
def preprocess_html(self, soup):
refresh = soup.find('meta', {'http-equiv':'refresh'})
if refresh is None:
return soup
return self.strip_anchors(soup)
content = refresh.get('content').partition('=')[2]
raw = self.browser.open('http://www.nytimes.com'+content).read()
return BeautifulSoup(raw.decode('cp1252', 'replace'))
soup = BeautifulSoup(raw.decode('cp1252', 'replace'))
return self.strip_anchors(soup)
def postprocess_html(self,soup, True):
# Change class="kicker" to <h3>
kicker = soup.find(True, {'class':'kicker'})
if kicker is not None :
h3Tag = Tag(soup, "h3")
h3Tag.insert(0, self.tag_to_string(kicker))
h3Tag.insert(0, kicker.contents[0])
kicker.replaceWith(h3Tag)
# Change captions to italic -1
for caption in soup.findAll(True, {'class':'caption'}) :
if caption is not None:
emTag = Tag(soup, "em")
#emTag['class'] = "caption"
#emTag['font-size-adjust'] = "-1"
emTag.insert(0, self.tag_to_string(caption))
emTag.insert(0, caption.contents[0])
hrTag = Tag(soup, 'hr')
emTag.insert(1, hrTag)
caption.replaceWith(emTag)
@ -286,10 +294,10 @@ class NYTimes(BasicNewsRecipe):
# Change <nyt_headline> to <h2>
headline = soup.find("nyt_headline")
if headline is not None :
h2tag = Tag(soup, "h2")
h2tag['class'] = "headline"
h2tag.insert(0, self.tag_to_string(headline))
headline.replaceWith(h2tag)
tag = Tag(soup, "h2")
tag['class'] = "headline"
tag.insert(0, headline.contents[0])
soup.h1.replaceWith(tag)
# Change <h1> to <h3> - used in editorial blogs
masthead = soup.find("h1")
@ -297,14 +305,34 @@ class NYTimes(BasicNewsRecipe):
# Nuke the href
if masthead.a is not None :
del(masthead.a['href'])
h3tag = Tag(soup, "h3")
h3tag.insert(0, self.tag_to_string(masthead))
masthead.replaceWith(h3tag)
tag = Tag(soup, "h3")
tag.insert(0, masthead.contents[0])
soup.h1.replaceWith(tag)
# Change <span class="bold"> to <b>
for subhead in soup.findAll(True, {'class':'bold'}) :
bTag = Tag(soup, "b")
bTag.insert(0, self.tag_to_string(subhead))
bTag.insert(0, subhead.contents[0])
subhead.replaceWith(bTag)
# Synthesize a section header
dsk = soup.find('meta', attrs={'name':'dsk'})
if dsk is not None and dsk.has_key('content'):
hTag = Tag(soup,'h3')
hTag['class'] = 'section'
hTag.insert(0,NavigableString(dsk['content']))
articleTag = soup.find(True, attrs={'id':'article'})
articleTag.insert(0,hTag)
# Add class="articleBody" to <div> so we can format with CSS
divTag = soup.find('div',attrs={'id':'articleBody'})
if divTag is not None :
divTag['class'] = divTag['id']
# Add class="authorId" to <div> so we can format with CSS
divTag = soup.find('div',attrs={'id':'authorId'})
if divTag is not None :
divTag['class'] = divTag['id']
return soup

View File

@ -3,19 +3,19 @@
__license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal <kovid at kovidgoyal.net>'
'''
Fetches the last 7 days of featured articles from slate.com
calibre recipe for slate.com
'''
import re
import string, re, sys
from calibre import strftime
from calibre.web.feeds.recipes import BasicNewsRecipe
from calibre.ebooks.BeautifulSoup import BeautifulSoup, NavigableString, CData, Tag
from calibre.ebooks.BeautifulSoup import BeautifulSoup, NavigableString, CData, Comment, Tag
class Slate(BasicNewsRecipe):
class PeriodicalNameHere(BasicNewsRecipe):
# Method variables for customizing downloads
title = 'Slate'
description = 'A daily magazine on the Web, offering analysis and commentary about politics, news and culture.'
__author__ = 'GRiker@hotmail.com'
language = _('English')
description = 'A general-interest publication offering analysis and commentary about politics, news and culture.'
__author__ = 'GRiker'
max_articles_per_feed = 40
oldest_article = 7.0
recursions = 0
@ -26,33 +26,58 @@ class Slate(BasicNewsRecipe):
feeds = None
no_stylesheets = True
encoding = None
language = _('English')
# Method variables for customizing feed parsing
summary_length = 250
use_embedded_content = None
# Method variables for pre/post processing of HTML
remove_tags = [ dict(name=['link','style']),
dict(id=['toolbox','site_navigation','article_bottom_tools_cntr',
'article_bottom_tools','recommend_tab2','bottom_sponsored_links',
'fray_article_discussion','bizbox_sponsored_links_bottom',
'page_rightcol','top_banner','also_in_slate_bottom','articlefooter',
'article_top_wedge','content-top','page-title',
'block-today039s-business-press-archives','block-blog-roll',
'block-also-in-tbm','block-most-popular-on-tbm','block-the-best-of-tbm',
'service-links-bottom','comments','ft']),
dict(attrs={'class':['fray_article_links','clearing','nav',
'service-links service-links-stack','yui-b last',
'read-more-comments']})]
extra_css = '.headline {text-align:left;}\n\
.byline {font:monospace; text-align:left; margin-bottom:0pt;}\n\
.dateline {text-align:left; height:0pt;}\n\
.source {align:left;}\n\
.credit {text-align:right;font-size:smaller;}\n'
preprocess_regexps = [ (re.compile(r'<p><em>Disclosure: <strong>Slate</strong> is owned by the Washington Post.*</p>',
re.DOTALL|re.IGNORECASE),
lambda match: ''),
(re.compile(r'<p><strong><em>Join the discussion about this story on.*</p>',
re.DOTALL|re.IGNORECASE),
lambda match: '') ]
match_regexps = []
# The second entry is for 'Big Money', which comes from a different site, uses different markup
keep_only_tags = [dict(attrs={ 'id':['article_top', 'article_body']}),
dict(attrs={ 'id':['content']}) ]
# The second entry is for 'Big Money', which comes from a different site, uses different markup
remove_tags = [dict(attrs={ 'id':['toolbox','recommend_tab','insider_ad_wrapper',
'article_bottom_tools_cntr','fray_article_discussion',
'fray_article_links','bottom_sponsored_links','author_bio',
'bizbox_links_bottom','ris_links_wrapper','BOXXLE']}),
dict(attrs={ 'id':['content-top','service-links-bottom','hed']}) ]
excludedDescriptionKeywords = ['Slate V','Twitter feed','podcast']
excludedTitleKeywords = ['Gabfest','Slate V','on Twitter']
excludedAuthorKeywords = []
excludedContentKeywords = ['http://twitter.com/Slate']
extra_css = '.headline {text-align:left;}\n\
.byline {font-family: monospace; \
text-align: left;\
margin-bottom: 0px;}\n\
.dateline {text-align: left; \
font-size: smaller;\
height: 0pt;}\n\
.imagewrapper {text-align: center;}\n\
.source {text-align: left;}\n\
.credit {text-align: right;\
font-size: smaller;}\n\
.article_body {text-align: left;}\n'
# Local variables to extend class
baseURL = 'http://slate.com'
section_dates = []
# class extension methods
def tag_to_strings(self, tag):
if not tag:
return ''
@ -68,9 +93,9 @@ class Slate(BasicNewsRecipe):
strings.append(res)
return strings
def extract_sections(self):
soup = self.index_to_soup( self.baseURL )
soup_top_stories = soup.find(True, attrs={'class':'tap2_topic entry-content'})
soup = soup.find(True, attrs={'id':'toc_links_container'})
@ -90,13 +115,14 @@ class Slate(BasicNewsRecipe):
sections = []
for section in section_lists :
sections.append(section)
return sections
def extract_section_articles(self, sections_html) :
# Find the containers with section content
soup = self.index_to_soup(str(sections_html))
sections = soup.findAll('ul')
articles = {}
key = None
ans = []
@ -114,10 +140,6 @@ class Slate(BasicNewsRecipe):
# Get the section article_list
article_list = section.findAll('li')
excludedDescriptionKeywords = ['Slate V','Twitter feed','podcast']
excludedTitleKeywords = ['Gabfest','Slate V']
excludedAuthorKeywords = ['Prudence']
# Extract the article attributes
for article in article_list :
bylines = self.tag_to_strings(article)
@ -142,7 +164,6 @@ class Slate(BasicNewsRecipe):
if full_byline.find('major U.S. newspapers') > 0 :
description = "A summary of what's in the major U.S. newspapers."
if len(bylines) > 3 and author is not None:
author += " | "
for (i,substring) in enumerate(bylines[3:]) :
@ -152,25 +173,28 @@ class Slate(BasicNewsRecipe):
author += " | "
# Skip articles whose descriptions contain excluded keywords
if description is not None :
excluded = re.compile('|'.join(excludedDescriptionKeywords))
if description is not None and len(self.excludedDescriptionKeywords):
excluded = re.compile('|'.join(self.excludedDescriptionKeywords))
found_excluded = excluded.search(description)
if found_excluded :
if self.verbose : self.log(" >>> skipping %s (description keyword exclusion: %s) <<<\n" % (title, found_excluded.group(0)))
continue
# Skip articles whose title contain excluded keywords
if full_title is not None :
excluded = re.compile('|'.join(excludedTitleKeywords))
if full_title is not None and len(self.excludedTitleKeywords):
excluded = re.compile('|'.join(self.excludedTitleKeywords))
#self.log("evaluating full_title: %s" % full_title)
found_excluded = excluded.search(full_title)
if found_excluded :
if self.verbose : self.log(" >>> skipping %s (title keyword exclusion: %s) <<<\n" % (title, found_excluded.group(0)))
continue
# Skip articles whose author contain excluded keywords
if author is not None :
excluded = re.compile('|'.join(excludedAuthorKeywords))
if author is not None and len(self.excludedAuthorKeywords):
excluded = re.compile('|'.join(self.excludedAuthorKeywords))
found_excluded = excluded.search(author)
if found_excluded :
if self.verbose : self.log(" >>> skipping %s (author keyword exclusion: %s) <<<\n" % (title, found_excluded.group(0)))
continue
skip_this_article = False
@ -203,19 +227,25 @@ class Slate(BasicNewsRecipe):
def flatten_document(self, ans):
flat_articles = []
for (i,section) in enumerate(ans) :
#self.log("flattening section %s: " % section[0])
for article in section[1] :
#self.log("moving %s to flat_articles[]" % article['title'])
flat_articles.append(article)
flat_section = ['All Articles', flat_articles]
flat_ans = [flat_section]
return flat_ans
def remove_duplicates(self, ans):
# Return a stripped ans
for (i,section) in enumerate(ans) :
#self.log("section %s: " % section[0])
for article in section[1] :
#self.log("\t%s" % article['title'])
#self.log("\looking for %s" % article['url'])
for (j,subsequent_section) in enumerate(ans[i+1:]) :
for (k,subsequent_article) in enumerate(subsequent_section[1]) :
if article['url'] == subsequent_article['url'] :
#self.log( "removing %s (%s) from %s" % (subsequent_article['title'], subsequent_article['url'], subsequent_section[0]) )
del subsequent_section[1][k]
return ans
@ -229,18 +259,77 @@ class Slate(BasicNewsRecipe):
section_list = self.flatten_document(section_list)
return section_list
def get_browser(self) :
return BasicNewsRecipe.get_browser()
def stripAnchors(self,soup):
body = soup.find('div',attrs={'id':['article_body','content']})
if body is not None:
paras = body.findAll('p')
if paras is not None:
for para in paras:
aTags = para.findAll('a')
if aTags is not None:
for a in aTags:
if a.img is None:
#print repr(a.renderContents())
a.replaceWith(a.renderContents().decode('utf-8','replace'))
return soup
def preprocess_html(self, soup) :
# Remove 'grayPlus4.png' images
imgs = soup.findAll('img')
if imgs is not None:
for img in imgs:
if re.search("grayPlus4.png",str(img)):
img.extract()
# Delete article based upon content keywords
if len(self.excludedDescriptionKeywords):
excluded = re.compile('|'.join(self.excludedContentKeywords))
found_excluded = excluded.search(str(soup))
if found_excluded :
return None
# Articles from www.thebigmoney.com use different tagging for byline, dateline and body
head = soup.find('head')
if head.link is not None and re.search('www\.thebigmoney\.com', str(head)):
byline = soup.find('div',attrs={'id':'byline'})
if byline is not None:
byline['class'] = byline['id']
dateline = soup.find('div',attrs={'id':'dateline'})
if dateline is not None:
dateline['class'] = dateline['id']
body = soup.find('div',attrs={'id':'content'})
if body is not None:
body['class'] = 'article_body'
# Synthesize a department kicker
h3Tag = Tag(soup,'h3')
emTag = Tag(soup,'em')
emTag.insert(0,NavigableString("the big money: Today's business press"))
h3Tag.insert(0,emTag)
soup.body.insert(0,h3Tag)
# Strip anchors from HTML
return self.stripAnchors(soup)
def postprocess_html(self, soup, first_fetch) :
# Fix up dept_kicker as <h3><em>
dept_kicker = soup.find(True, attrs={'class':'department_kicker'})
dept_kicker = soup.find('div', attrs={'class':'department_kicker'})
if dept_kicker is not None :
kicker_strings = self.tag_to_strings(dept_kicker)
kicker = kicker_strings[2] + kicker_strings[3]
kicker = re.sub('.','',kicker)
#kicker = kicker_strings[2] + kicker_strings[3]
kicker = ''.join(kicker_strings[2:])
kicker = re.sub('\.','',kicker)
h3Tag = Tag(soup, "h3")
emTag = Tag(soup, "em")
emTag.insert(0,NavigableString(kicker))
h3Tag.insert(0, emTag)
emTag.insert(0,kicker)
dept_kicker.replaceWith(h3Tag)
# Change <h1> to <h2>
@ -262,6 +351,7 @@ class Slate(BasicNewsRecipe):
if byline is not None :
bylineTag = Tag(soup,'div')
bylineTag['class'] = 'byline'
#bylineTag['height'] = '0em'
bylineTag.insert(0,self.tag_to_string(byline))
byline.replaceWith(bylineTag)
@ -269,6 +359,7 @@ class Slate(BasicNewsRecipe):
if dateline is not None :
datelineTag = Tag(soup, 'div')
datelineTag['class'] = 'dateline'
#datelineTag['margin-top'] = '0em'
datelineTag.insert(0,self.tag_to_string(dateline))
dateline.replaceWith(datelineTag)
@ -281,6 +372,14 @@ class Slate(BasicNewsRecipe):
emTag.insert(1, hrTag)
caption.replaceWith(emTag)
# Fix photos
for photo in soup.findAll('span',attrs={'class':'imagewrapper'}):
if photo.a is not None and photo.a.img is not None:
divTag = Tag(soup,'div')
divTag['class'] ='imagewrapper'
divTag.insert(0,photo.a.img)
photo.replaceWith(divTag)
return soup
def postprocess_book(self, oeb, opts, log) :
@ -300,31 +399,28 @@ class Slate(BasicNewsRecipe):
if self.tag_to_string(p,use_alt=False).startswith('By ') or \
self.tag_to_string(p,use_alt=False).startswith('Posted '):
continue
images = p.findAll(True, attrs={'class':'imagewrapper'})
for image in images :
image.extract()
return self.tag_to_string(p,use_alt=False)[:200] + '...'
comment = p.find(text=lambda text:isinstance(text, Comment))
if comment is not None:
continue
else:
return self.tag_to_string(p,use_alt=False)[:self.summary_length] + '...'
return None
# Method entry point here
# Single section toc looks different than multi-section tocs
if oeb.toc.depth() == 2 :
for article in oeb.toc :
if article.author is None :
article.author = extract_byline(article.href)
if article.description is None :
article.description = extract_description(article.href)
elif oeb.toc.depth() == 3 :
for section in oeb.toc :
for article in section :
if article.author is None :
article.author = extract_byline(article.href)
if article.description is None :
article.description = extract_description(article.href)