Sync to trunk.

This commit is contained in:
John Schember 2010-01-04 19:53:24 -05:00
commit 1969ba074f
26 changed files with 13940 additions and 4659 deletions

View File

@ -4,6 +4,131 @@
# for important features/bug fixes.
# Also, each release can have new and improved recipes.
- version: 0.6.32
date: 2010-01-03
new features:
- title: Allow users to customize where books are placed by the Send to Device action
type: major
description: >
"Users can now specify the folder structure and file name of files placed on the device when using the
Send to Device action. This is useful for those devices that allow browsing of the on device folder
structure. Customization is available via Preferences->Add/Save->Sending to device and can also
be overriden on a per device basis from Preferences->Plugins->Device Interface plugins"
- title: "Browse by tags: Make clicking on a tag cause all other tags to be de-selected, unless CTRL or SHIFT is pressed."
- title: "News downloads: Automagically handle PDF covers"
- title: Sort tags in the main view alphabetically
tickets: [4234]
- title: Add command line option to content server to specify the path to the library to be served
- title: Support for the Hanvon N516, Binatone Readme and the Longshine ShineBook
bug fixes:
- title: Fix various issues that could prevent calibre from starting on OS X
- title: "Speed up device detection on windows. Difference will be noticeable for all the EB600 clones in particular"
- title: Fix regression preventing User style sheets from working in the e-book viewer for the past couple of releases.
tickets: [4331]
- title: "Don't update main books list when showing Cover Browser. Should speed it up on slow computers."
tickets: [4412]
- title: Fix detection of iRiver Story on windows
tickets: [4357]
- title: "EPUB Output: Fix play order in generated NCX being uniformly zero when the input HTML file has a name with special characters."
tickets: [4397]
- title: "Fix bug that prevented the changing of case of authors/series and publishers."
- title: Fix editing series name in main screen would cause an extra space to be added at the end
tickets: [4400]
- title: Fix support for Android devices on linux
tickets: [4404]
- title: "Allow GUI to start even if home directory does not support sockets on Linux/OS X"
ticket: [4074]
- title: "TXT Input: Remove specific options for indent and flush paragraphs, use the look and feel remove paragraph spacing option instead."
- title: "MOBI metadata: Don't leave around a styles.css file when trying to extract embedded metadata"
- title: "MOBI Input: Change default encoding for files that don't specify a codepage from cp1251 to cp1252"
- title: "Linux binary: Add system QT_PLUGIN_PATH to enable calibre to use the user specified Qt style"
new recipes:
- title: Foreign Affairs
author: kwetal
- title: New England Journal of Medicine
author: Krittika Goyal
- title: Asia One
author: Bruce
- title: Mother Jones
author: kwetal
- title: Entrepreneur Magazine
author: kwetal
- title: Milwaukee Journal Sentinel
author: Krittika Goyal
- title: Pilot One
author: Krittika Goyal
- title: Cyprus Weekly
author: kwetal
- title: RTE
author: Robin Phillips
- title: Psychology Today
author: Krittika Goyal
- title: The Providence Journal
author: Krittika Goyal
- title: The Denver Post
author: Krittika Goyal
- title: Pro Publica
author: kwetal
- title: Big Government
author: kwetal
- title: El Universal Impressa
author: kwetal
- title: Journal of Accountancy
author: kwetal
- title: The New York Magazine
author: Kovid Goyal
- title: Chowk
author: kwetal
- title: Dawn
author: kwetal
- title: The News
author: kwetal
improved recipes:
- The National Post
- The Economist (free)
- The Independent
- version: 0.6.31
date: 2009-12-27

Binary file not shown.

After

Width:  |  Height:  |  Size: 738 B

View File

@ -0,0 +1,124 @@
from calibre.web.feeds.news import BasicNewsRecipe
import re
from calibre.ptempfile import PersistentTemporaryFile
class ForeignAffairsRecipe(BasicNewsRecipe):
__license__ = 'GPL v3'
__author__ = 'kwetal'
language = 'en'
version = 1
title = u'Foreign Affairs (Subcription or (free) Registration)'
publisher = u'Council on Foreign Relations'
category = u'USA, Foreign Affairs'
description = u'The leading forum for serious discussion of American foreign policy and international affairs.'
no_stylesheets = True
remove_javascript = True
INDEX = 'http://www.foreignaffairs.com'
remove_tags = []
remove_tags.append(dict(name = 'base'))
#remove_tags.append(dict(name = '', attrs = {'': ''}))
remove_tags_before = dict(name = 'h1', attrs = {'class': 'print-title'})
remove_tags_after = dict(name = 'div', attrs = {'class': 'print-footer'})
extra_css = '''
body{font-family:verdana,arial,helvetica,geneva,sans-serif;}
div.print-footer {font-size: x-small; color: #696969;}
'''
conversion_options = {'comments': description, 'tags': category, 'language': 'en',
'publisher': publisher}
temp_files = []
articles_are_obfuscated = True
def get_obfuscated_article(self, url):
br = self.get_browser()
br.open(url)
response = br.follow_link(url_regex = r'/print/[0-9]+', nr = 0)
html = response.read()
self.temp_files.append(PersistentTemporaryFile('_fa.html'))
self.temp_files[-1].write(html)
self.temp_files[-1].close()
return self.temp_files[-1].name
def parse_index(self):
soup = self.index_to_soup('http://www.foreignaffairs.com/magazine')
articles = []
answer = []
content = soup.find('div', attrs = {'class': 'center-wrapper'})
if content:
for div in content.findAll('div', attrs = {'class': re.compile(r'view-row\s+views-row-[0-9]+\s+views-row-[odd|even].*')}):
tag = div.find('div', attrs = {'class': 'views-field-title'})
if tag:
a = tag.find('a')
if a:
title = self.tag_to_string(a)
url = self.INDEX + a['href']
author = self.tag_to_string(div.find('div', attrs = {'class': 'views-field-field-article-display-authors-value'}))
tag = div.find('span', attrs = {'class': 'views-field-field-article-summary-value'})
# If they ever fix their markup, this will break :-(
summary = self.tag_to_string(tag.findNextSibling('p'))
description = author + '<br/>' + summary
articles.append({'title': title, 'date': None, 'url': url, 'description': description})
else:
continue
else:
continue
answer.append(('Magazine', articles))
ul = content.find('ul')
if ul:
articles = []
for li in ul.findAll('li'):
tag = li.find('div', attrs = {'class': 'views-field-title'})
if tag:
a = tag.find('a')
if a:
title = self.tag_to_string(a)
url = self.INDEX + a['href']
description = ''
tag = li.find('div', attrs = {'class': 'views-field-field-article-display-authors-value'})
if tag:
description = self.tag_to_string(tag)
articles.append({'title': title, 'date': None, 'url': url, 'description': description})
else:
continue
else:
continue
answer.append(('Letters to the Editor', articles))
return answer
def preprocess_html(self, soup):
for img in soup.findAll('img', attrs = {'src': True}):
if not img['src'].startswith('http://'):
img['src'] = self.INDEX + img['src']
return soup
needs_subscription = True
def get_browser(self):
br = BasicNewsRecipe.get_browser()
if self.username is not None and self.password is not None:
br.open('https://www.foreignaffairs.com/user?destination=home')
br.select_form(nr = 1)
br['name'] = self.username
br['pass'] = self.password
br.submit()
return br

View File

@ -1,5 +1,3 @@
import string, re
from calibre import strftime
from calibre.web.feeds.recipes import BasicNewsRecipe
from calibre.ebooks.BeautifulSoup import BeautifulSoup

View File

@ -1,7 +1,4 @@
import string, re
from calibre import strftime
from calibre.web.feeds.recipes import BasicNewsRecipe
from calibre.ebooks.BeautifulSoup import BeautifulSoup
class NYTimes(BasicNewsRecipe):

View File

@ -2,7 +2,7 @@ __license__ = 'GPL v3'
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
__docformat__ = 'restructuredtext en'
__appname__ = 'calibre'
__version__ = '0.6.31'
__version__ = '0.6.32'
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
import re

View File

@ -31,7 +31,8 @@ class Plugin(object):
#: For example: ``['windows', 'osx', 'linux']
supported_platforms = []
#: The name of this plugin
#: The name of this plugin. You must set it something other
#: than Trivial Plugin for it to work.
name = 'Trivial Plugin'
#: The version of this plugin as a 3-tuple (major, minor, revision)

View File

@ -66,7 +66,8 @@ def load_plugin(path_to_zip_file):
raw = re.sub('\r\n', '\n', raw)
exec raw in locals
for x in locals.values():
if isinstance(x, type) and issubclass(x, Plugin):
if isinstance(x, type) and issubclass(x, Plugin) and \
x.name != 'Trivial Plugin':
if x.minimum_calibre_version > version or \
platform not in x.supported_platforms:
continue

View File

@ -66,7 +66,6 @@ if pictureflow is not None:
return self.model.cover(index)
class CoverFlow(pictureflow.PictureFlow):
def __init__(self, height=300, parent=None, text_height=25):

View File

@ -528,17 +528,17 @@ class Main(MainWindow, Ui_MainWindow, DeviceGUI):
self.cover_flow.setVisible(False)
if not config['separate_cover_flow']:
self.library.layout().addWidget(self.cover_flow)
self.connect(self.cover_flow, SIGNAL('currentChanged(int)'),
self.sync_cf_to_listview)
self.connect(self.cover_flow, SIGNAL('itemActivated(int)'),
self.show_book_info)
#self.connect(self.cover_flow, SIGNAL('currentChanged(int)'),
# self.sync_cf_to_listview)
#self.connect(self.cover_flow, SIGNAL('itemActivated(int)'),
# self.show_book_info)
self.connect(self.status_bar.cover_flow_button,
SIGNAL('toggled(bool)'), self.toggle_cover_flow)
self.connect(self.cover_flow, SIGNAL('stop()'),
self.status_bar.cover_flow_button.toggle)
QObject.connect(self.library_view.selectionModel(),
SIGNAL('currentRowChanged(QModelIndex, QModelIndex)'),
self.sync_cf_to_listview)
#QObject.connect(self.library_view.selectionModel(),
# SIGNAL('currentRowChanged(QModelIndex, QModelIndex)'),
# self.sync_cf_to_listview)
self.db_images = DatabaseImages(self.library_view.model())
self.cover_flow.setImages(self.db_images)
else:
@ -669,6 +669,7 @@ class Main(MainWindow, Ui_MainWindow, DeviceGUI):
def toggle_cover_flow(self, show):
if config['separate_cover_flow']:
if show:
self.cover_flow.setCurrentSlide(self.library_view.currentIndex().row())
d = QDialog(self)
ah, aw = available_height(), available_width()
d.resize(int(aw/2.), ah-60)
@ -684,6 +685,11 @@ class Main(MainWindow, Ui_MainWindow, DeviceGUI):
self.uncheck_cover_button)
self.cf_dialog = d
else:
idx = self.library_view.model().index(self.cover_flow.currentSlide(), 0)
if idx.isValid():
sm = self.library_view.selectionModel()
sm.select(idx, sm.ClearAndSelect|sm.Rows)
self.library_view.setCurrentIndex(idx)
cfd = getattr(self, 'cf_dialog', None)
if cfd is not None:
self.cover_flow.setVisible(False)
@ -691,6 +697,7 @@ class Main(MainWindow, Ui_MainWindow, DeviceGUI):
self.cf_dialog = None
else:
if show:
self.cover_flow.setCurrentSlide(self.library_view.currentIndex().row())
self.library_view.setCurrentIndex(
self.library_view.currentIndex())
self.cover_flow.setVisible(True)
@ -700,8 +707,13 @@ class Main(MainWindow, Ui_MainWindow, DeviceGUI):
self.library_view.scrollTo(self.library_view.currentIndex())
else:
self.cover_flow.setVisible(False)
idx = self.library_view.model().index(self.cover_flow.currentSlide(), 0)
if idx.isValid():
sm = self.library_view.selectionModel()
sm.select(idx, sm.ClearAndSelect|sm.Rows)
self.library_view.setCurrentIndex(idx)
#self.status_bar.book_info.book_data.setMaximumHeight(1000)
self.resize(self.width(), self._calculated_available_height)
#self.resize(self.width(), self._calculated_available_height)
#self.setMaximumHeight(available_height())
def toggle_tags_view(self, show):

View File

@ -245,7 +245,7 @@
<item>
<widget class="QLabel" name="label_9">
<property name="text">
<string>Double click to change a keyborad shortcut</string>
<string>Double click to change a keyboard shortcut</string>
</property>
<property name="wordWrap">
<bool>true</bool>

View File

@ -6,6 +6,7 @@ __docformat__ = 'restructuredtext en'
'''
'''
import os, math, re, glob
from base64 import b64encode
from PyQt4.Qt import QSize, QSizePolicy, QUrl, SIGNAL, Qt, QTimer, \
QPainter, QPalette, QBrush, QFontDatabase, QDialog, \
QColor, QPoint, QImage, QRegion, QVariant, \
@ -16,7 +17,6 @@ from calibre.utils.config import Config, StringConfig
from calibre.utils.localization import get_language
from calibre.gui2.viewer.config_ui import Ui_Dialog
from calibre.gui2.shortcuts import Shortcuts, ShortcutConfig
from calibre.ptempfile import PersistentTemporaryFile
from calibre.constants import iswindows
from calibre import prints, guess_type
from calibre.gui2.viewer.keys import SHORTCUTS
@ -189,10 +189,9 @@ class Document(QWebPage):
def set_user_stylesheet(self):
raw = config().parse().user_css
pt = PersistentTemporaryFile('_user_stylesheet.css')
pt.write(raw.encode('utf-8'))
pt.close()
self.settings().setUserStyleSheetUrl(QUrl.fromLocalFile(pt.name))
data = 'data:text/css;charset=utf-8;base64,'
data += b64encode(raw.encode('utf-8'))
self.settings().setUserStyleSheetUrl(QUrl(data))
def misc_config(self):
opts = config().parse()

View File

@ -26,7 +26,7 @@ FORMAT_ARG_DESCS = dict(
author_sort=_('The author sort string'),
tags=_('The tags'),
series=_('The series'),
series_index=_('The series number. To get leading zeros use {series_index:03n}'),
series_index=_('The series number. To get leading zeros use {series_index:0>3s}'),
rating=_('The rating'),
isbn=_('The ISBN'),
publisher=_('The publisher'),

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-12-26 16:57+0000\n"
"PO-Revision-Date: 2009-12-26 16:45+0000\n"
"POT-Creation-Date: 2009-12-27 23:41+0000\n"
"PO-Revision-Date: 2009-12-27 23:36+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-12-27 04:31+0000\n"
"X-Launchpad-Export-Date: 2009-12-29 04:33+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -24,11 +24,13 @@ msgstr "لا يفعل شيءً"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:54
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:71
#: /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:789
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:792
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:206
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:870
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:873
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:202
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:69
@ -261,77 +263,96 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:56
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:208
msgid "This profile is intended for the SONY PRS line. The 500/505/700 etc."
msgstr "هذا الطور يستخدم مع أجهزة SONY PRS، من أنواع 500/505/700 إلخ."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:235
msgid ""
"This profile is intended for the SONY PRS line. The 500/505/600/700 etc."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:69
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:243
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:68
msgid "This profile is intended for the SONY PRS 300."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:77
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:257
msgid "This profile is intended for the SONY PRS-900."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:85
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:287
msgid "This profile is intended for the Microsoft Reader."
msgstr "هذا الطور يستخدم مع Microsoft Reader"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:80
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:254
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:96
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:298
msgid "This profile is intended for the Mobipocket books."
msgstr "هذا الطور يستخدم مع كتب Mobipocket"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:93
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:267
msgid "This profile is intended for the Hanlin V3/V5 and its clones."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:109
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:311
msgid "This profile is intended for the Hanlin V3 and its clones."
msgstr "هذا الطور يستخدم مع Hanlin V3 وأمثاله."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:121
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:323
msgid "This profile is intended for the Hanlin V5 and its clones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:105
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:279
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:131
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:331
msgid "This profile is intended for the Cybook G3."
msgstr "هذا الطور يستخدم مع Cybook G3"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:118
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:292
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:144
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:344
msgid "This profile is intended for the Cybook Opus."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:130
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:303
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:156
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:355
msgid "This profile is intended for the Amazon Kindle."
msgstr "هذا الطور يستخدم مع Amazon Kindle"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:142
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:336
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:168
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:388
msgid "This profile is intended for the Irex Illiad."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:154
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:349
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:180
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:401
msgid "This profile is intended for the IRex Digital Reader 1000."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:168
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:363
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:194
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:415
msgid "This profile is intended for the B&N Nook."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:186
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:213
msgid "Output profile"
msgstr "طور الخرج"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:190
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:217
msgid ""
"This profile tries to provide sane defaults and is useful if you want to "
"produce a document intended to be read at a computer or on a range of "
"devices."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:220
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:248
msgid "This profile is intended for the SONY PRS-300."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:266
msgid "This profile is intended for the 5-inch JetBook."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:231
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:275
msgid ""
"This profile is intended for the SONY PRS line. The 500/505/700 etc, in "
"landscape mode. Mainly useful for comics."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:320
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:372
msgid "This profile is intended for the Amazon Kindle DX."
msgstr "هذا الطور يستخدم مع Amazon Kindle DX"
@ -403,33 +424,21 @@ msgid ""
"first one that exists will be used"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:19
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:95
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:12
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/nuut2/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:90
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/boox/driver.py:17
msgid "Communicate with the BOOX eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:68
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:67
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
@ -441,6 +450,18 @@ msgstr ""
msgid "Communicate with the ESlick eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:19
msgid "Communicate with Hanlin V3 eBook readers."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:95
msgid "Communicate with Hanlin V5 eBook readers."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:113
msgid "Communicate with the BOOX eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -471,8 +492,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:120
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:122
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:118
msgid "Transferring books to device..."
msgstr "يجري تحويل الكتب إلى الجهاز..."
@ -508,7 +529,7 @@ msgstr ""
msgid "Communicate with the Nuut2 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:89
msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
@ -517,12 +538,12 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:114
#: /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
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:45
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:48
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:51
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:71
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:81
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:90
msgid "Getting list of books on device..."
msgstr "يجري إحصاء قائمة كتب من الجهاز..."
@ -532,66 +553,65 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:167
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:174
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
msgid "Removing books from device..."
msgstr "يجري حذف الكتب من الجهاز..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:202
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:178
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:174
msgid "Sending metadata to device..."
msgstr "يجري إرسال الميتاداتا إلى الجهاز..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:208
msgid "Communicate with the Sony PRS-600/700 eBook reader."
msgid "Communicate with the Sony PRS-600/700/900 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:308
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:399
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:336
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "لم يتمكن من كشف القرص %s. حاول إعادة التشغيل."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:403
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:489
msgid "Unable to detect the %s mount point. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:470
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:551
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:563
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Could not find mount helper: %s."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:575
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:656
msgid ""
"Unable to detect the %s disk drive. Your kernel is probably exporting a "
"deprecated version of SYSFS."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:583
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:664
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:720
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:722
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:801
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:803
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:724
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:805
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:757
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:838
msgid "There is insufficient free space in main memory"
msgstr "لا توجد مساحة كافية في الذاكرة الرئيسية"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:759
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:761
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:840
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:842
msgid "There is insufficient free space on the storage card"
msgstr "لا توجد مساحة كافية في بطاقة التخزين"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:772
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:853
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:125
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1065
@ -630,17 +650,17 @@ msgstr ""
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:37
msgid "Get device information..."
msgstr "يجري إحصاء معلومات الجهاز..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:132
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:140
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:167
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:172
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:168
msgid "Removing books from device metadata listing..."
msgstr ""
@ -2160,7 +2180,7 @@ msgstr ""
msgid "The orientation of the page. Default is portrait. Choices are %s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/pdftohtml.py:52
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/pdftohtml.py:55
msgid "Could not find pdftohtml, check it is in your PATH"
msgstr ""
@ -2328,7 +2348,7 @@ msgid "Limit max simultaneous jobs to number of CPUs"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:127
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:404
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:410
msgid "Copied"
msgstr ""
@ -3784,7 +3804,7 @@ msgid "Failed to start content server"
msgstr "فشل في تشغيل خادم المحتوى"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:698
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:514
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:520
msgid "Select location for books"
msgstr ""
@ -5777,7 +5797,7 @@ msgid "Bad database location"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:471
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:522
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:528
msgid "Calibre Library"
msgstr ""
@ -6570,50 +6590,50 @@ msgstr ""
msgid "Title Case"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:295
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:301
msgid ""
"If you use the WordPlayer e-book app on your Android phone, you can access "
"your calibre book collection directly on the device. To do this you have to "
"turn on the content server."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:299
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:305
msgid ""
"Remember to leave calibre running as the server only runs as long as calibre "
"is running."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:301
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:307
msgid ""
"You have to add the URL http://myhostname:8080 as your calibre library in "
"WordPlayer. Here myhostname should be the fully qualified hostname or the IP "
"address of the computer calibre is running on."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:378
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:384
msgid "Moving library..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:394
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:395
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:400
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:401
msgid "Failed to move library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:449
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:455
msgid "Invalid database"
msgstr "قاعدة البيانات غير صالحة"
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:450
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:456
msgid ""
"<p>An invalid library already exists at %s, delete it before trying to move "
"the existing library.<br>Error: %s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:461
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:467
msgid "Could not move library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:589
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:595
msgid "welcome wizard"
msgstr ""
@ -7519,55 +7539,55 @@ msgstr "تم جدولته"
msgid "Custom"
msgstr "مخصّص"
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:455
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:459
msgid ""
"%prog URL\n"
"\n"
"Where URL is for example http://google.com"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:458
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:462
msgid "Base directory into which URL is saved. Default is %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:461
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:465
msgid ""
"Timeout in seconds to wait for a response from the server. Default: %default "
"s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:464
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:468
msgid ""
"Maximum number of levels to recurse i.e. depth of links to follow. Default "
"%default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:467
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
msgid ""
"The maximum number of files to download. This only applies to files from <a "
"href> tags. Default is %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:469
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
msgid ""
"Minimum interval in seconds between consecutive fetches. Default is %default "
"s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
msgid ""
"The character encoding for the websites you are trying to download. The "
"default is to try and guess the encoding."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
msgid ""
"Only links that match this regular expression will be followed. This option "
"can be specified multiple times, in which case as long as a link matches any "
"one regexp, it will be followed. By default all links are followed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:479
msgid ""
"Any link that matches this regular expression will be ignored. This option "
"can be specified multiple times, in which case as long as any regexp matches "
@ -7576,11 +7596,11 @@ msgid ""
"applied first."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:481
msgid "Do not download CSS stylesheets."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:478
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:482
msgid "Show detailed output information. Useful for debugging"
msgstr ""
@ -8155,5 +8175,5 @@ msgstr ""
#~ msgid "James Ralston"
#~ msgstr "James Ralston"
#~ msgid "This profile is intended for the Hanlin V3 and its clones."
#~ msgstr "هذا الطور يستخدم مع Hanlin V3 وأمثاله."
#~ msgid "This profile is intended for the SONY PRS line. The 500/505/700 etc."
#~ msgstr "هذا الطور يستخدم مع أجهزة SONY PRS، من أنواع 500/505/700 إلخ."

View File

@ -4,9 +4,9 @@
#
msgid ""
msgstr ""
"Project-Id-Version: calibre 0.6.31\n"
"POT-Creation-Date: 2010-01-03 10:03+MST\n"
"PO-Revision-Date: 2010-01-03 10:03+MST\n"
"Project-Id-Version: calibre 0.6.32\n"
"POT-Creation-Date: 2010-01-03 19:05+MST\n"
"PO-Revision-Date: 2010-01-03 19:05+MST\n"
"Last-Translator: Automatically generated\n"
"Language-Team: LANGUAGE\n"
"MIME-Version: 1.0\n"
@ -135,8 +135,8 @@ msgstr ""
#: /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/web/feeds/recipes/collection.py:45
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/collection.py:48
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/collection.py:46
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/collection.py:49
msgid "Unknown"
msgstr ""
@ -537,50 +537,50 @@ msgstr ""
msgid "Communicate with the Sony PRS-600/700/900 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:270
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:271
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:439
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:440
msgid "Unable to detect the %s mount point. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:494
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:495
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:587
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:588
msgid "Could not find mount helper: %s."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:599
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:600
msgid "Unable to detect the %s disk drive. Your kernel is probably exporting a deprecated version of SYSFS."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:607
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:608
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:744
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:746
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:745
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:747
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:748
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:749
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:781
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:782
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:783
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:785
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:784
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:786
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:802
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:825
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:803
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:826
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:132
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1065
@ -2204,7 +2204,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/structure_detection_ui.py:59
#: /home/kovid/work/calibre/src/calibre/gui2/convert/toc_ui.py:62
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_input_ui.py:38
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:51
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:45
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xexp_edit_ui.py:49
#: /home/kovid/work/calibre/src/calibre/gui2/convert/xpath_wizard_ui.py:67
#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget_ui.py:74
@ -2385,7 +2385,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/fb2_output_ui.py:29
#: /home/kovid/work/calibre/src/calibre/gui2/convert/pdb_output_ui.py:37
#: /home/kovid/work/calibre/src/calibre/gui2/convert/rb_output_ui.py:29
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:53
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:47
msgid "&Inline TOC"
msgstr ""
@ -2797,7 +2797,7 @@ msgid "RB Output"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/regex_builder.py:77
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1510
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1522
msgid "Choose the format to view"
msgstr ""
@ -2986,23 +2986,15 @@ msgstr ""
msgid "TXT Output"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:52
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:46
msgid "&Line ending style:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:54
msgid "Do not add a blank line between paragraphs."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:55
msgid "Add a tab at the beginning of each paragraph"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:56
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:48
msgid "&Maximum line length:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:57
#: /home/kovid/work/calibre/src/calibre/gui2/convert/txt_output_ui.py:49
msgid "Force maximum line lenght"
msgstr ""
@ -3414,7 +3406,7 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:475
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:819
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:158
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1183
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1195
#: /home/kovid/work/calibre/src/calibre/utils/ipc/job.py:53
msgid "Error"
msgstr ""
@ -4091,7 +4083,7 @@ msgid "Choose formats for "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_single.py:137
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:944
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:956
msgid "Books"
msgstr ""
@ -5351,7 +5343,7 @@ msgid "Save to disk in a single directory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:306
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1618
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1630
msgid "Save only %s format to disk"
msgstr ""
@ -5402,31 +5394,31 @@ msgid "Calibre Library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:481
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1774
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1786
msgid "Choose a location for your ebook library."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:677
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:678
msgid "Browse by covers"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:792
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:804
msgid "Device: "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:794
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:806
msgid " detected."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:818
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:830
msgid "Connected "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:830
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:842
msgid "Device database corrupted"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:831
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:843
msgid ""
"\n"
" <p>The database of books on the reader is corrupted. Try the following:\n"
@ -5437,281 +5429,281 @@ msgid ""
" "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:892
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:904
msgid "How many empty books?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:893
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:905
msgid "How many empty books should be added?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:937
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:984
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:949
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:996
msgid "Uploading books to device."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:945
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:957
msgid "EPUB Books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:946
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:958
msgid "LRF Books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:947
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:959
msgid "HTML Books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:948
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:960
msgid "LIT Books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:949
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:961
msgid "MOBI Books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:950
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:962
msgid "Text books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:951
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:963
msgid "PDF Books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:952
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:964
msgid "Comics"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:953
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:965
msgid "Archives"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:957
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:969
msgid "Supported books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:993
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1005
msgid "Failed to read metadata"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:994
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1006
msgid "Failed to read metadata from the following"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1013
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1025
msgid "Cannot delete"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1016
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1504
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1523
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1028
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1516
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1535
msgid "No book selected"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1026
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1038
msgid "Choose formats to be deleted"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1042
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1054
msgid "Choose formats <b>not</b> to be deleted"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1078
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1090
msgid "The selected books will be <b>permanently deleted</b> and the files removed from your computer. Are you sure?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1105
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1117
msgid "Deleting books from device."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1136
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1148
msgid "Cannot download metadata"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1137
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1194
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1227
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1252
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1365
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1149
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1206
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1239
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1264
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1377
msgid "No books selected"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1152
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1164
msgid "social metadata"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1154
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1166
msgid "covers"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1154
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1166
msgid "metadata"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1156
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1168
msgid "Downloading %s for %d book(s)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1178
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1190
msgid "Failed to download some metadata"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1179
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1191
msgid "Failed to download metadata for the following:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1182
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1194
msgid "Failed to download metadata:"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1193
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1226
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1205
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1238
msgid "Cannot edit metadata"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1251
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1263
msgid "Cannot save to disk"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1254
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1266
msgid "Choose destination directory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1281
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1293
msgid "Error while saving"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1282
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1294
msgid "There was an error while saving."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1289
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1290
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1301
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1302
msgid "Could not save some books"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1291
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1303
msgid "Click the show details button to see which ones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1310
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1322
msgid "Fetching news from "
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1324
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1336
msgid " fetched."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1364
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1376
msgid "Cannot convert"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1393
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1405
msgid "Starting conversion of %d book(s)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1504
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1560
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1516
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1572
msgid "Cannot view"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1522
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1534
msgid "Cannot open folder"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1544
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1556
msgid "Multiple Books Selected"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1545
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1557
msgid "You are attempting to open %d books. Opening too many books at once can be slow and have a negative effect on the responsiveness of your computer. Once started the process cannot be stopped until complete. Do you wish to continue?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1561
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1573
msgid "%s has no available formats."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1602
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1614
msgid "Cannot configure"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1603
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1615
msgid "Cannot configure while there are running jobs."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1646
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1658
msgid "No detailed info available"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1647
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1659
msgid "No detailed information is available for books on the device."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1702
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1714
msgid "Error talking to device"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1703
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1715
msgid "There was a temporary error talking to the device. Please unplug and reconnect the device and or reboot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1726
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1754
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1738
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1766
msgid "Conversion Error"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1727
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1739
msgid "<p>Could not convert: %s<p>It is a <a href=\"%s\">DRM</a>ed book. You must first remove the DRM using third party tools."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1740
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1752
msgid "Recipe Disabled"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1755
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1767
msgid "<b>Failed</b>"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1783
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1795
msgid "Invalid library location"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1784
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1796
msgid "Could not access %s. Using %s as the library."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1832
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1844
msgid "is the result of the efforts of many volunteers from all over the world. If you find it useful, please consider donating to support its development."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1857
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1869
msgid "There are active jobs. Are you sure you want to quit?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1860
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1872
msgid ""
" is communicating with the device!<br>\n"
" Quitting may cause corruption on the device.<br>\n"
" Are you sure you want to quit?"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1864
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1876
msgid "WARNING: Active jobs"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1916
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1928
msgid "will keep running in the system tray. To close it, choose <b>Quit</b> in the context menu of the system tray."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1935
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1947
msgid "<span style=\"color:red; font-weight:bold\">Latest version: <a href=\"%s\">%s</a></span>"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1943
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1955
msgid "Update available"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1944
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:1956
msgid "%s has been updated to version %s. See the <a href=\"http://calibre-ebook.com/whats-new\">new features</a>. Visit the download page?"
msgstr ""
@ -5850,7 +5842,7 @@ msgid "&General"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:172
msgid "Double click to change a keyborad shortcut"
msgid "Double click to change a keyboard shortcut"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/config_ui.py:173
@ -7018,7 +7010,7 @@ msgstr ""
msgid "Fetching feed"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/collection.py:45
#: /home/kovid/work/calibre/src/calibre/web/feeds/recipes/collection.py:46
msgid "You"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

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-12-26 16:57+0000\n"
"PO-Revision-Date: 2009-12-26 16:50+0000\n"
"POT-Creation-Date: 2009-12-27 23:41+0000\n"
"PO-Revision-Date: 2009-12-27 23:38+0000\n"
"Last-Translator: Kovid Goyal <Unknown>\n"
"Language-Team: Latvian <ivars_a@inbox.lv>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2009-12-27 04:31+0000\n"
"X-Launchpad-Export-Date: 2009-12-29 04:34+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"X-Poedit-Country: LATVIA\n"
"X-Poedit-Language: Latvian\n"
@ -26,11 +26,13 @@ msgstr "Pilnīgi neko nedara"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:54
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:71
#: /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:789
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:792
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:206
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:870
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:873
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:202
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:69
@ -258,77 +260,96 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:56
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:208
msgid "This profile is intended for the SONY PRS line. The 500/505/700 etc."
msgstr "Šis profils ir paredzēts SONY PRS sērijai. 500/505/700 u.c."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:235
msgid ""
"This profile is intended for the SONY PRS line. The 500/505/600/700 etc."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:69
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:243
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:68
msgid "This profile is intended for the SONY PRS 300."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:77
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:257
msgid "This profile is intended for the SONY PRS-900."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:85
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:287
msgid "This profile is intended for the Microsoft Reader."
msgstr "Šis profils ir paredzēts Microsoft Reader."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:80
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:254
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:96
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:298
msgid "This profile is intended for the Mobipocket books."
msgstr "Šis profils ir paredzēts Mobipocket grāmatām"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:93
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:267
msgid "This profile is intended for the Hanlin V3/V5 and its clones."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:109
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:311
msgid "This profile is intended for the Hanlin V3 and its clones."
msgstr "Šis profils ir paredzēts Hanlin V3 un tā atdarinājumiem."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:121
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:323
msgid "This profile is intended for the Hanlin V5 and its clones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:105
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:279
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:131
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:331
msgid "This profile is intended for the Cybook G3."
msgstr "Šis profils ir paredzēts Cybook G3."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:118
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:292
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:144
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:344
msgid "This profile is intended for the Cybook Opus."
msgstr "Šis profils ir paredzēts Cybook Opus."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:130
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:303
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:156
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:355
msgid "This profile is intended for the Amazon Kindle."
msgstr "Šis profils ir paredzēts Amazon Kindle."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:142
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:336
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:168
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:388
msgid "This profile is intended for the Irex Illiad."
msgstr "Šis profils ir paredzēts Irex Illiad."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:154
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:349
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:180
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:401
msgid "This profile is intended for the IRex Digital Reader 1000."
msgstr "Šis profils ir paredzēts IRex Digital Reader 1000."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:168
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:363
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:194
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:415
msgid "This profile is intended for the B&N Nook."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:186
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:213
msgid "Output profile"
msgstr "Izvadprofils"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:190
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:217
msgid ""
"This profile tries to provide sane defaults and is useful if you want to "
"produce a document intended to be read at a computer or on a range of "
"devices."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:220
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:248
msgid "This profile is intended for the SONY PRS-300."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:266
msgid "This profile is intended for the 5-inch JetBook."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:231
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:275
msgid ""
"This profile is intended for the SONY PRS line. The 500/505/700 etc, in "
"landscape mode. Mainly useful for comics."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:320
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:372
msgid "This profile is intended for the Amazon Kindle DX."
msgstr "Šis profils ir paredzēts Amazon Kindle DX."
@ -400,33 +421,21 @@ msgid ""
"first one that exists will be used"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:19
msgid "Communicate with the BeBook eBook reader."
msgstr "Komunicē ar BeBook e-grāmatu lasītāju."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:95
msgid "Communicate with the BeBook Mini eBook reader."
msgstr "Komunicē ar BeBook Mini e-grāmatu lasītāju."
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:12
msgid "Communicate with the Blackberry smart phone."
msgstr "Komunicē ar Blackberry viedtelefonu."
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:13
#: /home/kovid/work/calibre/src/calibre/devices/nuut2/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:90
msgid "Kovid Goyal"
msgstr "Kovid Goyal"
#: /home/kovid/work/calibre/src/calibre/devices/boox/driver.py:17
msgid "Communicate with the BOOX eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr "Komunicē ar Cybook Gen 3 e-grāmatu lasītāju."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:68
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:67
msgid "Communicate with the Cybook Opus eBook reader."
msgstr "Komunicē ar Cybook Opus e-grāmatu lasītāju."
@ -438,6 +447,18 @@ msgstr "Komunicē arEB600 e-grāmatu lasītāju"
msgid "Communicate with the ESlick eBook reader."
msgstr "Komunicē arESlick e-grāmatu lasītāju."
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:19
msgid "Communicate with Hanlin V3 eBook readers."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:95
msgid "Communicate with Hanlin V5 eBook readers."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:113
msgid "Communicate with the BOOX eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr "Komunicē arIRex Iliad e-grāmatu lasītāju."
@ -468,8 +489,8 @@ msgstr "Komunicē ar JetBook e-grāmatu lasītāju."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:120
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:122
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:118
msgid "Transferring books to device..."
msgstr ""
@ -505,7 +526,7 @@ msgstr ""
msgid "Communicate with the Nuut2 eBook reader."
msgstr "Komunicē ar Nuut2 e-grāmatu lasītāju."
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:89
msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr "Komunicē ar Sony PRS-500 e-grāmatu lasītāju."
@ -514,12 +535,12 @@ msgstr "Komunicē ar Sony PRS-500 e-grāmatu lasītāju."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:114
#: /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
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:45
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:48
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:51
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:71
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:81
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:90
msgid "Getting list of books on device..."
msgstr ""
@ -529,66 +550,65 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:167
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:174
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
msgid "Removing books from device..."
msgstr "Dzēš grāmatas no ierīces..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:202
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:178
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:174
msgid "Sending metadata to device..."
msgstr "Sūta ierīcei grāmatu metadatus..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:208
msgid "Communicate with the Sony PRS-600/700 eBook reader."
msgstr "Komunicē ar Sony PRS-600/700 e-grāmatu lasītāju."
msgid "Communicate with the Sony PRS-600/700/900 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:308
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:399
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:336
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:403
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:489
msgid "Unable to detect the %s mount point. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:470
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:551
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:563
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Could not find mount helper: %s."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:575
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:656
msgid ""
"Unable to detect the %s disk drive. Your kernel is probably exporting a "
"deprecated version of SYSFS."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:583
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:664
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:720
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:722
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:801
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:803
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:724
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:805
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:757
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:838
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:759
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:761
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:840
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:842
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:772
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:853
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:125
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1065
@ -627,17 +647,17 @@ msgstr ""
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:37
msgid "Get device information..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:132
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:140
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:167
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:172
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:168
msgid "Removing books from device metadata listing..."
msgstr ""
@ -2138,7 +2158,7 @@ msgstr ""
msgid "The orientation of the page. Default is portrait. Choices are %s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/pdftohtml.py:52
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/pdftohtml.py:55
msgid "Could not find pdftohtml, check it is in your PATH"
msgstr ""
@ -2306,7 +2326,7 @@ msgid "Limit max simultaneous jobs to number of CPUs"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:127
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:404
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:410
msgid "Copied"
msgstr "Nokopēts"
@ -3765,7 +3785,7 @@ msgid "Failed to start content server"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:698
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:514
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:520
msgid "Select location for books"
msgstr ""
@ -5770,7 +5790,7 @@ msgid "Bad database location"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:471
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:522
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:528
msgid "Calibre Library"
msgstr ""
@ -6566,50 +6586,50 @@ msgstr ""
msgid "Title Case"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:295
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:301
msgid ""
"If you use the WordPlayer e-book app on your Android phone, you can access "
"your calibre book collection directly on the device. To do this you have to "
"turn on the content server."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:299
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:305
msgid ""
"Remember to leave calibre running as the server only runs as long as calibre "
"is running."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:301
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:307
msgid ""
"You have to add the URL http://myhostname:8080 as your calibre library in "
"WordPlayer. Here myhostname should be the fully qualified hostname or the IP "
"address of the computer calibre is running on."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:378
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:384
msgid "Moving library..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:394
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:395
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:400
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:401
msgid "Failed to move library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:449
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:455
msgid "Invalid database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:450
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:456
msgid ""
"<p>An invalid library already exists at %s, delete it before trying to move "
"the existing library.<br>Error: %s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:461
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:467
msgid "Could not move library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:589
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:595
msgid "welcome wizard"
msgstr ""
@ -7512,55 +7532,55 @@ msgstr ""
msgid "Custom"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:455
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:459
msgid ""
"%prog URL\n"
"\n"
"Where URL is for example http://google.com"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:458
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:462
msgid "Base directory into which URL is saved. Default is %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:461
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:465
msgid ""
"Timeout in seconds to wait for a response from the server. Default: %default "
"s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:464
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:468
msgid ""
"Maximum number of levels to recurse i.e. depth of links to follow. Default "
"%default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:467
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
msgid ""
"The maximum number of files to download. This only applies to files from <a "
"href> tags. Default is %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:469
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
msgid ""
"Minimum interval in seconds between consecutive fetches. Default is %default "
"s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
msgid ""
"The character encoding for the websites you are trying to download. The "
"default is to try and guess the encoding."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
msgid ""
"Only links that match this regular expression will be followed. This option "
"can be specified multiple times, in which case as long as a link matches any "
"one regexp, it will be followed. By default all links are followed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:479
msgid ""
"Any link that matches this regular expression will be ignored. This option "
"can be specified multiple times, in which case as long as any regexp matches "
@ -7569,11 +7589,11 @@ msgid ""
"applied first."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:481
msgid "Do not download CSS stylesheets."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:478
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:482
msgid "Show detailed output information. Useful for debugging"
msgstr ""
@ -7583,5 +7603,14 @@ msgstr ""
#~ msgid "Kovid Goyal and John Schember"
#~ msgstr "Kovid Goyal un John Schember"
#~ msgid "This profile is intended for the Hanlin V3 and its clones."
#~ msgstr "Šis profils ir paredzēts Hanlin V3 un tā atdarinājumiem."
#~ msgid "This profile is intended for the SONY PRS line. The 500/505/700 etc."
#~ msgstr "Šis profils ir paredzēts SONY PRS sērijai. 500/505/700 u.c."
#~ msgid "Communicate with the BeBook eBook reader."
#~ msgstr "Komunicē ar BeBook e-grāmatu lasītāju."
#~ msgid "Communicate with the BeBook Mini eBook reader."
#~ msgstr "Komunicē ar BeBook Mini e-grāmatu lasītāju."
#~ msgid "Communicate with the Sony PRS-600/700 eBook reader."
#~ msgstr "Komunicē ar Sony PRS-600/700 e-grāmatu lasītāju."

File diff suppressed because it is too large Load Diff

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-12-26 16:57+0000\n"
"PO-Revision-Date: 2009-12-26 16:54+0000\n"
"POT-Creation-Date: 2009-12-27 23:41+0000\n"
"PO-Revision-Date: 2009-12-27 23:39+0000\n"
"Last-Translator: Kovid Goyal <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-12-27 04:31+0000\n"
"X-Launchpad-Export-Date: 2009-12-29 04:34+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"X-Poedit-Country: RUSSIAN FEDERATION\n"
"X-Poedit-Language: Russian\n"
@ -28,11 +28,13 @@ msgstr "Ничего не делает"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:54
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:71
#: /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:789
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:792
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:206
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:870
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:873
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:202
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:69
@ -274,60 +276,75 @@ msgstr ""
"быть полезен, если вы ничего не знаете о входном документе."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:56
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:208
msgid "This profile is intended for the SONY PRS line. The 500/505/700 etc."
msgstr "Этот профиль предназначен для линейки SONY PRS: 500/505/700 и т.д."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:235
msgid ""
"This profile is intended for the SONY PRS line. The 500/505/600/700 etc."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:69
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:243
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:68
msgid "This profile is intended for the SONY PRS 300."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:77
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:257
msgid "This profile is intended for the SONY PRS-900."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:85
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:287
msgid "This profile is intended for the Microsoft Reader."
msgstr "Этот профиль предназначен для Microsoft Reader."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:80
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:254
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:96
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:298
msgid "This profile is intended for the Mobipocket books."
msgstr "Этот профиль предназначен для книг Mobipocket"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:93
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:267
msgid "This profile is intended for the Hanlin V3/V5 and its clones."
msgstr "Этот профиль предназначен для формата Hanlin V3/V5 и её клонов."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:109
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:311
msgid "This profile is intended for the Hanlin V3 and its clones."
msgstr "Этот профиль предназначен для Hanlin V3 и её клонов."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:105
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:279
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:121
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:323
msgid "This profile is intended for the Hanlin V5 and its clones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:131
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:331
msgid "This profile is intended for the Cybook G3."
msgstr "Этот профиль предназначен для Cybook G3."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:118
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:292
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:144
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:344
msgid "This profile is intended for the Cybook Opus."
msgstr "Этот профиль предназначен для Cybook Opus."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:130
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:303
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:156
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:355
msgid "This profile is intended for the Amazon Kindle."
msgstr "Этот профиль предназначен для Amazon Kindle."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:142
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:336
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:168
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:388
msgid "This profile is intended for the Irex Illiad."
msgstr "Этот профиль предназначен для iRex Illiad."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:154
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:349
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:180
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:401
msgid "This profile is intended for the IRex Digital Reader 1000."
msgstr "Этот профиль предназначен для iRex Digital Reader 1000."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:168
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:363
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:194
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:415
msgid "This profile is intended for the B&N Nook."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:186
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:213
msgid "Output profile"
msgstr "Профиль вывода"
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:190
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:217
msgid ""
"This profile tries to provide sane defaults and is useful if you want to "
"produce a document intended to be read at a computer or on a range of "
@ -337,11 +354,15 @@ msgstr ""
"полезным, если вы хотите подготовить документ, предназначенный для чтения на "
"компьютере или на нескольких различных устройствах."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:220
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:248
msgid "This profile is intended for the SONY PRS-300."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:266
msgid "This profile is intended for the 5-inch JetBook."
msgstr "Этот профиль предназначен для 5-дюймовой JetBook."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:231
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:275
msgid ""
"This profile is intended for the SONY PRS line. The 500/505/700 etc, in "
"landscape mode. Mainly useful for comics."
@ -349,7 +370,7 @@ msgstr ""
"Этот профиль предназначен для линейки SONY PRS: 500/505/700 - в ландшафтном "
"режиме. Полезен для комиксов."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:320
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:372
msgid "This profile is intended for the Amazon Kindle DX."
msgstr "Этот профиль предназначен для Amazon Kindle DX."
@ -428,33 +449,21 @@ msgstr ""
"Разделённый запятаями список директории для отправки e-books на это "
"устройство. Будет использовано первое в списке устройство"
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:19
msgid "Communicate with the BeBook eBook reader."
msgstr "Соединяться с BeBook."
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:95
msgid "Communicate with the BeBook Mini eBook reader."
msgstr "Соединяться с BeBook Mini."
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:12
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/nuut2/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:90
msgid "Kovid Goyal"
msgstr "Ковид Гоял"
#: /home/kovid/work/calibre/src/calibre/devices/boox/driver.py:17
msgid "Communicate with the BOOX eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr "Соединяться с Cybook Gen 3."
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:68
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:67
msgid "Communicate with the Cybook Opus eBook reader."
msgstr "Communicate with the Cybook Opus."
@ -466,6 +475,18 @@ msgstr "Соединяться с EB600."
msgid "Communicate with the ESlick eBook reader."
msgstr "Соединяться с ESlick."
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:19
msgid "Communicate with Hanlin V3 eBook readers."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:95
msgid "Communicate with Hanlin V5 eBook readers."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:113
msgid "Communicate with the BOOX eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr "Соединяться с IRex Iliad."
@ -496,8 +517,8 @@ msgstr "Соединяться с JetBook."
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:120
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:122
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:118
msgid "Transferring books to device..."
msgstr "Передаю книги на устройство..."
@ -533,7 +554,7 @@ msgstr "Работать с устройством Nook eBook reader."
msgid "Communicate with the Nuut2 eBook reader."
msgstr "Соединяться с Nuut2."
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:89
msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr "Соединяться с Sony PRS-500."
@ -542,12 +563,12 @@ msgstr "Соединяться с Sony PRS-500."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:114
#: /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
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:45
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:48
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:51
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:71
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:81
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:90
msgid "Getting list of books on device..."
msgstr "Получаю список книг с устройства..."
@ -557,38 +578,37 @@ msgstr "Соединяться с Sony PRS-300/505/500."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:167
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:174
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
msgid "Removing books from device..."
msgstr "Удаляю книги с устройства..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:202
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:178
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:174
msgid "Sending metadata to device..."
msgstr "Отправляю метаданные на устройство..."
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:208
msgid "Communicate with the Sony PRS-600/700 eBook reader."
msgstr "Соединяться с Sony PRS-600/700."
msgid "Communicate with the Sony PRS-600/700/900 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:308
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:399
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:336
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr "Не удалось определить диск %s. Попробуйте перезагрузить устройство."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:403
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:489
msgid "Unable to detect the %s mount point. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:470
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:551
msgid "Unable to detect the %s disk drive."
msgstr "Не удалось определить диск %s."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:563
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Could not find mount helper: %s."
msgstr "Не могу найти mount helper: %s."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:575
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:656
msgid ""
"Unable to detect the %s disk drive. Your kernel is probably exporting a "
"deprecated version of SYSFS."
@ -596,29 +616,29 @@ msgstr ""
"Не удалось обнаружить диск %s. Возможно, ваше ядро использует устаревшую "
"версию SYSFS."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:583
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:664
msgid "Unable to mount main memory (Error code: %d)"
msgstr "Невозможно примонтировать основную память (Код ошибки: %d)"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:720
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:722
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:801
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:803
msgid "The reader has no storage card in this slot."
msgstr "В устройство не вставлена карта памяти."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:724
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:805
msgid "Selected slot: %s is not supported."
msgstr "Выбранный слот: %s не поддерживается."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:757
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:838
msgid "There is insufficient free space in main memory"
msgstr "Не хватает свободного места в основной памяти"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:759
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:761
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:840
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:842
msgid "There is insufficient free space on the storage card"
msgstr "Не хватает свободного места на карте памяти"
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:772
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:853
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:125
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1065
@ -657,17 +677,17 @@ msgstr "Дополнительная настройка"
msgid "Communicate with an eBook reader."
msgstr "Соединиться с электронной книгой."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:37
msgid "Get device information..."
msgstr "Получаю информацию об устройстве..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:132
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:140
msgid "Adding books to device metadata listing..."
msgstr "Добавляю книги в список метаданных устройства..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:167
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:172
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:168
msgid "Removing books from device metadata listing..."
msgstr "Удаляю книги из списка метаданных устройства..."
@ -2384,7 +2404,7 @@ msgstr ""
msgid "The orientation of the page. Default is portrait. Choices are %s"
msgstr "Орентация страницы. По умолчанию портретный. Выбрано %s"
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/pdftohtml.py:52
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/pdftohtml.py:55
msgid "Could not find pdftohtml, check it is in your PATH"
msgstr "Не могу найти pdftohtml, проверьте наличе по PATH"
@ -2552,7 +2572,7 @@ msgid "Limit max simultaneous jobs to number of CPUs"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:127
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:404
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:410
msgid "Copied"
msgstr "Скопирована"
@ -4016,7 +4036,7 @@ msgid "Failed to start content server"
msgstr "Сбой запуска контент-сервера"
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:698
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:514
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:520
msgid "Select location for books"
msgstr ""
@ -6062,7 +6082,7 @@ msgid "Bad database location"
msgstr "Плохое расположение базы данных"
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:471
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:522
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:528
msgid "Calibre Library"
msgstr ""
@ -6894,50 +6914,50 @@ msgstr ""
msgid "Title Case"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:295
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:301
msgid ""
"If you use the WordPlayer e-book app on your Android phone, you can access "
"your calibre book collection directly on the device. To do this you have to "
"turn on the content server."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:299
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:305
msgid ""
"Remember to leave calibre running as the server only runs as long as calibre "
"is running."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:301
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:307
msgid ""
"You have to add the URL http://myhostname:8080 as your calibre library in "
"WordPlayer. Here myhostname should be the fully qualified hostname or the IP "
"address of the computer calibre is running on."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:378
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:384
msgid "Moving library..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:394
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:395
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:400
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:401
msgid "Failed to move library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:449
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:455
msgid "Invalid database"
msgstr "Неверная база данных"
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:450
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:456
msgid ""
"<p>An invalid library already exists at %s, delete it before trying to move "
"the existing library.<br>Error: %s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:461
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:467
msgid "Could not move library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:589
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:595
msgid "welcome wizard"
msgstr ""
@ -7920,7 +7940,7 @@ msgstr "Запланированно"
msgid "Custom"
msgstr "Пользовательский"
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:455
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:459
msgid ""
"%prog URL\n"
"\n"
@ -7930,19 +7950,19 @@ msgstr ""
"\n"
"Где URL на пример http://google.com"
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:458
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:462
msgid "Base directory into which URL is saved. Default is %default"
msgstr ""
"Основная директория, в которую сохранятся URL. По умолчанию: %default"
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:461
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:465
msgid ""
"Timeout in seconds to wait for a response from the server. Default: %default "
"s"
msgstr ""
"Максимальное время ожидания ответа от сервера. По умолчанию: %default с"
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:464
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:468
msgid ""
"Maximum number of levels to recurse i.e. depth of links to follow. Default "
"%default"
@ -7950,7 +7970,7 @@ msgstr ""
"Максимально число уровней вложения, т.е. глубина последовательных ссылок. По "
"умолчанию: %default"
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:467
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
msgid ""
"The maximum number of files to download. This only applies to files from <a "
"href> tags. Default is %default"
@ -7958,7 +7978,7 @@ msgstr ""
"Максимальное количество файлов для скачивания. Применимо только к файлам из "
"тегов <a href>. По умолчанию: %default"
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:469
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
msgid ""
"Minimum interval in seconds between consecutive fetches. Default is %default "
"s"
@ -7966,7 +7986,7 @@ msgstr ""
"Минимальный интервал в секундах между последовательными вызовами. По "
"умолчанию: %default с"
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
msgid ""
"The character encoding for the websites you are trying to download. The "
"default is to try and guess the encoding."
@ -7974,7 +7994,7 @@ msgstr ""
"Кодировка вебсайтов, которые вы собираетесь скачивать. По умолчанию делается "
"попытка определения кодировки."
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
msgid ""
"Only links that match this regular expression will be followed. This option "
"can be specified multiple times, in which case as long as a link matches any "
@ -7985,7 +8005,7 @@ msgstr ""
"скачиваться тогда, когда она совпадет хотя бы с одним из регулярных "
"выражений. По умолчанию, никакие ссылки не скачиваются."
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:479
msgid ""
"Any link that matches this regular expression will be ignored. This option "
"can be specified multiple times, in which case as long as any regexp matches "
@ -7999,11 +8019,11 @@ msgstr ""
"умолчанию, ссылки не отклоняются. Если указаны обе опции --filter-regexp и --"
"match-regexp, то вначале будет учитываться --filter-regexp."
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:481
msgid "Do not download CSS stylesheets."
msgstr "Не скачивать файлы стилей CSS."
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:478
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:482
msgid "Show detailed output information. Useful for debugging"
msgstr "Показать детальную информацию. Используется для отладки."
@ -9831,8 +9851,14 @@ msgstr "Показать детальную информацию. Использ
#~ "одноуровневые селекторы. Активизация данной настройки очень сильно замедляет "
#~ "обработку больших HTML файлов."
#~ msgid "This profile is intended for the Hanlin V3 and its clones."
#~ msgstr "Этот профиль предназначен для Hanlin V3 и её клонов."
#~ msgid "This profile is intended for the SONY PRS line. The 500/505/700 etc."
#~ msgstr "Этот профиль предназначен для линейки SONY PRS: 500/505/700 и т.д."
#~ msgid "Communicate with the BeBook Mini eBook reader."
#~ msgstr "Соединяться с BeBook Mini."
#~ msgid "Communicate with the BeBook eBook reader."
#~ msgstr "Соединяться с BeBook."
#~ msgid "Kovid Goyal and John Schember"
#~ msgstr "Ковид Гоял и Джон Шембер"
@ -9861,5 +9887,11 @@ msgstr "Показать детальную информацию. Использ
#~ "<h2>Руководство пользователя</h2>Руководство пользователя также доступно <a "
#~ "href=\"http://calibre.kovidgoyal.net/user_manual\">онлайн</a>."
#~ msgid "Communicate with the Sony PRS-600/700 eBook reader."
#~ msgstr "Соединяться с Sony PRS-600/700."
#~ msgid "Communicate with the Nokia Nokia 770 internet tablet."
#~ msgstr "Работать с устройством Nokia Nokia 770 internet tablet."
#~ msgid "This profile is intended for the Hanlin V3/V5 and its clones."
#~ msgstr "Этот профиль предназначен для формата Hanlin V3/V5 и её клонов."

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-12-26 16:57+0000\n"
"PO-Revision-Date: 2009-12-26 22:36+0000\n"
"POT-Creation-Date: 2009-12-27 23:41+0000\n"
"PO-Revision-Date: 2009-12-27 23:39+0000\n"
"Last-Translator: Besnik <besnik@programeshqip.org>\n"
"Language-Team: Albanian <sq@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-12-27 04:31+0000\n"
"X-Launchpad-Export-Date: 2009-12-29 04:33+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:41
@ -24,11 +24,13 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:44
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:54
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:70
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:71
#: /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:789
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:792
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:206
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:870
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:873
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:202
#: /home/kovid/work/calibre/src/calibre/ebooks/comic/input.py:414
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:67
#: /home/kovid/work/calibre/src/calibre/ebooks/fb2/input.py:69
@ -254,77 +256,96 @@ msgid ""
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:56
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:208
msgid "This profile is intended for the SONY PRS line. The 500/505/700 etc."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:235
msgid ""
"This profile is intended for the SONY PRS line. The 500/505/600/700 etc."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:69
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:243
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:68
msgid "This profile is intended for the SONY PRS 300."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:77
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:257
msgid "This profile is intended for the SONY PRS-900."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:85
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:287
msgid "This profile is intended for the Microsoft Reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:80
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:254
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:96
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:298
msgid "This profile is intended for the Mobipocket books."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:93
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:267
msgid "This profile is intended for the Hanlin V3/V5 and its clones."
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:109
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:311
msgid "This profile is intended for the Hanlin V3 and its clones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:105
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:279
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:121
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:323
msgid "This profile is intended for the Hanlin V5 and its clones."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:131
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:331
msgid "This profile is intended for the Cybook G3."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:118
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:292
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:144
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:344
msgid "This profile is intended for the Cybook Opus."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:130
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:303
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:156
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:355
msgid "This profile is intended for the Amazon Kindle."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:142
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:336
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:168
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:388
msgid "This profile is intended for the Irex Illiad."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:154
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:349
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:180
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:401
msgid "This profile is intended for the IRex Digital Reader 1000."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:168
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:363
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:194
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:415
msgid "This profile is intended for the B&N Nook."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:186
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:213
msgid "Output profile"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:190
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:217
msgid ""
"This profile tries to provide sane defaults and is useful if you want to "
"produce a document intended to be read at a computer or on a range of "
"devices."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:220
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:248
msgid "This profile is intended for the SONY PRS-300."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:266
msgid "This profile is intended for the 5-inch JetBook."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:231
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:275
msgid ""
"This profile is intended for the SONY PRS line. The 500/505/700 etc, in "
"landscape mode. Mainly useful for comics."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:320
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:372
msgid "This profile is intended for the Amazon Kindle DX."
msgstr ""
@ -396,33 +417,21 @@ msgid ""
"first one that exists will be used"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:19
msgid "Communicate with the BeBook eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/bebook/driver.py:95
msgid "Communicate with the BeBook Mini eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/blackberry/driver.py:12
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/nuut2/driver.py:18
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:88
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:90
msgid "Kovid Goyal"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/boox/driver.py:17
msgid "Communicate with the BOOX eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:21
msgid "Communicate with the Cybook Gen 3 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:68
#: /home/kovid/work/calibre/src/calibre/devices/cybookg3/driver.py:67
msgid "Communicate with the Cybook Opus eBook reader."
msgstr ""
@ -434,6 +443,18 @@ msgstr ""
msgid "Communicate with the ESlick eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:19
msgid "Communicate with Hanlin V3 eBook readers."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:95
msgid "Communicate with Hanlin V5 eBook readers."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/hanlin/driver.py:113
msgid "Communicate with the BOOX eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/iliad/driver.py:16
msgid "Communicate with the IRex Iliad eBook reader."
msgstr ""
@ -464,8 +485,8 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/jetbook/driver.py:78
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:134
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:120
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:122
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:116
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:118
msgid "Transferring books to device..."
msgstr ""
@ -501,7 +522,7 @@ msgstr ""
msgid "Communicate with the Nuut2 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:87
#: /home/kovid/work/calibre/src/calibre/devices/prs500/driver.py:89
msgid "Communicate with the Sony PRS-500 eBook reader."
msgstr ""
@ -510,12 +531,12 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:100
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:103
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:114
#: /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
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:75
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:85
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:94
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:45
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:48
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:51
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:71
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:81
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:90
msgid "Getting list of books on device..."
msgstr ""
@ -525,66 +546,65 @@ msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:167
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:174
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:148
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:159
msgid "Removing books from device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:202
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:178
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:174
msgid "Sending metadata to device..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/prs505/driver.py:208
msgid "Communicate with the Sony PRS-600/700 eBook reader."
msgid "Communicate with the Sony PRS-600/700/900 eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:308
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:399
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:336
msgid "Unable to detect the %s disk drive. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:403
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:489
msgid "Unable to detect the %s mount point. Try rebooting."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:470
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:551
msgid "Unable to detect the %s disk drive."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:563
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:644
msgid "Could not find mount helper: %s."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:575
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:656
msgid ""
"Unable to detect the %s disk drive. Your kernel is probably exporting a "
"deprecated version of SYSFS."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:583
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:664
msgid "Unable to mount main memory (Error code: %d)"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:720
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:722
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:801
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:803
msgid "The reader has no storage card in this slot."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:724
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:805
msgid "Selected slot: %s is not supported."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:757
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:838
msgid "There is insufficient free space in main memory"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:759
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:761
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:840
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:842
msgid "There is insufficient free space on the storage card"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:772
#: /home/kovid/work/calibre/src/calibre/devices/usbms/device.py:853
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:232
#: /home/kovid/work/calibre/src/calibre/gui2/tag_view.py:125
#: /home/kovid/work/calibre/src/calibre/library/database2.py:1065
@ -623,17 +643,17 @@ msgstr "Përshtatje Ekstra"
msgid "Communicate with an eBook reader."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:41
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:37
msgid "Get device information..."
msgstr "Merr të dhëna paisjeje..."
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:136
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:144
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:132
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:140
msgid "Adding books to device metadata listing..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:167
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:172
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:163
#: /home/kovid/work/calibre/src/calibre/devices/usbms/driver.py:168
msgid "Removing books from device metadata listing..."
msgstr ""
@ -2128,7 +2148,7 @@ msgstr ""
msgid "The orientation of the page. Default is portrait. Choices are %s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/pdftohtml.py:52
#: /home/kovid/work/calibre/src/calibre/ebooks/pdf/pdftohtml.py:55
msgid "Could not find pdftohtml, check it is in your PATH"
msgstr ""
@ -2296,7 +2316,7 @@ msgid "Limit max simultaneous jobs to number of CPUs"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/__init__.py:127
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:404
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:410
msgid "Copied"
msgstr ""
@ -3748,7 +3768,7 @@ msgid "Failed to start content server"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/config/__init__.py:698
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:514
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:520
msgid "Select location for books"
msgstr ""
@ -5736,7 +5756,7 @@ msgid "Bad database location"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/ui.py:471
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:522
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:528
msgid "Calibre Library"
msgstr ""
@ -6529,50 +6549,50 @@ msgstr ""
msgid "Title Case"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:295
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:301
msgid ""
"If you use the WordPlayer e-book app on your Android phone, you can access "
"your calibre book collection directly on the device. To do this you have to "
"turn on the content server."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:299
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:305
msgid ""
"Remember to leave calibre running as the server only runs as long as calibre "
"is running."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:301
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:307
msgid ""
"You have to add the URL http://myhostname:8080 as your calibre library in "
"WordPlayer. Here myhostname should be the fully qualified hostname or the IP "
"address of the computer calibre is running on."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:378
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:384
msgid "Moving library..."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:394
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:395
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:400
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:401
msgid "Failed to move library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:449
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:455
msgid "Invalid database"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:450
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:456
msgid ""
"<p>An invalid library already exists at %s, delete it before trying to move "
"the existing library.<br>Error: %s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:461
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:467
msgid "Could not move library"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:589
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:595
msgid "welcome wizard"
msgstr ""
@ -7475,55 +7495,55 @@ msgstr ""
msgid "Custom"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:455
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:459
msgid ""
"%prog URL\n"
"\n"
"Where URL is for example http://google.com"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:458
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:462
msgid "Base directory into which URL is saved. Default is %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:461
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:465
msgid ""
"Timeout in seconds to wait for a response from the server. Default: %default "
"s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:464
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:468
msgid ""
"Maximum number of levels to recurse i.e. depth of links to follow. Default "
"%default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:467
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
msgid ""
"The maximum number of files to download. This only applies to files from <a "
"href> tags. Default is %default"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:469
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
msgid ""
"Minimum interval in seconds between consecutive fetches. Default is %default "
"s"
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:471
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
msgid ""
"The character encoding for the websites you are trying to download. The "
"default is to try and guess the encoding."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:473
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
msgid ""
"Only links that match this regular expression will be followed. This option "
"can be specified multiple times, in which case as long as a link matches any "
"one regexp, it will be followed. By default all links are followed."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:475
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:479
msgid ""
"Any link that matches this regular expression will be ignored. This option "
"can be specified multiple times, in which case as long as any regexp matches "
@ -7532,10 +7552,10 @@ msgid ""
"applied first."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:477
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:481
msgid "Do not download CSS stylesheets."
msgstr ""
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:478
#: /home/kovid/work/calibre/src/calibre/web/fetch/simple.py:482
msgid "Show detailed output information. Useful for debugging"
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff