mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-08-05 08:40:13 -04:00
Merge from trunk
This commit is contained in:
commit
5f626b1f26
@ -19,6 +19,13 @@
|
||||
# new recipes:
|
||||
# - title:
|
||||
|
||||
- version: 0.8.0
|
||||
date: 2010-05-06
|
||||
|
||||
new features:
|
||||
- title: "Go to http://calibre-ebook.com/new-in/eight to see what's new in 0.8.0"
|
||||
type: major
|
||||
|
||||
- version: 0.7.59
|
||||
date: 2011-04-30
|
||||
|
||||
|
@ -3,7 +3,8 @@
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2010, Constantin Hofstetter <consti at consti.de>, Steffen Siebert <calibre at steffensiebert.de>'
|
||||
__version__ = '0.98' # 2011-04-10
|
||||
__version__ = '0.98'
|
||||
|
||||
''' http://brandeins.de - Wirtschaftsmagazin '''
|
||||
import re
|
||||
import string
|
||||
@ -13,8 +14,8 @@ from calibre.web.feeds.recipes import BasicNewsRecipe
|
||||
class BrandEins(BasicNewsRecipe):
|
||||
|
||||
title = u'brand eins'
|
||||
__author__ = 'Constantin Hofstetter; Steffen Siebert'
|
||||
description = u'Wirtschaftsmagazin: Gets the last full issue on default. Set a integer value for the username-field to get older issues: 1 -> the newest (but not complete) issue, 2 -> the last complete issue (default), 3 -> the issue before 2 etc.'
|
||||
__author__ = 'Constantin Hofstetter'
|
||||
description = u'Wirtschaftsmagazin'
|
||||
publisher ='brandeins.de'
|
||||
category = 'politics, business, wirtschaft, Germany'
|
||||
use_embedded_content = False
|
||||
@ -105,10 +106,11 @@ class BrandEins(BasicNewsRecipe):
|
||||
keys = issue_map.keys()
|
||||
keys.sort()
|
||||
keys.reverse()
|
||||
selected_issue = issue_map[keys[issue-1]]
|
||||
selected_issue_key = keys[issue - 1]
|
||||
selected_issue = issue_map[selected_issue_key]
|
||||
url = selected_issue.get('href', False)
|
||||
# Get the title for the magazin - build it out of the title of the cover - take the issue and year;
|
||||
self.title = "brand eins "+ re.search(r"(?P<date>\d\d\/\d\d\d\d)", selected_issue.find('img').get('title', False)).group('date')
|
||||
self.title = "brand eins " + selected_issue_key[4:] + "/" + selected_issue_key[0:4]
|
||||
url = 'http://brandeins.de/'+url
|
||||
|
||||
# url = "http://www.brandeins.de/archiv/magazin/tierisch.html"
|
||||
@ -161,3 +163,4 @@ class BrandEins(BasicNewsRecipe):
|
||||
current_articles.append({'title': title, 'url': url, 'description': description, 'date':''})
|
||||
titles_and_articles.append([chapter_title, current_articles])
|
||||
return titles_and_articles
|
||||
|
||||
|
@ -12,7 +12,6 @@ class AdvancedUserRecipe1301860159(BasicNewsRecipe):
|
||||
max_articles_per_feed = 100
|
||||
no_stylesheets = True
|
||||
use_embedded_content = False
|
||||
language = 'en_EN'
|
||||
remove_javascript = True
|
||||
keep_only_tags = [dict(name='div', attrs={'class':'modSectionTd2'})]
|
||||
remove_tags = [dict(name='a'),dict(name='hr')]
|
||||
|
@ -1,7 +1,7 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = u'2010, Tomasz Dlugosz <tomek3d@gmail.com>'
|
||||
__copyright__ = u'2010-2011, Tomasz Dlugosz <tomek3d@gmail.com>'
|
||||
'''
|
||||
frazpc.pl
|
||||
'''
|
||||
@ -19,17 +19,20 @@ class FrazPC(BasicNewsRecipe):
|
||||
use_embedded_content = False
|
||||
no_stylesheets = True
|
||||
|
||||
feeds = [(u'Aktualno\u015bci', u'http://www.frazpc.pl/feed'), (u'Recenzje', u'http://www.frazpc.pl/kat/recenzje-2/feed') ]
|
||||
|
||||
keep_only_tags = [dict(name='div', attrs={'id':'FRAZ_CONTENT'})]
|
||||
|
||||
remove_tags = [dict(name='p', attrs={'class':'gray tagsP fs11'})]
|
||||
|
||||
preprocess_regexps = [
|
||||
(re.compile(i[0], re.IGNORECASE | re.DOTALL), i[1]) for i in
|
||||
[(r'<div id="post-[0-9]*"', lambda match: '<div id="FRAZ_CONTENT"'),
|
||||
(r'href="/f/news/', lambda match: 'href="http://www.frazpc.pl/f/news/'),
|
||||
(r' <a href="http://www.frazpc.pl/[^>]*?">(Skomentuj|Komentarz(e)?\([0-9]*\))</a> \|', lambda match: '')]
|
||||
feeds = [
|
||||
(u'Aktualno\u015bci', u'http://www.frazpc.pl/feed/aktualnosci'),
|
||||
(u'Artyku\u0142y', u'http://www.frazpc.pl/feed/artykuly')
|
||||
]
|
||||
|
||||
keep_only_tags = [dict(name='div', attrs={'class':'article'})]
|
||||
|
||||
remove_tags = [
|
||||
dict(name='div', attrs={'class':'title-wrapper'}),
|
||||
dict(name='p', attrs={'class':'tags'}),
|
||||
dict(name='p', attrs={'class':'article-links'}),
|
||||
dict(name='div', attrs={'class':'comments_box'})
|
||||
]
|
||||
|
||||
preprocess_regexps = [(re.compile(r'\| <a href="#comments">Komentarze \([0-9]*\)</a>'), lambda match: '')]
|
||||
|
||||
remove_attributes = [ 'width', 'height' ]
|
||||
|
@ -18,7 +18,7 @@ class TelepolisNews(BasicNewsRecipe):
|
||||
recursion = 0
|
||||
no_stylesheets = True
|
||||
encoding = "utf-8"
|
||||
language = 'de_AT'
|
||||
language = 'de'
|
||||
|
||||
use_embedded_content =False
|
||||
remove_empty_feeds = True
|
||||
|
@ -10,6 +10,8 @@ import re
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
|
||||
class Time(BasicNewsRecipe):
|
||||
recipe_disabled = ('This recipe has been disabled as TIME no longer'
|
||||
' publish complete articles on the web.')
|
||||
title = u'Time'
|
||||
__author__ = 'Kovid Goyal and Sujata Raman'
|
||||
description = 'Weekly magazine'
|
||||
|
@ -7,13 +7,11 @@ usatoday.com
|
||||
'''
|
||||
|
||||
from calibre.web.feeds.news import BasicNewsRecipe
|
||||
from calibre.ebooks.BeautifulSoup import BeautifulSoup, BeautifulStoneSoup, NavigableString, Tag
|
||||
import re
|
||||
|
||||
class USAToday(BasicNewsRecipe):
|
||||
|
||||
title = 'USA Today'
|
||||
__author__ = 'GRiker'
|
||||
__author__ = 'Kovid Goyal'
|
||||
oldest_article = 1
|
||||
timefmt = ''
|
||||
max_articles_per_feed = 20
|
||||
@ -31,7 +29,6 @@ class USAToday(BasicNewsRecipe):
|
||||
margin-bottom: 0em; \
|
||||
font-size: smaller;}\n \
|
||||
.articleBody {text-align: left;}\n '
|
||||
conversion_options = { 'linearize_tables' : True }
|
||||
#simultaneous_downloads = 1
|
||||
feeds = [
|
||||
('Top Headlines', 'http://rssfeeds.usatoday.com/usatoday-NewsTopStories'),
|
||||
@ -47,63 +44,26 @@ class USAToday(BasicNewsRecipe):
|
||||
('Most Popular', 'http://rssfeeds.usatoday.com/Usatoday-MostViewedArticles'),
|
||||
('Offbeat News', 'http://rssfeeds.usatoday.com/UsatodaycomOffbeat-TopStories'),
|
||||
]
|
||||
keep_only_tags = [dict(attrs={'class':[
|
||||
'byLine',
|
||||
'inside-copy',
|
||||
'inside-head',
|
||||
'inside-head2',
|
||||
'item',
|
||||
'item-block',
|
||||
'photo-container',
|
||||
]}),
|
||||
dict(id=[
|
||||
'applyMainStoryPhoto',
|
||||
'permalink',
|
||||
])]
|
||||
keep_only_tags = [dict(attrs={'class':'story'})]
|
||||
remove_tags = [
|
||||
dict(attrs={'class':[
|
||||
'share',
|
||||
'reprints',
|
||||
'inline-h3',
|
||||
'info-extras',
|
||||
'ppy-outer',
|
||||
'ppy-caption',
|
||||
'comments',
|
||||
'jump',
|
||||
'pagetools',
|
||||
'post-attributes',
|
||||
'tags',
|
||||
'bottom-tools',
|
||||
'sponsoredlinks',
|
||||
]}),
|
||||
dict(id=['pluck']),
|
||||
]
|
||||
|
||||
remove_tags = [dict(attrs={'class':[
|
||||
'comments',
|
||||
'jump',
|
||||
'pagetools',
|
||||
'post-attributes',
|
||||
'tags',
|
||||
]}),
|
||||
dict(id=[])]
|
||||
|
||||
#feeds = [('Most Popular', 'http://rssfeeds.usatoday.com/Usatoday-MostViewedArticles')]
|
||||
|
||||
def dump_hex(self, src, length=16):
|
||||
''' Diagnostic '''
|
||||
FILTER=''.join([(len(repr(chr(x)))==3) and chr(x) or '.' for x in range(256)])
|
||||
N=0; result=''
|
||||
while src:
|
||||
s,src = src[:length],src[length:]
|
||||
hexa = ' '.join(["%02X"%ord(x) for x in s])
|
||||
s = s.translate(FILTER)
|
||||
result += "%04X %-*s %s\n" % (N, length*3, hexa, s)
|
||||
N+=length
|
||||
print result
|
||||
|
||||
def fixChars(self,string):
|
||||
# Replace lsquo (\x91)
|
||||
fixed = re.sub("\x91","‘",string)
|
||||
|
||||
# Replace rsquo (\x92)
|
||||
fixed = re.sub("\x92","’",fixed)
|
||||
|
||||
# Replace ldquo (\x93)
|
||||
fixed = re.sub("\x93","“",fixed)
|
||||
|
||||
# Replace rdquo (\x94)
|
||||
fixed = re.sub("\x94","”",fixed)
|
||||
|
||||
# Replace ndash (\x96)
|
||||
fixed = re.sub("\x96","–",fixed)
|
||||
|
||||
# Replace mdash (\x97)
|
||||
fixed = re.sub("\x97","—",fixed)
|
||||
|
||||
return fixed
|
||||
|
||||
def get_masthead_url(self):
|
||||
masthead = 'http://i.usatoday.net/mobile/_common/_images/565x73_usat_mobile.gif'
|
||||
@ -115,321 +75,4 @@ class USAToday(BasicNewsRecipe):
|
||||
masthead = None
|
||||
return masthead
|
||||
|
||||
def massageNCXText(self, description):
|
||||
# Kindle TOC descriptions won't render certain characters
|
||||
if description:
|
||||
massaged = unicode(BeautifulStoneSoup(description, convertEntities=BeautifulStoneSoup.HTML_ENTITIES))
|
||||
# Replace '&' with '&'
|
||||
massaged = re.sub("&","&", massaged)
|
||||
return self.fixChars(massaged)
|
||||
else:
|
||||
return description
|
||||
|
||||
def parse_feeds(self, *args, **kwargs):
|
||||
parsed_feeds = BasicNewsRecipe.parse_feeds(self, *args, **kwargs)
|
||||
# Count articles for progress dialog
|
||||
article_count = 0
|
||||
for feed in parsed_feeds:
|
||||
article_count += len(feed)
|
||||
self.log( "Queued %d articles" % article_count)
|
||||
return parsed_feeds
|
||||
|
||||
def preprocess_html(self, soup):
|
||||
soup = self.strip_anchors(soup)
|
||||
return soup
|
||||
|
||||
def postprocess_html(self, soup, first_fetch):
|
||||
|
||||
# Remove navLinks <div class="inside-copy" style="padding-bottom:3px">
|
||||
navLinks = soup.find(True,{'style':'padding-bottom:3px'})
|
||||
if navLinks:
|
||||
navLinks.extract()
|
||||
|
||||
# Remove <div class="inside-copy" style="margin-bottom:10px">
|
||||
gibberish = soup.find(True,{'style':'margin-bottom:10px'})
|
||||
if gibberish:
|
||||
gibberish.extract()
|
||||
|
||||
# Change <inside-head> to <h2>
|
||||
headline = soup.find(True, {'class':['inside-head','inside-head2']})
|
||||
if not headline:
|
||||
headline = soup.find('h3')
|
||||
if headline:
|
||||
tag = Tag(soup, "h2")
|
||||
tag['class'] = "headline"
|
||||
tag.insert(0, headline.contents[0])
|
||||
headline.replaceWith(tag)
|
||||
else:
|
||||
print "unable to find headline:\n%s\n" % soup
|
||||
|
||||
# Change byLine to byline, change commas to middot
|
||||
# Kindle renders commas in byline as '&'
|
||||
byline = soup.find(True, {'class':'byLine'})
|
||||
if byline:
|
||||
byline['class'] = 'byline'
|
||||
# Replace comma with middot
|
||||
byline.contents[0].replaceWith(re.sub(","," ·", byline.renderContents()))
|
||||
|
||||
jumpout_punc_list = [':','?']
|
||||
# Remove the inline jumpouts in <div class="inside-copy">
|
||||
paras = soup.findAll(True, {'class':'inside-copy'})
|
||||
for para in paras:
|
||||
if re.match("<b>[\w\W]+ ",para.renderContents()):
|
||||
p = para.find('b')
|
||||
for punc in jumpout_punc_list:
|
||||
punc_offset = p.contents[0].find(punc)
|
||||
if punc_offset == -1:
|
||||
continue
|
||||
if punc_offset > 1:
|
||||
if p.contents[0][:punc_offset] == p.contents[0][:punc_offset].upper():
|
||||
#print "extracting \n%s\n" % para.prettify()
|
||||
para.extract()
|
||||
|
||||
# Reset class for remaining
|
||||
paras = soup.findAll(True, {'class':'inside-copy'})
|
||||
for para in paras:
|
||||
para['class'] = 'articleBody'
|
||||
|
||||
# Remove inline jumpouts in <p>
|
||||
paras = soup.findAll(['p'])
|
||||
for p in paras:
|
||||
if hasattr(p,'contents') and len(p.contents):
|
||||
for punc in jumpout_punc_list:
|
||||
punc_offset = p.contents[0].find(punc)
|
||||
if punc_offset == -1:
|
||||
continue
|
||||
if punc_offset > 2 and hasattr(p,'a') and len(p.contents):
|
||||
#print "evaluating %s\n" % p.contents[0][:punc_offset+1]
|
||||
if p.contents[0][:punc_offset] == p.contents[0][:punc_offset].upper():
|
||||
#print "extracting \n%s\n" % p.prettify()
|
||||
p.extract()
|
||||
|
||||
# Capture the first img, insert after headline
|
||||
imgs = soup.findAll('img')
|
||||
print "postprocess_html(): %d images" % len(imgs)
|
||||
if imgs:
|
||||
divTag = Tag(soup, 'div')
|
||||
divTag['class'] = 'image'
|
||||
body = soup.find('body')
|
||||
img = imgs[0]
|
||||
#print "img: \n%s\n" % img.prettify()
|
||||
|
||||
# Table for photo and credit
|
||||
tableTag = Tag(soup,'table')
|
||||
|
||||
# Photo
|
||||
trimgTag = Tag(soup, 'tr')
|
||||
tdimgTag = Tag(soup, 'td')
|
||||
tdimgTag.insert(0,img)
|
||||
trimgTag.insert(0,tdimgTag)
|
||||
tableTag.insert(0,trimgTag)
|
||||
|
||||
# Credit
|
||||
trcreditTag = Tag(soup, 'tr')
|
||||
|
||||
tdcreditTag = Tag(soup, 'td')
|
||||
tdcreditTag['class'] = 'credit'
|
||||
credit = soup.find('td',{'class':'photoCredit'})
|
||||
if credit:
|
||||
tdcreditTag.insert(0,NavigableString(credit.renderContents()))
|
||||
else:
|
||||
credit = img['credit']
|
||||
if credit:
|
||||
tdcreditTag.insert(0,NavigableString(credit))
|
||||
else:
|
||||
tdcreditTag.insert(0,NavigableString(''))
|
||||
|
||||
trcreditTag.insert(0,tdcreditTag)
|
||||
tableTag.insert(1,trcreditTag)
|
||||
dtc = 0
|
||||
divTag.insert(dtc,tableTag)
|
||||
dtc += 1
|
||||
|
||||
if False:
|
||||
# Add the caption in the table
|
||||
tableCaptionTag = Tag(soup,'caption')
|
||||
tableCaptionTag.insert(0,soup.find('td',{'class':'photoCredit'}).renderContents())
|
||||
tableTag.insert(1,tableCaptionTag)
|
||||
divTag.insert(dtc,tableTag)
|
||||
dtc += 1
|
||||
body.insert(1,divTag)
|
||||
else:
|
||||
# Add the caption below the table
|
||||
#print "Looking for caption in this soup:\n%s" % img.prettify()
|
||||
captionTag = Tag(soup,'p')
|
||||
captionTag['class'] = 'caption'
|
||||
if hasattr(img,'alt') and img['alt']:
|
||||
captionTag.insert(0,NavigableString('<blockquote>%s</blockquote>' % img['alt']))
|
||||
divTag.insert(dtc, captionTag)
|
||||
dtc += 1
|
||||
else:
|
||||
try:
|
||||
captionTag.insert(0,NavigableString('<blockquote>%s</blockquote>' % img['cutline']))
|
||||
divTag.insert(dtc, captionTag)
|
||||
dtc += 1
|
||||
except:
|
||||
pass
|
||||
|
||||
hrTag = Tag(soup, 'hr')
|
||||
divTag.insert(dtc, hrTag)
|
||||
dtc += 1
|
||||
|
||||
# Delete <div id="applyMainStoryPhoto"
|
||||
photoJunk = soup.find('div',{'id':'applyMainStoryPhoto'})
|
||||
if photoJunk:
|
||||
photoJunk.extract()
|
||||
|
||||
# Insert img after headline
|
||||
tag = body.find(True)
|
||||
insertLoc = 0
|
||||
headline_found = False
|
||||
while True:
|
||||
# Scan the top-level tags
|
||||
insertLoc += 1
|
||||
if hasattr(tag,'class') and tag['class'] == 'headline':
|
||||
headline_found = True
|
||||
body.insert(insertLoc,divTag)
|
||||
break
|
||||
tag = tag.nextSibling
|
||||
if not tag:
|
||||
break
|
||||
|
||||
if not headline_found:
|
||||
# Monolithic <div> - restructure
|
||||
tag = body.find(True)
|
||||
while True:
|
||||
insertLoc += 1
|
||||
try:
|
||||
if hasattr(tag,'class') and tag['class'] == 'headline':
|
||||
headline_found = True
|
||||
tag.insert(insertLoc,divTag)
|
||||
break
|
||||
except:
|
||||
pass
|
||||
tag = tag.next
|
||||
if not tag:
|
||||
break
|
||||
|
||||
# Yank out headline, img and caption
|
||||
headline = body.find('h2','headline')
|
||||
img = body.find('div','image')
|
||||
caption = body.find('p''class')
|
||||
|
||||
# body(0) is calibre_navbar
|
||||
# body(1) is <div class="item">
|
||||
|
||||
btc = 1
|
||||
headline.extract()
|
||||
body.insert(1, headline)
|
||||
btc += 1
|
||||
if img:
|
||||
img.extract()
|
||||
body.insert(btc, img)
|
||||
btc += 1
|
||||
if caption:
|
||||
caption.extract()
|
||||
body.insert(btc, caption)
|
||||
btc += 1
|
||||
|
||||
if len(imgs) > 1:
|
||||
if True:
|
||||
[img.extract() for img in imgs[1:]]
|
||||
else:
|
||||
# Format the remaining images
|
||||
# This doesn't work yet
|
||||
for img in imgs[1:]:
|
||||
print "img:\n%s\n" % img.prettify()
|
||||
divTag = Tag(soup, 'div')
|
||||
divTag['class'] = 'image'
|
||||
|
||||
# Table for photo and credit
|
||||
tableTag = Tag(soup,'table')
|
||||
|
||||
# Photo
|
||||
trimgTag = Tag(soup, 'tr')
|
||||
tdimgTag = Tag(soup, 'td')
|
||||
tdimgTag.insert(0,img)
|
||||
trimgTag.insert(0,tdimgTag)
|
||||
tableTag.insert(0,trimgTag)
|
||||
|
||||
# Credit
|
||||
trcreditTag = Tag(soup, 'tr')
|
||||
|
||||
tdcreditTag = Tag(soup, 'td')
|
||||
tdcreditTag['class'] = 'credit'
|
||||
try:
|
||||
tdcreditTag.insert(0,NavigableString(img['credit']))
|
||||
except:
|
||||
tdcreditTag.insert(0,NavigableString(''))
|
||||
trcreditTag.insert(0,tdcreditTag)
|
||||
tableTag.insert(1,trcreditTag)
|
||||
divTag.insert(0,tableTag)
|
||||
soup.img.replaceWith(divTag)
|
||||
|
||||
return soup
|
||||
|
||||
def postprocess_book(self, oeb, opts, log) :
|
||||
|
||||
def extract_byline(href) :
|
||||
# <meta name="byline" content=
|
||||
soup = BeautifulSoup(str(oeb.manifest.hrefs[href]))
|
||||
byline = soup.find('div',attrs={'class':'byline'})
|
||||
if byline:
|
||||
byline['class'] = 'byline'
|
||||
# Replace comma with middot
|
||||
byline.contents[0].replaceWith(re.sub(u",", u" ·",
|
||||
byline.renderContents(encoding=None)))
|
||||
return byline.renderContents(encoding=None)
|
||||
else :
|
||||
paras = soup.findAll(text=True)
|
||||
for para in paras:
|
||||
if para.startswith("Copyright"):
|
||||
return para[len('Copyright xxxx '):para.find('.')]
|
||||
return None
|
||||
|
||||
def extract_description(href) :
|
||||
soup = BeautifulSoup(str(oeb.manifest.hrefs[href]))
|
||||
description = soup.find('meta',attrs={'name':'description'})
|
||||
if description :
|
||||
return self.massageNCXText(description['content'])
|
||||
else:
|
||||
# Take first paragraph of article
|
||||
articleBody = soup.find('div',attrs={'id':['articleBody','item']})
|
||||
if articleBody:
|
||||
paras = articleBody.findAll('p')
|
||||
for p in paras:
|
||||
if p.renderContents() > '' :
|
||||
return self.massageNCXText(self.tag_to_string(p,use_alt=False))
|
||||
else:
|
||||
print "Didn't find <div id='articleBody'> in this soup:\n%s" % soup.prettify()
|
||||
return None
|
||||
|
||||
# Method entry point here
|
||||
# Single section toc looks different than multi-section tocs
|
||||
if oeb.toc.depth() == 2 :
|
||||
for article in oeb.toc :
|
||||
if article.author is None :
|
||||
article.author = extract_byline(article.href)
|
||||
if article.description is None :
|
||||
article.description = extract_description(article.href)
|
||||
elif oeb.toc.depth() == 3 :
|
||||
for section in oeb.toc :
|
||||
for article in section :
|
||||
article.author = extract_byline(article.href)
|
||||
'''
|
||||
if article.author is None :
|
||||
article.author = self.massageNCXText(extract_byline(article.href))
|
||||
else:
|
||||
article.author = self.massageNCXText(article.author)
|
||||
'''
|
||||
if article.description is None :
|
||||
article.description = extract_description(article.href)
|
||||
|
||||
def strip_anchors(self,soup):
|
||||
paras = soup.findAll(True)
|
||||
for para in paras:
|
||||
aTags = para.findAll('a')
|
||||
for a in aTags:
|
||||
if a.img is None:
|
||||
a.replaceWith(a.renderContents().decode('cp1252','replace'))
|
||||
return soup
|
||||
|
@ -23,6 +23,9 @@ wWinMain(HINSTANCE Inst, HINSTANCE PrevInst,
|
||||
ret = execute_python_entrypoint(BASENAME, MODULE, FUNCTION,
|
||||
stdout_redirect, stderr_redirect);
|
||||
|
||||
if (stdout != NULL) fclose(stdout);
|
||||
if (stderr != NULL) fclose(stderr);
|
||||
|
||||
DeleteFile(stdout_redirect);
|
||||
DeleteFile(stderr_redirect);
|
||||
|
||||
|
@ -4,7 +4,7 @@ __license__ = 'GPL v3'
|
||||
__copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
__appname__ = u'calibre'
|
||||
numeric_version = (0, 7, 59)
|
||||
numeric_version = (0, 8, 0)
|
||||
__version__ = u'.'.join(map(unicode, numeric_version))
|
||||
__author__ = u"Kovid Goyal <kovid@kovidgoyal.net>"
|
||||
|
||||
|
@ -607,6 +607,7 @@ class StoreBase(Plugin): # {{{
|
||||
supported_platforms = ['windows', 'osx', 'linux']
|
||||
author = 'John Schember'
|
||||
type = _('Store')
|
||||
minimum_calibre_version = (0, 8, 0)
|
||||
|
||||
actual_plugin = None
|
||||
|
||||
|
@ -595,6 +595,7 @@ from calibre.devices.jetbook.driver import JETBOOK, MIBUK, JETBOOK_MINI
|
||||
from calibre.devices.kindle.driver import KINDLE, KINDLE2, KINDLE_DX
|
||||
from calibre.devices.nook.driver import NOOK, NOOK_COLOR
|
||||
from calibre.devices.prs505.driver import PRS505
|
||||
from calibre.devices.user_defined.driver import USER_DEFINED
|
||||
from calibre.devices.android.driver import ANDROID, S60
|
||||
from calibre.devices.nokia.driver import N770, N810, E71X, E52
|
||||
from calibre.devices.eslick.driver import ESLICK, EBK52
|
||||
@ -612,6 +613,7 @@ from calibre.devices.misc import PALMPRE, AVANT, SWEEX, PDNOVEL, \
|
||||
from calibre.devices.folder_device.driver import FOLDER_DEVICE_FOR_CONFIG
|
||||
from calibre.devices.kobo.driver import KOBO
|
||||
from calibre.devices.bambook.driver import BAMBOOK
|
||||
from calibre.devices.boeye.driver import BOEYE_BEX, BOEYE_BDX
|
||||
|
||||
from calibre.library.catalog import CSV_XML, EPUB_MOBI, BIBTEX
|
||||
from calibre.ebooks.epub.fix.unmanifested import Unmanifested
|
||||
@ -742,6 +744,9 @@ plugins += [
|
||||
EEEREADER,
|
||||
NEXTBOOK,
|
||||
ITUNES,
|
||||
BOEYE_BEX,
|
||||
BOEYE_BDX,
|
||||
USER_DEFINED,
|
||||
]
|
||||
plugins += [x for x in list(locals().values()) if isinstance(x, type) and \
|
||||
x.__name__.endswith('MetadataReader')]
|
||||
|
@ -19,6 +19,7 @@ from calibre.utils.config import (make_config_dir, Config, ConfigProxy,
|
||||
plugin_dir, OptionParser)
|
||||
from calibre.ebooks.epub.fix import ePubFixer
|
||||
from calibre.ebooks.metadata.sources.base import Source
|
||||
from calibre.constants import DEBUG
|
||||
|
||||
builtin_names = frozenset([p.name for p in builtin_plugins])
|
||||
|
||||
@ -91,8 +92,7 @@ def restore_plugin_state_to_default(plugin_or_name):
|
||||
config['enabled_plugins'] = ep
|
||||
|
||||
default_disabled_plugins = set([
|
||||
'Douban Books', 'Douban.com covers', 'Nicebooks', 'Nicebooks covers',
|
||||
'Kent District Library'
|
||||
'Overdrive',
|
||||
])
|
||||
|
||||
def is_disabled(plugin):
|
||||
@ -487,8 +487,9 @@ def initialize_plugins():
|
||||
plugin = initialize_plugin(plugin, None if isinstance(zfp, type) else zfp)
|
||||
_initialized_plugins.append(plugin)
|
||||
except:
|
||||
print 'Failed to initialize plugin...'
|
||||
traceback.print_exc()
|
||||
print 'Failed to initialize plugin:', repr(zfp)
|
||||
if DEBUG:
|
||||
traceback.print_exc()
|
||||
_initialized_plugins.sort(cmp=lambda x,y:cmp(x.priority, y.priority), reverse=True)
|
||||
reread_filetype_plugins()
|
||||
reread_metadata_plugins()
|
||||
|
@ -156,3 +156,60 @@ def debug(ioreg_to_tmp=False, buf=None):
|
||||
sys.stdout = oldo
|
||||
sys.stderr = olde
|
||||
|
||||
def device_info(ioreg_to_tmp=False, buf=None):
|
||||
from calibre.devices.scanner import DeviceScanner, win_pnp_drives
|
||||
from calibre.constants import iswindows
|
||||
import re
|
||||
|
||||
res = {}
|
||||
device_details = {}
|
||||
device_set = set()
|
||||
drive_details = {}
|
||||
drive_set = set()
|
||||
res['device_set'] = device_set
|
||||
res['device_details'] = device_details
|
||||
res['drive_details'] = drive_details
|
||||
res['drive_set'] = drive_set
|
||||
|
||||
try:
|
||||
s = DeviceScanner()
|
||||
s.scan()
|
||||
devices = (s.devices)
|
||||
if not iswindows:
|
||||
devices = [list(x) for x in devices]
|
||||
for dev in devices:
|
||||
for i in range(3):
|
||||
dev[i] = hex(dev[i])
|
||||
d = dev[0] + dev[1] + dev[2]
|
||||
device_set.add(d)
|
||||
device_details[d] = dev[0:3]
|
||||
else:
|
||||
for dev in devices:
|
||||
vid = re.search('vid_([0-9a-f]*)&', dev)
|
||||
if vid:
|
||||
vid = vid.group(1)
|
||||
pid = re.search('pid_([0-9a-f]*)&', dev)
|
||||
if pid:
|
||||
pid = pid.group(1)
|
||||
rev = re.search('rev_([0-9a-f]*)$', dev)
|
||||
if rev:
|
||||
rev = rev.group(1)
|
||||
d = vid+pid+rev
|
||||
device_set.add(d)
|
||||
device_details[d] = (vid, pid, rev)
|
||||
|
||||
drives = win_pnp_drives(debug=False)
|
||||
for drive,details in drives.iteritems():
|
||||
order = 'ORD_' + str(drive.order)
|
||||
ven = re.search('VEN_([^&]*)&', details)
|
||||
if ven:
|
||||
ven = ven.group(1)
|
||||
prod = re.search('PROD_([^&]*)&', details)
|
||||
if prod:
|
||||
prod = prod.group(1)
|
||||
d = (order, ven, prod)
|
||||
drive_details[drive] = d
|
||||
drive_set.add(drive)
|
||||
finally:
|
||||
pass
|
||||
return res
|
||||
|
@ -62,7 +62,7 @@ class ANDROID(USBMS):
|
||||
0x502 : { 0x3203 : [0x0100]},
|
||||
|
||||
# Dell
|
||||
0x413c : { 0xb007 : [0x0100, 0x0224]},
|
||||
0x413c : { 0xb007 : [0x0100, 0x0224, 0x0226]},
|
||||
|
||||
# LG
|
||||
0x1004 : { 0x61cc : [0x100], 0x61ce : [0x100], 0x618e : [0x226] },
|
||||
@ -112,7 +112,7 @@ class ANDROID(USBMS):
|
||||
'MB860', 'MULTI-CARD', 'MID7015A', 'INCREDIBLE', 'A7EB']
|
||||
WINDOWS_CARD_A_MEM = ['ANDROID_PHONE', 'GT-I9000_CARD', 'SGH-I897',
|
||||
'FILE-STOR_GADGET', 'SGH-T959', 'SAMSUNG_ANDROID', 'GT-P1000_CARD',
|
||||
'A70S', 'A101IT', '7', 'INCREDIBLE', 'A7EB']
|
||||
'A70S', 'A101IT', '7', 'INCREDIBLE', 'A7EB', 'SGH-T849_CARD']
|
||||
|
||||
OSX_MAIN_MEM = 'Android Device Main Memory'
|
||||
|
||||
|
@ -506,7 +506,7 @@ class ITUNES(DriverBase):
|
||||
if self.iTunes:
|
||||
# Check for connected book-capable device
|
||||
self.sources = self._get_sources()
|
||||
if 'iPod' in self.sources:
|
||||
if 'iPod' in self.sources and not self.ejected:
|
||||
#if DEBUG:
|
||||
#sys.stdout.write('.')
|
||||
#sys.stdout.flush()
|
||||
@ -2036,16 +2036,17 @@ class ITUNES(DriverBase):
|
||||
if 'iPod' in self.sources:
|
||||
connected_device = self.sources['iPod']
|
||||
device = self.iTunes.sources[connected_device]
|
||||
dev_books = None
|
||||
for pl in device.playlists():
|
||||
if pl.special_kind() == appscript.k.Books:
|
||||
if DEBUG:
|
||||
self.log.info(" Book playlist: '%s'" % (pl.name()))
|
||||
books = pl.file_tracks()
|
||||
dev_books = pl.file_tracks()
|
||||
break
|
||||
else:
|
||||
self.log.error(" book_playlist not found")
|
||||
|
||||
for book in books:
|
||||
for book in dev_books:
|
||||
# This may need additional entries for international iTunes users
|
||||
if book.kind() in self.Audiobooks:
|
||||
if DEBUG:
|
||||
|
0
src/calibre/devices/boeye/__init__.py
Normal file
0
src/calibre/devices/boeye/__init__.py
Normal file
56
src/calibre/devices/boeye/driver.py
Normal file
56
src/calibre/devices/boeye/driver.py
Normal file
@ -0,0 +1,56 @@
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2011, Ken <ken at szboeye.com>'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
'''
|
||||
Device driver for BOEYE serial readers
|
||||
'''
|
||||
|
||||
from calibre.devices.usbms.driver import USBMS
|
||||
|
||||
class BOEYE_BEX(USBMS):
|
||||
name = 'BOEYE BEX reader driver'
|
||||
gui_name = 'BOEYE BEX'
|
||||
description = _('Communicate with BOEYE BEX Serial eBook readers.')
|
||||
author = 'szboeye'
|
||||
supported_platforms = ['windows', 'osx', 'linux']
|
||||
|
||||
FORMATS = ['epub', 'mobi', 'fb2', 'lit', 'prc', 'pdf', 'rtf', 'txt', 'djvu', 'doc', 'chm', 'html', 'zip', 'pdb']
|
||||
|
||||
VENDOR_ID = [0x0085]
|
||||
PRODUCT_ID = [0x600]
|
||||
|
||||
VENDOR_NAME = 'LINUX'
|
||||
WINDOWS_MAIN_MEM = 'FILE-STOR_GADGET'
|
||||
OSX_MAIN_MEM = 'Linux File-Stor Gadget Media'
|
||||
|
||||
MAIN_MEMORY_VOLUME_LABEL = 'BOEYE BEX Storage Card'
|
||||
|
||||
EBOOK_DIR_MAIN = 'Documents'
|
||||
SUPPORTS_SUB_DIRS = True
|
||||
|
||||
class BOEYE_BDX(USBMS):
|
||||
name = 'BOEYE BDX reader driver'
|
||||
gui_name = 'BOEYE BDX'
|
||||
description = _('Communicate with BOEYE BDX serial eBook readers.')
|
||||
author = 'szboeye'
|
||||
supported_platforms = ['windows', 'osx', 'linux']
|
||||
|
||||
FORMATS = ['epub', 'mobi', 'fb2', 'lit', 'prc', 'pdf', 'rtf', 'txt', 'djvu', 'doc', 'chm', 'html', 'zip', 'pdb']
|
||||
|
||||
VENDOR_ID = [0x0085]
|
||||
PRODUCT_ID = [0x800]
|
||||
|
||||
VENDOR_NAME = 'LINUX'
|
||||
WINDOWS_MAIN_MEM = 'FILE-STOR_GADGET'
|
||||
WINDOWS_CARD_A_MEM = 'FILE-STOR_GADGET'
|
||||
|
||||
OSX_MAIN_MEM = 'Linux File-Stor Gadget Media'
|
||||
OSX_CARD_A_MEM = 'Linux File-Stor Gadget Media'
|
||||
|
||||
MAIN_MEMORY_VOLUME_LABEL = 'BOEYE BDX Internal Memory'
|
||||
STORAGE_CARD_VOLUME_LABEL = 'BOEYE BDX Storage Card'
|
||||
|
||||
EBOOK_DIR_MAIN = 'Documents'
|
||||
EBOOK_DIR_CARD_A = 'Documents'
|
||||
SUPPORTS_SUB_DIRS = True
|
@ -64,7 +64,7 @@ class HANLINV3(USBMS):
|
||||
return names
|
||||
|
||||
def linux_swap_drives(self, drives):
|
||||
if len(drives) < 2: return drives
|
||||
if len(drives) < 2 or not drives[1] or not drives[2]: return drives
|
||||
drives = list(drives)
|
||||
t = drives[0]
|
||||
drives[0] = drives[1]
|
||||
@ -95,7 +95,6 @@ class HANLINV5(HANLINV3):
|
||||
gui_name = 'Hanlin V5'
|
||||
description = _('Communicate with Hanlin V5 eBook readers.')
|
||||
|
||||
|
||||
VENDOR_ID = [0x0492]
|
||||
PRODUCT_ID = [0x8813]
|
||||
BCD = [0x319]
|
||||
|
@ -164,7 +164,7 @@ class APNXBuilder(object):
|
||||
if c == '/':
|
||||
closing = True
|
||||
continue
|
||||
elif c in ('d', 'p'):
|
||||
elif c == 'p':
|
||||
if closing:
|
||||
in_p = False
|
||||
else:
|
||||
|
@ -94,6 +94,9 @@ class DeviceConfig(object):
|
||||
if isinstance(cls.EXTRA_CUSTOMIZATION_MESSAGE, list):
|
||||
ec = []
|
||||
for i in range(0, len(cls.EXTRA_CUSTOMIZATION_MESSAGE)):
|
||||
if config_widget.opt_extra_customization[i] is None:
|
||||
ec.append(None)
|
||||
continue
|
||||
if hasattr(config_widget.opt_extra_customization[i], 'isChecked'):
|
||||
ec.append(config_widget.opt_extra_customization[i].isChecked())
|
||||
else:
|
||||
|
0
src/calibre/devices/user_defined/__init__.py
Normal file
0
src/calibre/devices/user_defined/__init__.py
Normal file
110
src/calibre/devices/user_defined/driver.py
Normal file
110
src/calibre/devices/user_defined/driver.py
Normal file
@ -0,0 +1,110 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
from calibre.devices.usbms.driver import USBMS
|
||||
|
||||
class USER_DEFINED(USBMS):
|
||||
|
||||
name = 'User Defined USB driver'
|
||||
gui_name = 'User Defined USB Device'
|
||||
author = 'Kovid Goyal'
|
||||
supported_platforms = ['windows', 'osx', 'linux']
|
||||
|
||||
# Ordered list of supported formats
|
||||
FORMATS = ['epub', 'mobi', 'pdf']
|
||||
|
||||
VENDOR_ID = 0xFFFF
|
||||
PRODUCT_ID = 0xFFFF
|
||||
BCD = None
|
||||
|
||||
EBOOK_DIR_MAIN = ''
|
||||
EBOOK_DIR_CARD_A = ''
|
||||
|
||||
VENDOR_NAME = []
|
||||
WINDOWS_MAIN_MEM = ''
|
||||
WINDOWS_CARD_A_MEM = ''
|
||||
|
||||
OSX_MAIN_MEM = 'Device Main Memory'
|
||||
|
||||
MAIN_MEMORY_VOLUME_LABEL = 'Device Main Memory'
|
||||
|
||||
SUPPORTS_SUB_DIRS = True
|
||||
|
||||
EXTRA_CUSTOMIZATION_MESSAGE = [
|
||||
_('USB Vendor ID (in hex)') + ':::<p>' +
|
||||
_('Get this ID using Preferences -> Misc -> Get information to '
|
||||
'set up the user-defined device') + '</p>',
|
||||
_('USB Product ID (in hex)')+ ':::<p>' +
|
||||
_('Get this ID using Preferences -> Misc -> Get information to '
|
||||
'set up the user-defined device') + '</p>',
|
||||
_('USB Revision ID (in hex)')+ ':::<p>' +
|
||||
_('Get this ID using Preferences -> Misc -> Get information to '
|
||||
'set up the user-defined device') + '</p>',
|
||||
'',
|
||||
_('Windows main memory vendor string') + ':::<p>' +
|
||||
_('This field is used only on windows. '
|
||||
'Get this ID using Preferences -> Misc -> Get information to '
|
||||
'set up the user-defined device') + '</p>',
|
||||
_('Windows main memory ID string') + ':::<p>' +
|
||||
_('This field is used only on windows. '
|
||||
'Get this ID using Preferences -> Misc -> Get information to '
|
||||
'set up the user-defined device') + '</p>',
|
||||
_('Windows card A vendor string') + ':::<p>' +
|
||||
_('This field is used only on windows. '
|
||||
'Get this ID using Preferences -> Misc -> Get information to '
|
||||
'set up the user-defined device') + '</p>',
|
||||
_('Windows card A ID string') + ':::<p>' +
|
||||
_('This field is used only on windows. '
|
||||
'Get this ID using Preferences -> Misc -> Get information to '
|
||||
'set up the user-defined device') + '</p>',
|
||||
_('Main memory folder') + ':::<p>' +
|
||||
_('Enter the folder where the books are to be stored. This folder '
|
||||
'is prepended to any send_to_device template') + '</p>',
|
||||
_('Card A folder') + ':::<p>' +
|
||||
_('Enter the folder where the books are to be stored. This folder '
|
||||
'is prepended to any send_to_device template') + '</p>',
|
||||
]
|
||||
EXTRA_CUSTOMIZATION_DEFAULT = [
|
||||
'0x0000',
|
||||
'0x0000',
|
||||
'0x0000',
|
||||
None,
|
||||
'',
|
||||
'',
|
||||
'',
|
||||
'',
|
||||
'',
|
||||
'',
|
||||
]
|
||||
OPT_USB_VENDOR_ID = 0
|
||||
OPT_USB_PRODUCT_ID = 1
|
||||
OPT_USB_REVISION_ID = 2
|
||||
OPT_USB_WINDOWS_MM_VEN_ID = 4
|
||||
OPT_USB_WINDOWS_MM_ID = 5
|
||||
OPT_USB_WINDOWS_CA_VEN_ID = 6
|
||||
OPT_USB_WINDOWS_CA_ID = 7
|
||||
OPT_MAIN_MEM_FOLDER = 8
|
||||
OPT_CARD_A_FOLDER = 9
|
||||
|
||||
def initialize(self):
|
||||
try:
|
||||
e = self.settings().extra_customization
|
||||
self.VENDOR_ID = int(e[self.OPT_USB_VENDOR_ID], 16)
|
||||
self.PRODUCT_ID = int(e[self.OPT_USB_PRODUCT_ID], 16)
|
||||
self.BCD = [int(e[self.OPT_USB_REVISION_ID], 16)]
|
||||
if e[self.OPT_USB_WINDOWS_MM_VEN_ID]:
|
||||
self.VENDOR_NAME.append(e[self.OPT_USB_WINDOWS_MM_VEN_ID])
|
||||
if e[self.OPT_USB_WINDOWS_CA_VEN_ID] and \
|
||||
e[self.OPT_USB_WINDOWS_CA_VEN_ID] not in self.VENDOR_NAME:
|
||||
self.VENDOR_NAME.append(e[self.OPT_USB_WINDOWS_CA_VEN_ID])
|
||||
self.WINDOWS_MAIN_MEM = e[self.OPT_USB_WINDOWS_MM_ID] + '&'
|
||||
self.WINDOWS_CARD_A_MEM = e[self.OPT_USB_WINDOWS_CA_ID] + '&'
|
||||
self.EBOOK_DIR_MAIN = e[self.OPT_MAIN_MEM_FOLDER]
|
||||
self.EBOOK_DIR_CARD_A = e[self.OPT_CARD_A_FOLDER]
|
||||
except:
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
USBMS.initialize(self)
|
@ -7,10 +7,12 @@ __copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
import os
|
||||
import posixpath
|
||||
|
||||
from calibre import walk
|
||||
from calibre import guess_type, walk
|
||||
from calibre.customize.conversion import InputFormatPlugin
|
||||
from calibre.ebooks.chardet import xml_to_unicode
|
||||
from calibre.ebooks.metadata.opf2 import OPF
|
||||
from calibre.utils.zipfile import ZipFile
|
||||
|
||||
class HTMLZInput(InputFormatPlugin):
|
||||
@ -27,7 +29,7 @@ class HTMLZInput(InputFormatPlugin):
|
||||
|
||||
# Extract content from zip archive.
|
||||
zf = ZipFile(stream)
|
||||
zf.extractall('.')
|
||||
zf.extractall()
|
||||
|
||||
for x in walk('.'):
|
||||
if os.path.splitext(x)[1].lower() in ('.html', '.xhtml', '.htm'):
|
||||
@ -70,5 +72,24 @@ class HTMLZInput(InputFormatPlugin):
|
||||
from calibre.ebooks.oeb.transforms.metadata import meta_info_to_oeb_metadata
|
||||
mi = get_file_type_metadata(stream, file_ext)
|
||||
meta_info_to_oeb_metadata(mi, oeb.metadata, log)
|
||||
|
||||
# Get the cover path from the OPF.
|
||||
cover_href = None
|
||||
opf = None
|
||||
for x in walk('.'):
|
||||
if os.path.splitext(x)[1].lower() in ('.opf'):
|
||||
opf = x
|
||||
break
|
||||
if opf:
|
||||
opf = OPF(opf)
|
||||
cover_href = posixpath.relpath(opf.cover, os.path.dirname(stream.name))
|
||||
# Set the cover.
|
||||
if cover_href:
|
||||
cdata = None
|
||||
with open(cover_href, 'rb') as cf:
|
||||
cdata = cf.read()
|
||||
id, href = oeb.manifest.generate('cover', cover_href)
|
||||
oeb.manifest.add(id, href, guess_type(cover_href)[0], data=cdata)
|
||||
oeb.guide.add('cover', 'Cover', href)
|
||||
|
||||
return oeb
|
||||
|
@ -7,11 +7,13 @@ __copyright__ = '2011, John Schember <john@nachtimwald.com>'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
import os
|
||||
from cStringIO import StringIO
|
||||
|
||||
from lxml import etree
|
||||
|
||||
from calibre.customize.conversion import OutputFormatPlugin, \
|
||||
OptionRecommendation
|
||||
from calibre.ebooks.metadata.opf2 import OPF, metadata_to_opf
|
||||
from calibre.ptempfile import TemporaryDirectory
|
||||
from calibre.utils.zipfile import ZipFile
|
||||
|
||||
@ -79,10 +81,31 @@ class HTMLZOutput(OutputFormatPlugin):
|
||||
fname = os.path.join(tdir, 'images', images[item.href])
|
||||
with open(fname, 'wb') as img:
|
||||
img.write(data)
|
||||
|
||||
# Cover
|
||||
cover_path = None
|
||||
try:
|
||||
cover_data = None
|
||||
if oeb_book.metadata.cover:
|
||||
term = oeb_book.metadata.cover[0].term
|
||||
cover_data = oeb_book.guide[term].item.data
|
||||
if cover_data:
|
||||
from calibre.utils.magick.draw import save_cover_data_to
|
||||
cover_path = os.path.join(tdir, 'cover.jpg')
|
||||
with open(cover_path, 'w') as cf:
|
||||
cf.write('')
|
||||
save_cover_data_to(cover_data, cover_path)
|
||||
except:
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
|
||||
# Metadata
|
||||
with open(os.path.join(tdir, 'metadata.opf'), 'wb') as mdataf:
|
||||
mdataf.write(etree.tostring(oeb_book.metadata.to_opf1()))
|
||||
opf = OPF(StringIO(etree.tostring(oeb_book.metadata.to_opf1())))
|
||||
mi = opf.to_book_metadata()
|
||||
if cover_path:
|
||||
mi.cover = 'cover.jpg'
|
||||
mdataf.write(metadata_to_opf(mi))
|
||||
|
||||
htmlz = ZipFile(output_path, 'w')
|
||||
htmlz.add_dir(tdir)
|
||||
|
@ -13,7 +13,7 @@ import posixpath
|
||||
from cStringIO import StringIO
|
||||
|
||||
from calibre.ebooks.metadata import MetaInformation
|
||||
from calibre.ebooks.metadata.opf2 import OPF
|
||||
from calibre.ebooks.metadata.opf2 import OPF, metadata_to_opf
|
||||
from calibre.ptempfile import PersistentTemporaryFile
|
||||
from calibre.utils.zipfile import ZipFile, safe_replace
|
||||
|
||||
@ -31,9 +31,9 @@ def get_metadata(stream, extract_cover=True):
|
||||
opf = OPF(opf_stream)
|
||||
mi = opf.to_book_metadata()
|
||||
if extract_cover:
|
||||
cover_name = opf.raster_cover
|
||||
if cover_name:
|
||||
mi.cover_data = ('jpg', zf.read(cover_name))
|
||||
cover_href = posixpath.relpath(opf.cover, os.path.dirname(stream.name))
|
||||
if cover_href:
|
||||
mi.cover_data = ('jpg', zf.read(cover_href))
|
||||
except:
|
||||
return mi
|
||||
return mi
|
||||
@ -59,17 +59,20 @@ def set_metadata(stream, mi):
|
||||
except:
|
||||
pass
|
||||
if new_cdata:
|
||||
raster_cover = opf.raster_cover
|
||||
if not raster_cover:
|
||||
raster_cover = 'cover.jpg'
|
||||
cpath = posixpath.join(posixpath.dirname(opf_path), raster_cover)
|
||||
cover = opf.cover
|
||||
if not cover:
|
||||
cover = 'cover.jpg'
|
||||
cpath = posixpath.join(posixpath.dirname(opf_path), cover)
|
||||
new_cover = _write_new_cover(new_cdata, cpath)
|
||||
replacements[cpath] = open(new_cover.name, 'rb')
|
||||
mi.cover = cover
|
||||
|
||||
# Update the metadata.
|
||||
opf.smart_update(mi, replace_metadata=True)
|
||||
old_mi = opf.to_book_metadata()
|
||||
old_mi.smart_update(mi)
|
||||
opf.smart_update(metadata_to_opf(old_mi), replace_metadata=True)
|
||||
newopf = StringIO(opf.render())
|
||||
safe_replace(stream, opf_path, newopf, extra_replacements=replacements)
|
||||
safe_replace(stream, opf_path, newopf, extra_replacements=replacements, add_missing=True)
|
||||
|
||||
# Cleanup temporary files.
|
||||
try:
|
||||
|
@ -966,7 +966,9 @@ class OPF(object): # {{{
|
||||
cover_id = covers[0].get('content')
|
||||
for item in self.itermanifest():
|
||||
if item.get('id', None) == cover_id:
|
||||
return item.get('href', None)
|
||||
mt = item.get('media-type', '')
|
||||
if 'xml' not in mt:
|
||||
return item.get('href', None)
|
||||
|
||||
@dynamic_property
|
||||
def cover(self):
|
||||
|
@ -13,6 +13,7 @@ from Queue import Queue, Empty
|
||||
from threading import Thread
|
||||
from io import BytesIO
|
||||
from operator import attrgetter
|
||||
from urlparse import urlparse
|
||||
|
||||
from calibre.customize.ui import metadata_plugins, all_metadata_plugins
|
||||
from calibre.ebooks.metadata.sources.base import create_log, msprefs
|
||||
@ -458,6 +459,14 @@ def urls_from_identifiers(identifiers): # {{{
|
||||
if oclc:
|
||||
ans.append(('OCLC', 'oclc', oclc,
|
||||
'http://www.worldcat.org/oclc/'+oclc))
|
||||
url = identifiers.get('uri', None)
|
||||
if url is None:
|
||||
url = identifiers.get('url', None)
|
||||
if url and url.startswith('http'):
|
||||
url = url[:8].replace('|', ':') + url[8:].replace('|', ',')
|
||||
parts = urlparse(url)
|
||||
name = parts.netloc
|
||||
ans.append((name, 'url', url, url))
|
||||
return ans
|
||||
# }}}
|
||||
|
||||
|
@ -41,7 +41,7 @@ class OverDrive(Source):
|
||||
cached_cover_url_is_reliable = True
|
||||
|
||||
options = (
|
||||
Option('get_full_metadata', 'bool', False,
|
||||
Option('get_full_metadata', 'bool', True,
|
||||
_('Download all metadata (slow)'),
|
||||
_('Enable this option to gather all metadata available from Overdrive.')),
|
||||
)
|
||||
|
@ -253,6 +253,8 @@ class MobiReader(object):
|
||||
|
||||
.italic { font-style: italic }
|
||||
|
||||
.underline { text-decoration: underline }
|
||||
|
||||
.mbp_pagebreak {
|
||||
page-break-after: always; margin: 0; display: block
|
||||
}
|
||||
@ -601,6 +603,9 @@ class MobiReader(object):
|
||||
elif tag.tag == 'i':
|
||||
tag.tag = 'span'
|
||||
tag.attrib['class'] = 'italic'
|
||||
elif tag.tag == 'u':
|
||||
tag.tag = 'span'
|
||||
tag.attrib['class'] = 'underline'
|
||||
elif tag.tag == 'b':
|
||||
tag.tag = 'span'
|
||||
tag.attrib['class'] = 'bold'
|
||||
|
@ -7,6 +7,8 @@ __docformat__ = 'restructuredtext en'
|
||||
Convert an ODT file into a Open Ebook
|
||||
'''
|
||||
import os
|
||||
|
||||
from lxml import etree
|
||||
from odf.odf2xhtml import ODF2XHTML
|
||||
|
||||
from calibre import CurrentDir, walk
|
||||
@ -23,7 +25,51 @@ class Extract(ODF2XHTML):
|
||||
with open(name, 'wb') as f:
|
||||
f.write(data)
|
||||
|
||||
def __call__(self, stream, odir):
|
||||
def filter_css(self, html, log):
|
||||
root = etree.fromstring(html)
|
||||
style = root.xpath('//*[local-name() = "style" and @type="text/css"]')
|
||||
if style:
|
||||
style = style[0]
|
||||
css = style.text
|
||||
if css:
|
||||
style.text, sel_map = self.do_filter_css(css)
|
||||
for x in root.xpath('//*[@class]'):
|
||||
extra = []
|
||||
orig = x.get('class')
|
||||
for cls in orig.split():
|
||||
extra.extend(sel_map.get(cls, []))
|
||||
if extra:
|
||||
x.set('class', orig + ' ' + ' '.join(extra))
|
||||
html = etree.tostring(root, encoding='utf-8',
|
||||
xml_declaration=True)
|
||||
return html
|
||||
|
||||
def do_filter_css(self, css):
|
||||
from cssutils import parseString
|
||||
from cssutils.css import CSSRule
|
||||
sheet = parseString(css)
|
||||
rules = list(sheet.cssRules.rulesOfType(CSSRule.STYLE_RULE))
|
||||
sel_map = {}
|
||||
count = 0
|
||||
for r in rules:
|
||||
# Check if we have only class selectors for this rule
|
||||
nc = [x for x in r.selectorList if not
|
||||
x.selectorText.startswith('.')]
|
||||
if len(r.selectorList) > 1 and not nc:
|
||||
# Replace all the class selectors with a single class selector
|
||||
# This will be added to the class attribute of all elements
|
||||
# that have one of these selectors.
|
||||
replace_name = 'c_odt%d'%count
|
||||
count += 1
|
||||
for sel in r.selectorList:
|
||||
s = sel.selectorText[1:]
|
||||
if s not in sel_map:
|
||||
sel_map[s] = []
|
||||
sel_map[s].append(replace_name)
|
||||
r.selectorText = '.'+replace_name
|
||||
return sheet.cssText, sel_map
|
||||
|
||||
def __call__(self, stream, odir, log):
|
||||
from calibre.utils.zipfile import ZipFile
|
||||
from calibre.ebooks.metadata.meta import get_metadata
|
||||
from calibre.ebooks.metadata.opf2 import OPFCreator
|
||||
@ -32,13 +78,17 @@ class Extract(ODF2XHTML):
|
||||
if not os.path.exists(odir):
|
||||
os.makedirs(odir)
|
||||
with CurrentDir(odir):
|
||||
print 'Extracting ODT file...'
|
||||
log('Extracting ODT file...')
|
||||
html = self.odf2xhtml(stream)
|
||||
# A blanket img specification like this causes problems
|
||||
# with EPUB output as the contaiing element often has
|
||||
# with EPUB output as the containing element often has
|
||||
# an absolute height and width set that is larger than
|
||||
# the available screen real estate
|
||||
html = html.replace('img { width: 100%; height: 100%; }', '')
|
||||
try:
|
||||
html = self.filter_css(html, log)
|
||||
except:
|
||||
log.exception('Failed to filter CSS, conversion may be slow')
|
||||
with open('index.xhtml', 'wb') as f:
|
||||
f.write(html.encode('utf-8'))
|
||||
zf = ZipFile(stream, 'r')
|
||||
@ -67,7 +117,7 @@ class ODTInput(InputFormatPlugin):
|
||||
|
||||
def convert(self, stream, options, file_ext, log,
|
||||
accelerators):
|
||||
return Extract()(stream, '.')
|
||||
return Extract()(stream, '.', log)
|
||||
|
||||
def postprocess_book(self, oeb, opts, log):
|
||||
# Fix <p><div> constructs as the asinine epubchecker complains
|
||||
|
@ -1049,8 +1049,8 @@ class Manifest(object):
|
||||
|
||||
# Remove hyperlinks with no content as they cause rendering
|
||||
# artifacts in browser based renderers
|
||||
# Also remove empty <b> and <i> tags
|
||||
for a in xpath(data, '//h:a[@href]|//h:i|//h:b'):
|
||||
# Also remove empty <b>, <u> and <i> tags
|
||||
for a in xpath(data, '//h:a[@href]|//h:i|//h:b|//h:u'):
|
||||
if a.get('id', None) is None and a.get('name', None) is None \
|
||||
and len(a) == 0 and not a.text:
|
||||
remove_elem(a)
|
||||
|
@ -36,7 +36,7 @@ def meta_info_to_oeb_metadata(mi, m, log, override_input_metadata=False):
|
||||
m.clear('description')
|
||||
m.add('description', mi.comments)
|
||||
elif override_input_metadata:
|
||||
m.clear('description')
|
||||
m.clear('description')
|
||||
if not mi.is_null('publisher'):
|
||||
m.clear('publisher')
|
||||
m.add('publisher', mi.publisher)
|
||||
|
@ -32,10 +32,11 @@ class PDFInput(InputFormatPlugin):
|
||||
|
||||
def convert_new(self, stream, accelerators):
|
||||
from calibre.ebooks.pdf.reflow import PDFDocument
|
||||
from calibre.utils.cleantext import clean_ascii_chars
|
||||
if pdfreflow_err:
|
||||
raise RuntimeError('Failed to load pdfreflow: ' + pdfreflow_err)
|
||||
pdfreflow.reflow(stream.read(), 1, -1)
|
||||
xml = open('index.xml', 'rb').read()
|
||||
xml = clean_ascii_chars(open('index.xml', 'rb').read())
|
||||
PDFDocument(xml, self.opts, self.log)
|
||||
return os.path.join(os.getcwd(), 'metadata.opf')
|
||||
|
||||
|
@ -15,7 +15,6 @@ import cStringIO
|
||||
from lxml import etree
|
||||
|
||||
from calibre.ebooks.metadata import authors_to_string
|
||||
from calibre.utils.filenames import ascii_text
|
||||
from calibre.utils.magick.draw import save_cover_data_to, identify_data
|
||||
|
||||
TAGS = {
|
||||
@ -79,8 +78,7 @@ def txt2rtf(text):
|
||||
elif val <= 127:
|
||||
buf.write(x)
|
||||
else:
|
||||
repl = ascii_text(x)
|
||||
c = r'\uc{2}\u{0:d}{1}'.format(val, repl, len(repl))
|
||||
c = r'\u{0:d}?'.format(val)
|
||||
buf.write(c)
|
||||
return buf.getvalue()
|
||||
|
||||
|
@ -34,7 +34,7 @@ if isosx:
|
||||
)
|
||||
gprefs.defaults['action-layout-toolbar'] = (
|
||||
'Add Books', 'Edit Metadata', None, 'Convert Books', 'View', None,
|
||||
'Choose Library', 'Donate', None, 'Fetch News', 'Save To Disk',
|
||||
'Choose Library', 'Donate', None, 'Fetch News', 'Store', 'Save To Disk',
|
||||
'Connect Share', None, 'Remove Books',
|
||||
)
|
||||
gprefs.defaults['action-layout-toolbar-device'] = (
|
||||
@ -48,7 +48,7 @@ else:
|
||||
gprefs.defaults['action-layout-menubar-device'] = ()
|
||||
gprefs.defaults['action-layout-toolbar'] = (
|
||||
'Add Books', 'Edit Metadata', None, 'Convert Books', 'View', None,
|
||||
'Choose Library', 'Donate', None, 'Fetch News', 'Save To Disk',
|
||||
'Choose Library', 'Donate', None, 'Fetch News', 'Store', 'Save To Disk',
|
||||
'Connect Share', None, 'Remove Books', None, 'Help', 'Preferences',
|
||||
)
|
||||
gprefs.defaults['action-layout-toolbar-device'] = (
|
||||
|
@ -246,7 +246,8 @@ class ChooseLibraryAction(InterfaceAction):
|
||||
def delete_requested(self, name, location):
|
||||
loc = location.replace('/', os.sep)
|
||||
if not question_dialog(self.gui, _('Are you sure?'), '<p>'+
|
||||
_('All files from %s will be '
|
||||
_('<b style="color: red">All files</b> (not just ebooks) '
|
||||
'from <br><br><b>%s</b><br><br> will be '
|
||||
'<b>permanently deleted</b>. Are you sure?') % loc,
|
||||
show_copy_button=False):
|
||||
return
|
||||
|
@ -10,7 +10,7 @@ from PyQt4.Qt import QIcon, QMenu, Qt
|
||||
from calibre.gui2.actions import InterfaceAction
|
||||
from calibre.gui2.preferences.main import Preferences
|
||||
from calibre.gui2 import error_dialog
|
||||
from calibre.constants import DEBUG
|
||||
from calibre.constants import DEBUG, isosx
|
||||
|
||||
class PreferencesAction(InterfaceAction):
|
||||
|
||||
@ -19,7 +19,8 @@ class PreferencesAction(InterfaceAction):
|
||||
|
||||
def genesis(self):
|
||||
pm = QMenu()
|
||||
pm.addAction(QIcon(I('config.png')), _('Preferences'), self.do_config)
|
||||
acname = _('Change calibre behavior') if isosx else _('Preferences')
|
||||
pm.addAction(QIcon(I('config.png')), acname, self.do_config)
|
||||
pm.addAction(QIcon(I('wizard.png')), _('Run welcome wizard'),
|
||||
self.gui.run_wizard)
|
||||
if not DEBUG:
|
||||
|
@ -60,7 +60,7 @@ class ViewAction(InterfaceAction):
|
||||
|
||||
def build_menus(self, db):
|
||||
self.view_menu.clear()
|
||||
self.view_menu.addAction(self.qaction)
|
||||
self.view_menu.addAction(self.view_action)
|
||||
self.view_menu.addAction(self.view_specific_action)
|
||||
self.view_menu.addSeparator()
|
||||
self.view_menu.addAction(self.action_pick_random)
|
||||
|
@ -62,8 +62,18 @@ class ConfigWidget(QWidget, Ui_ConfigWidget):
|
||||
|
||||
if isinstance(extra_customization_message, list):
|
||||
self.opt_extra_customization = []
|
||||
if len(extra_customization_message) > 6:
|
||||
row_func = lambda x, y: ((x/2) * 2) + y
|
||||
col_func = lambda x: x%2
|
||||
else:
|
||||
row_func = lambda x, y: x*2 + y
|
||||
col_func = lambda x: 0
|
||||
|
||||
for i, m in enumerate(extra_customization_message):
|
||||
label_text, tt = parse_msg(m)
|
||||
if not label_text:
|
||||
self.opt_extra_customization.append(None)
|
||||
continue
|
||||
if isinstance(settings.extra_customization[i], bool):
|
||||
self.opt_extra_customization.append(QCheckBox(label_text))
|
||||
self.opt_extra_customization[-1].setToolTip(tt)
|
||||
@ -75,8 +85,9 @@ class ConfigWidget(QWidget, Ui_ConfigWidget):
|
||||
l.setBuddy(self.opt_extra_customization[i])
|
||||
l.setWordWrap(True)
|
||||
self.opt_extra_customization[i].setText(settings.extra_customization[i])
|
||||
self.extra_layout.addWidget(l)
|
||||
self.extra_layout.addWidget(self.opt_extra_customization[i])
|
||||
self.extra_layout.addWidget(l, row_func(i, 0), col_func(i))
|
||||
self.extra_layout.addWidget(self.opt_extra_customization[i],
|
||||
row_func(i, 1), col_func(i))
|
||||
else:
|
||||
self.opt_extra_customization = QLineEdit()
|
||||
label_text, tt = parse_msg(extra_customization_message)
|
||||
@ -86,8 +97,8 @@ class ConfigWidget(QWidget, Ui_ConfigWidget):
|
||||
l.setWordWrap(True)
|
||||
if settings.extra_customization:
|
||||
self.opt_extra_customization.setText(settings.extra_customization)
|
||||
self.extra_layout.addWidget(l)
|
||||
self.extra_layout.addWidget(self.opt_extra_customization)
|
||||
self.extra_layout.addWidget(l, 0, 0)
|
||||
self.extra_layout.addWidget(self.opt_extra_customization, 1, 0)
|
||||
self.opt_save_template.setText(settings.save_template)
|
||||
|
||||
|
||||
|
@ -101,7 +101,7 @@
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="0">
|
||||
<layout class="QVBoxLayout" name="extra_layout"/>
|
||||
<layout class="QGridLayout" name="extra_layout"/>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
|
@ -3,12 +3,13 @@ __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
__license__ = 'GPL v3'
|
||||
|
||||
from PyQt4.Qt import Qt, QDialog, QTableWidgetItem, QAbstractItemView
|
||||
from PyQt4.Qt import (Qt, QDialog, QTableWidgetItem, QAbstractItemView, QIcon,
|
||||
QDialogButtonBox, QFrame, QLabel, QTimer, QMenu, QApplication)
|
||||
|
||||
from calibre.ebooks.metadata import author_to_author_sort
|
||||
from calibre.gui2 import error_dialog
|
||||
from calibre.gui2.dialogs.edit_authors_dialog_ui import Ui_EditAuthorsDialog
|
||||
from calibre.utils.icu import sort_key, strcmp
|
||||
from calibre.utils.icu import sort_key
|
||||
|
||||
class tableItem(QTableWidgetItem):
|
||||
def __ge__(self, other):
|
||||
@ -19,7 +20,7 @@ class tableItem(QTableWidgetItem):
|
||||
|
||||
class EditAuthorsDialog(QDialog, Ui_EditAuthorsDialog):
|
||||
|
||||
def __init__(self, parent, db, id_to_select):
|
||||
def __init__(self, parent, db, id_to_select, select_sort):
|
||||
QDialog.__init__(self, parent)
|
||||
Ui_EditAuthorsDialog.__init__(self)
|
||||
self.setupUi(self)
|
||||
@ -30,14 +31,23 @@ class EditAuthorsDialog(QDialog, Ui_EditAuthorsDialog):
|
||||
|
||||
self.buttonBox.accepted.connect(self.accepted)
|
||||
|
||||
# Set up the column headings
|
||||
self.table.setSelectionMode(QAbstractItemView.SingleSelection)
|
||||
self.table.setColumnCount(2)
|
||||
self.table.setHorizontalHeaderLabels([_('Author'), _('Author sort')])
|
||||
self.down_arrow_icon = QIcon(I('arrow-down.png'))
|
||||
self.up_arrow_icon = QIcon(I('arrow-up.png'))
|
||||
self.blank_icon = QIcon(I('blank.png'))
|
||||
self.auth_col = QTableWidgetItem(_('Author'))
|
||||
self.table.setHorizontalHeaderItem(0, self.auth_col)
|
||||
self.auth_col.setIcon(self.blank_icon)
|
||||
self.aus_col = QTableWidgetItem(_('Author sort'))
|
||||
self.table.setHorizontalHeaderItem(1, self.aus_col)
|
||||
self.aus_col.setIcon(self.up_arrow_icon)
|
||||
|
||||
# Add the data
|
||||
self.authors = {}
|
||||
auts = db.get_authors_with_ids()
|
||||
self.table.setRowCount(len(auts))
|
||||
setattr(self.table, '__lt__', lambda x, y: True if strcmp(x, y) < 0 else False)
|
||||
select_item = None
|
||||
for row, (id, author, sort) in enumerate(auts):
|
||||
author = author.replace('|', ',')
|
||||
@ -48,7 +58,10 @@ class EditAuthorsDialog(QDialog, Ui_EditAuthorsDialog):
|
||||
self.table.setItem(row, 0, aut)
|
||||
self.table.setItem(row, 1, sort)
|
||||
if id == id_to_select:
|
||||
select_item = sort
|
||||
if select_sort:
|
||||
select_item = sort
|
||||
else:
|
||||
select_item = aut
|
||||
self.table.resizeColumnsToContents()
|
||||
|
||||
# set up the cellChanged signal only after the table is filled
|
||||
@ -69,23 +82,153 @@ class EditAuthorsDialog(QDialog, Ui_EditAuthorsDialog):
|
||||
self.recalc_author_sort.clicked.connect(self.do_recalc_author_sort)
|
||||
self.auth_sort_to_author.clicked.connect(self.do_auth_sort_to_author)
|
||||
|
||||
# Position on the desired item
|
||||
if select_item is not None:
|
||||
self.table.setCurrentItem(select_item)
|
||||
self.table.editItem(select_item)
|
||||
self.start_find_pos = select_item.row() * 2 + select_item.column()
|
||||
else:
|
||||
self.table.setCurrentCell(0, 0)
|
||||
self.start_find_pos = -1
|
||||
|
||||
# set up the search box
|
||||
self.find_box.initialize('manage_authors_search')
|
||||
self.find_box.lineEdit().returnPressed.connect(self.do_find)
|
||||
self.find_box.editTextChanged.connect(self.find_text_changed)
|
||||
self.find_button.clicked.connect(self.do_find)
|
||||
|
||||
l = QLabel(self.table)
|
||||
self.not_found_label = l
|
||||
l.setFrameStyle(QFrame.StyledPanel)
|
||||
l.setAutoFillBackground(True)
|
||||
l.setText(_('No matches found'))
|
||||
l.setAlignment(Qt.AlignVCenter)
|
||||
l.resize(l.sizeHint())
|
||||
l.move(10,20)
|
||||
l.setVisible(False)
|
||||
self.not_found_label.move(40, 40)
|
||||
self.not_found_label_timer = QTimer()
|
||||
self.not_found_label_timer.setSingleShot(True)
|
||||
self.not_found_label_timer.timeout.connect(
|
||||
self.not_found_label_timer_event, type=Qt.QueuedConnection)
|
||||
|
||||
self.table.setContextMenuPolicy(Qt.CustomContextMenu)
|
||||
self.table.customContextMenuRequested .connect(self.show_context_menu)
|
||||
|
||||
def show_context_menu(self, point):
|
||||
self.context_item = self.table.itemAt(point)
|
||||
case_menu = QMenu(_('Change Case'))
|
||||
action_upper_case = case_menu.addAction(_('Upper Case'))
|
||||
action_lower_case = case_menu.addAction(_('Lower Case'))
|
||||
action_swap_case = case_menu.addAction(_('Swap Case'))
|
||||
action_title_case = case_menu.addAction(_('Title Case'))
|
||||
action_capitalize = case_menu.addAction(_('Capitalize'))
|
||||
|
||||
action_upper_case.triggered.connect(self.upper_case)
|
||||
action_lower_case.triggered.connect(self.lower_case)
|
||||
action_swap_case.triggered.connect(self.swap_case)
|
||||
action_title_case.triggered.connect(self.title_case)
|
||||
action_capitalize.triggered.connect(self.capitalize)
|
||||
|
||||
m = self.au_context_menu = QMenu()
|
||||
ca = m.addAction(_('Copy'))
|
||||
ca.triggered.connect(self.copy_to_clipboard)
|
||||
ca = m.addAction(_('Paste'))
|
||||
ca.triggered.connect(self.paste_from_clipboard)
|
||||
m.addSeparator()
|
||||
|
||||
if self.context_item.column() == 0:
|
||||
ca = m.addAction(_('Copy to author sort'))
|
||||
ca.triggered.connect(self.copy_au_to_aus)
|
||||
else:
|
||||
ca = m.addAction(_('Copy to author'))
|
||||
ca.triggered.connect(self.copy_aus_to_au)
|
||||
m.addSeparator()
|
||||
m.addMenu(case_menu)
|
||||
m.exec_(self.table.mapToGlobal(point))
|
||||
|
||||
def copy_to_clipboard(self):
|
||||
cb = QApplication.clipboard()
|
||||
cb.setText(unicode(self.context_item.text()))
|
||||
|
||||
def paste_from_clipboard(self):
|
||||
cb = QApplication.clipboard()
|
||||
self.context_item.setText(cb.text())
|
||||
|
||||
def upper_case(self):
|
||||
self.context_item.setText(icu_upper(unicode(self.context_item.text())))
|
||||
|
||||
def lower_case(self):
|
||||
self.context_item.setText(icu_lower(unicode(self.context_item.text())))
|
||||
|
||||
def swap_case(self):
|
||||
self.context_item.setText(unicode(self.context_item.text()).swapcase())
|
||||
|
||||
def title_case(self):
|
||||
from calibre.utils.titlecase import titlecase
|
||||
self.context_item.setText(titlecase(unicode(self.context_item.text())))
|
||||
|
||||
def capitalize(self):
|
||||
from calibre.utils.icu import capitalize
|
||||
self.context_item.setText(capitalize(unicode(self.context_item.text())))
|
||||
|
||||
def copy_aus_to_au(self):
|
||||
row = self.context_item.row()
|
||||
dest = self.table.item(row, 0)
|
||||
dest.setText(self.context_item.text())
|
||||
|
||||
def copy_au_to_aus(self):
|
||||
row = self.context_item.row()
|
||||
dest = self.table.item(row, 1)
|
||||
dest.setText(self.context_item.text())
|
||||
|
||||
def not_found_label_timer_event(self):
|
||||
self.not_found_label.setVisible(False)
|
||||
|
||||
def find_text_changed(self):
|
||||
self.start_find_pos = -1
|
||||
|
||||
def do_find(self):
|
||||
self.not_found_label.setVisible(False)
|
||||
# For some reason the button box keeps stealing the RETURN shortcut.
|
||||
# Steal it back
|
||||
self.buttonBox.button(QDialogButtonBox.Ok).setDefault(False)
|
||||
self.buttonBox.button(QDialogButtonBox.Ok).setAutoDefault(False)
|
||||
self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(False)
|
||||
self.buttonBox.button(QDialogButtonBox.Cancel).setAutoDefault(False)
|
||||
st = icu_lower(unicode(self.find_box.currentText()))
|
||||
|
||||
for i in range(0, self.table.rowCount()*2):
|
||||
self.start_find_pos = (self.start_find_pos + 1) % (self.table.rowCount()*2)
|
||||
r = (self.start_find_pos/2)%self.table.rowCount()
|
||||
c = self.start_find_pos % 2
|
||||
item = self.table.item(r, c)
|
||||
text = icu_lower(unicode(item.text()))
|
||||
if st in text:
|
||||
self.table.setCurrentItem(item)
|
||||
self.table.setFocus(True)
|
||||
return
|
||||
# Nothing found. Pop up the little dialog for 1.5 seconds
|
||||
self.not_found_label.setVisible(True)
|
||||
self.not_found_label_timer.start(1500)
|
||||
|
||||
def do_sort_by_author(self):
|
||||
self.author_order = 1 if self.author_order == 0 else 0
|
||||
self.table.sortByColumn(0, self.author_order)
|
||||
self.sort_by_author.setChecked(True)
|
||||
self.sort_by_author_sort.setChecked(False)
|
||||
self.auth_col.setIcon(self.down_arrow_icon if self.author_order
|
||||
else self.up_arrow_icon)
|
||||
self.aus_col.setIcon(self.blank_icon)
|
||||
|
||||
def do_sort_by_author_sort(self):
|
||||
self.author_sort_order = 1 if self.author_sort_order == 0 else 0
|
||||
self.table.sortByColumn(1, self.author_sort_order)
|
||||
self.sort_by_author.setChecked(False)
|
||||
self.sort_by_author_sort.setChecked(True)
|
||||
self.aus_col.setIcon(self.down_arrow_icon if self.author_sort_order
|
||||
else self.up_arrow_icon)
|
||||
self.auth_col.setIcon(self.blank_icon)
|
||||
|
||||
def accepted(self):
|
||||
self.result = []
|
||||
|
@ -20,6 +20,50 @@
|
||||
<string>Manage authors</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
<layout class="QHBoxLayout" name="">
|
||||
<item>
|
||||
<widget class="QLabel">
|
||||
<property name="text">
|
||||
<string>&Search for:</string>
|
||||
</property>
|
||||
<property name="buddy">
|
||||
<cstring>find_box</cstring>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="HistoryLineEdit" name="find_box">
|
||||
<property name="minimumSize">
|
||||
<size>
|
||||
<width>200</width>
|
||||
<height>0</height>
|
||||
</size>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="find_button">
|
||||
<property name="text">
|
||||
<string>F&ind</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer>
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QTableWidget" name="table">
|
||||
<property name="sizePolicy">
|
||||
@ -143,4 +187,11 @@ after changing Preferences->Advanced->Tweaks->Author sort name algorith
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
<class>HistoryLineEdit</class>
|
||||
<extends>QComboBox</extends>
|
||||
<header>calibre/gui2/widgets.h</header>
|
||||
</customwidget>
|
||||
</customwidgets>
|
||||
</ui>
|
||||
|
@ -7,16 +7,16 @@ __copyright__ = '2010, Kovid Goyal <kovid@kovidgoyal.net>'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
import os, shutil
|
||||
from contextlib import closing
|
||||
from zipfile import ZipFile, ZIP_DEFLATED, ZIP_STORED
|
||||
|
||||
from PyQt4.Qt import QDialog
|
||||
|
||||
from calibre.constants import isosx
|
||||
from calibre.gui2 import open_local_file
|
||||
from calibre.gui2 import open_local_file, error_dialog
|
||||
from calibre.gui2.dialogs.tweak_epub_ui import Ui_Dialog
|
||||
from calibre.libunzip import extract as zipextract
|
||||
from calibre.ptempfile import PersistentTemporaryDirectory
|
||||
from calibre.ptempfile import (PersistentTemporaryDirectory,
|
||||
PersistentTemporaryFile)
|
||||
|
||||
class TweakEpub(QDialog, Ui_Dialog):
|
||||
'''
|
||||
@ -37,11 +37,15 @@ class TweakEpub(QDialog, Ui_Dialog):
|
||||
self.cancel_button.clicked.connect(self.reject)
|
||||
self.explode_button.clicked.connect(self.explode)
|
||||
self.rebuild_button.clicked.connect(self.rebuild)
|
||||
self.preview_button.clicked.connect(self.preview)
|
||||
|
||||
# Position update dialog overlaying top left of app window
|
||||
parent_loc = parent.pos()
|
||||
self.move(parent_loc.x(),parent_loc.y())
|
||||
|
||||
self.gui = parent
|
||||
self._preview_files = []
|
||||
|
||||
def cleanup(self):
|
||||
if isosx:
|
||||
try:
|
||||
@ -55,6 +59,11 @@ class TweakEpub(QDialog, Ui_Dialog):
|
||||
# Delete directory containing exploded ePub
|
||||
if self._exploded is not None:
|
||||
shutil.rmtree(self._exploded, ignore_errors=True)
|
||||
for x in self._preview_files:
|
||||
try:
|
||||
os.remove(x)
|
||||
except:
|
||||
pass
|
||||
|
||||
def display_exploded(self):
|
||||
'''
|
||||
@ -71,9 +80,8 @@ class TweakEpub(QDialog, Ui_Dialog):
|
||||
self.rebuild_button.setEnabled(True)
|
||||
self.explode_button.setEnabled(False)
|
||||
|
||||
def rebuild(self, *args):
|
||||
self._output = os.path.join(self._exploded, 'rebuilt.epub')
|
||||
with closing(ZipFile(self._output, 'w', compression=ZIP_DEFLATED)) as zf:
|
||||
def do_rebuild(self, src):
|
||||
with ZipFile(src, 'w', compression=ZIP_DEFLATED) as zf:
|
||||
# Write mimetype
|
||||
zf.write(os.path.join(self._exploded,'mimetype'), 'mimetype', compress_type=ZIP_STORED)
|
||||
# Write everything else
|
||||
@ -86,5 +94,23 @@ class TweakEpub(QDialog, Ui_Dialog):
|
||||
zfn = os.path.relpath(absfn,
|
||||
self._exploded).replace(os.sep, '/')
|
||||
zf.write(absfn, zfn)
|
||||
|
||||
def preview(self):
|
||||
if not self._exploded:
|
||||
return error_dialog(self, _('Cannot preview'),
|
||||
_('You must first explode the epub before previewing.'),
|
||||
show=True)
|
||||
|
||||
tf = PersistentTemporaryFile('.epub')
|
||||
tf.close()
|
||||
self._preview_files.append(tf.name)
|
||||
|
||||
self.do_rebuild(tf.name)
|
||||
|
||||
self.gui.iactions['View']._view_file(tf.name)
|
||||
|
||||
def rebuild(self, *args):
|
||||
self._output = os.path.join(self._exploded, 'rebuilt.epub')
|
||||
self.do_rebuild(self._output)
|
||||
return QDialog.accept(self)
|
||||
|
||||
|
@ -23,6 +23,16 @@
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0" colspan="2">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string><p>Explode the ePub to display contents in a file browser window. To tweak individual files, right-click, then 'Open with...' your editor of choice. When tweaks are complete, close the file browser window <b>and the editor windows you used to edit files in the epub</b>.</p><p>Rebuild the ePub, updating your calibre library.</p></string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QPushButton" name="explode_button">
|
||||
<property name="statusTip">
|
||||
@ -37,23 +47,6 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QPushButton" name="rebuild_button">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="statusTip">
|
||||
<string>Rebuild ePub from exploded contents</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Rebuild ePub</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../../../../resources/images.qrc">
|
||||
<normaloff>:/images/exec.png</normaloff>:/images/exec.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QPushButton" name="cancel_button">
|
||||
<property name="statusTip">
|
||||
@ -68,13 +61,31 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label">
|
||||
<property name="text">
|
||||
<string><p>Explode the ePub to display contents in a file browser window. To tweak individual files, right-click, then 'Open with...' your editor of choice. When tweaks are complete, close the file browser window <b>and the editor windows you used to edit files in the epub</b>.</p><p>Rebuild the ePub, updating your calibre library.</p></string>
|
||||
<item row="3" column="1">
|
||||
<widget class="QPushButton" name="rebuild_button">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
<property name="statusTip">
|
||||
<string>Rebuild ePub from exploded contents</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>&Rebuild ePub</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../../../../resources/images.qrc">
|
||||
<normaloff>:/images/exec.png</normaloff>:/images/exec.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QPushButton" name="preview_button">
|
||||
<property name="text">
|
||||
<string>&Preview ePub</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../../../../resources/images.qrc">
|
||||
<normaloff>:/images/view.png</normaloff>:/images/view.png</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -44,18 +44,19 @@ class LocationManager(QObject): # {{{
|
||||
receiver = partial(self._location_selected, name)
|
||||
ac.triggered.connect(receiver)
|
||||
self.tooltips[name] = tooltip
|
||||
|
||||
m = QMenu(parent)
|
||||
self._mem.append(m)
|
||||
a = m.addAction(icon, tooltip)
|
||||
a.triggered.connect(receiver)
|
||||
if name != 'library':
|
||||
m = QMenu(parent)
|
||||
self._mem.append(m)
|
||||
a = m.addAction(icon, tooltip)
|
||||
a.triggered.connect(receiver)
|
||||
self._mem.append(a)
|
||||
a = m.addAction(QIcon(I('eject.png')), _('Eject this device'))
|
||||
a.triggered.connect(self._eject_requested)
|
||||
ac.setMenu(m)
|
||||
self._mem.append(a)
|
||||
else:
|
||||
ac.setToolTip(tooltip)
|
||||
ac.setMenu(m)
|
||||
ac.calibre_name = name
|
||||
|
||||
return ac
|
||||
@ -71,7 +72,12 @@ class LocationManager(QObject): # {{{
|
||||
|
||||
def set_switch_actions(self, quick_actions, rename_actions, delete_actions,
|
||||
switch_actions, choose_action):
|
||||
self.switch_menu = QMenu()
|
||||
self.switch_menu = self.library_action.menu()
|
||||
if self.switch_menu:
|
||||
self.switch_menu.addSeparator()
|
||||
else:
|
||||
self.switch_menu = QMenu()
|
||||
|
||||
self.switch_menu.addAction(choose_action)
|
||||
self.cs_menus = []
|
||||
for t, acs in [(_('Quick switch'), quick_actions),
|
||||
@ -85,7 +91,9 @@ class LocationManager(QObject): # {{{
|
||||
self.switch_menu.addSeparator()
|
||||
for ac in switch_actions:
|
||||
self.switch_menu.addAction(ac)
|
||||
self.library_action.setMenu(self.switch_menu)
|
||||
|
||||
if self.switch_menu != self.library_action.menu():
|
||||
self.library_action.setMenu(self.switch_menu)
|
||||
|
||||
def _location_selected(self, location, *args):
|
||||
if location != self.current_location and hasattr(self,
|
||||
|
@ -439,10 +439,16 @@ class BooksView(QTableView): # {{{
|
||||
|
||||
if tweaks['sort_columns_at_startup'] is not None:
|
||||
sh = []
|
||||
for c,d in tweaks['sort_columns_at_startup']:
|
||||
if not isinstance(d, bool):
|
||||
d = True if d == 0 else False
|
||||
sh.append((c, d))
|
||||
try:
|
||||
for c,d in tweaks['sort_columns_at_startup']:
|
||||
if not isinstance(d, bool):
|
||||
d = True if d == 0 else False
|
||||
sh.append((c, d))
|
||||
except:
|
||||
# Ignore invalid tweak values as users seem to often get them
|
||||
# wrong
|
||||
import traceback
|
||||
traceback.print_exc()
|
||||
old_state['sort_history'] = sh
|
||||
|
||||
self.apply_state(old_state)
|
||||
|
@ -299,13 +299,13 @@ def run_gui(opts, args, actions, listener, app, gui_debug=None):
|
||||
if getattr(runner.main, 'debug_on_restart', False):
|
||||
run_in_debug_mode()
|
||||
else:
|
||||
import subprocess
|
||||
print 'Restarting with:', e, sys.argv
|
||||
if hasattr(sys, 'frameworks_dir'):
|
||||
app = os.path.dirname(os.path.dirname(sys.frameworks_dir))
|
||||
import subprocess
|
||||
subprocess.Popen('sleep 3s; open '+app, shell=True)
|
||||
else:
|
||||
os.execvp(e, sys.argv)
|
||||
subprocess.Popen([e] + sys.argv[1:])
|
||||
else:
|
||||
if iswindows:
|
||||
try:
|
||||
|
@ -9,7 +9,7 @@ __docformat__ = 'restructuredtext en'
|
||||
|
||||
import textwrap, re, os
|
||||
|
||||
from PyQt4.Qt import (Qt, QDateEdit, QDate, pyqtSignal,
|
||||
from PyQt4.Qt import (Qt, QDateEdit, QDate, pyqtSignal, QMessageBox,
|
||||
QIcon, QToolButton, QWidget, QLabel, QGridLayout,
|
||||
QDoubleSpinBox, QListWidgetItem, QSize, QPixmap,
|
||||
QPushButton, QSpinBox, QLineEdit, QSizePolicy)
|
||||
@ -19,10 +19,10 @@ from calibre.gui2.complete import MultiCompleteLineEdit, MultiCompleteComboBox
|
||||
from calibre.utils.icu import sort_key
|
||||
from calibre.utils.config import tweaks, prefs
|
||||
from calibre.ebooks.metadata import (title_sort, authors_to_string,
|
||||
string_to_authors, check_isbn)
|
||||
string_to_authors, check_isbn, authors_to_sort_string)
|
||||
from calibre.ebooks.metadata.meta import get_metadata
|
||||
from calibre.gui2 import (file_icon_provider, UNDEFINED_QDATE, UNDEFINED_DATE,
|
||||
choose_files, error_dialog, choose_images, question_dialog)
|
||||
choose_files, error_dialog, choose_images)
|
||||
from calibre.utils.date import local_tz, qt_to_dt
|
||||
from calibre import strftime
|
||||
from calibre.ebooks import BOOK_EXTENSIONS
|
||||
@ -31,6 +31,16 @@ from calibre.utils.date import utcfromtimestamp
|
||||
from calibre.gui2.comments_editor import Editor
|
||||
from calibre.library.comments import comments_to_html
|
||||
from calibre.gui2.dialogs.tag_editor import TagEditor
|
||||
from calibre.utils.icu import strcmp
|
||||
|
||||
def save_dialog(parent, title, msg, det_msg=''):
|
||||
d = QMessageBox(parent)
|
||||
d.setWindowTitle(title)
|
||||
d.setText(msg)
|
||||
d.setStandardButtons(QMessageBox.Yes | QMessageBox.No | QMessageBox.Cancel)
|
||||
return d.exec_()
|
||||
|
||||
|
||||
|
||||
'''
|
||||
The interface common to all widgets used to set basic metadata
|
||||
@ -156,7 +166,7 @@ class AuthorsEdit(MultiCompleteComboBox):
|
||||
TOOLTIP = ''
|
||||
LABEL = _('&Author(s):')
|
||||
|
||||
def __init__(self, parent):
|
||||
def __init__(self, parent, manage_authors):
|
||||
self.dialog = parent
|
||||
self.books_to_refresh = set([])
|
||||
MultiCompleteComboBox.__init__(self, parent)
|
||||
@ -164,6 +174,28 @@ class AuthorsEdit(MultiCompleteComboBox):
|
||||
self.setWhatsThis(self.TOOLTIP)
|
||||
self.setEditable(True)
|
||||
self.setSizeAdjustPolicy(self.AdjustToMinimumContentsLengthWithIcon)
|
||||
manage_authors.triggered.connect(self.manage_authors)
|
||||
|
||||
def manage_authors(self):
|
||||
if self.original_val != self.current_val:
|
||||
d = save_dialog(self, _('Authors changed'),
|
||||
_('You have changed the authors for this book. You must save '
|
||||
'these changes before you can use Manage authors. Do you '
|
||||
'want to save these changes?'))
|
||||
if d == QMessageBox.Cancel:
|
||||
return
|
||||
if d == QMessageBox.Yes:
|
||||
self.commit(self.db, self.id_)
|
||||
self.db.commit()
|
||||
self.original_val = self.current_val
|
||||
else:
|
||||
self.current_val = self.original_val
|
||||
first_author = self.current_val[0] if len(self.current_val) else None
|
||||
first_author_id = self.db.get_author_id(first_author) if first_author else None
|
||||
self.dialog.parent().do_author_sort_edit(self, first_author_id,
|
||||
select_sort=False)
|
||||
self.initialize(self.db, self.id_)
|
||||
self.dialog.author_sort.initialize(self.db, self.id_)
|
||||
|
||||
def get_default(self):
|
||||
return _('Unknown')
|
||||
@ -175,8 +207,8 @@ class AuthorsEdit(MultiCompleteComboBox):
|
||||
self.clear()
|
||||
for i in all_authors:
|
||||
id, name = i
|
||||
name = [name.strip().replace('|', ',') for n in name.split(',')]
|
||||
self.addItem(authors_to_string(name))
|
||||
name = name.strip().replace('|', ',')
|
||||
self.addItem(name)
|
||||
|
||||
self.set_separator('&')
|
||||
self.set_space_before_sep(True)
|
||||
@ -188,6 +220,8 @@ class AuthorsEdit(MultiCompleteComboBox):
|
||||
au = _('Unknown')
|
||||
self.current_val = [a.strip().replace('|', ',') for a in au.split(',')]
|
||||
self.original_val = self.current_val
|
||||
self.id_ = id_
|
||||
self.db = db
|
||||
|
||||
def commit(self, db, id_):
|
||||
authors = self.current_val
|
||||
@ -238,7 +272,7 @@ class AuthorSortEdit(EnLineEdit):
|
||||
'No action is required if this is what you want.'))
|
||||
self.tooltips = (ok_tooltip, bad_tooltip)
|
||||
|
||||
self.authors_edit.editTextChanged.connect(self.update_state)
|
||||
self.authors_edit.editTextChanged.connect(self.update_state_and_val)
|
||||
self.textChanged.connect(self.update_state)
|
||||
|
||||
autogen_button.clicked.connect(self.auto_generate)
|
||||
@ -260,12 +294,19 @@ class AuthorSortEdit(EnLineEdit):
|
||||
|
||||
return property(fget=fget, fset=fset)
|
||||
|
||||
def update_state_and_val(self):
|
||||
# Handle case change if the authors box changed
|
||||
aus = authors_to_sort_string(self.authors_edit.current_val)
|
||||
if strcmp(aus, self.current_val) == 0:
|
||||
self.current_val = aus
|
||||
self.update_state()
|
||||
|
||||
def update_state(self, *args):
|
||||
au = unicode(self.authors_edit.text())
|
||||
au = re.sub(r'\s+et al\.$', '', au)
|
||||
au = self.db.author_sort_from_authors(string_to_authors(au))
|
||||
|
||||
normal = au == self.current_val
|
||||
normal = strcmp(au, self.current_val) == 0
|
||||
if normal:
|
||||
col = 'rgb(0, 255, 0, 20%)'
|
||||
else:
|
||||
@ -900,10 +941,13 @@ class TagsEdit(MultiCompleteLineEdit): # {{{
|
||||
|
||||
def edit(self, db, id_):
|
||||
if self.changed:
|
||||
if question_dialog(self, _('Tags changed'),
|
||||
d = save_dialog(self, _('Tags changed'),
|
||||
_('You have changed the tags. In order to use the tags'
|
||||
' editor, you must either discard or apply these '
|
||||
'changes. Apply changes?'), show_copy_button=False):
|
||||
'changes. Apply changes?'))
|
||||
if d == QMessageBox.Cancel:
|
||||
return
|
||||
if d == QMessageBox.Yes:
|
||||
self.commit(db, id_)
|
||||
db.commit()
|
||||
self.original_val = self.current_val
|
||||
|
@ -103,16 +103,18 @@ class MetadataSingleDialogBase(ResizableDialog):
|
||||
self.basic_metadata_widgets.extend([self.title, self.title_sort])
|
||||
|
||||
self.deduce_author_sort_button = b = QToolButton(self)
|
||||
b.setToolTip(_(
|
||||
'Automatically create the author sort entry based on the current'
|
||||
' author entry.\n'
|
||||
'Using this button to create author sort will change author sort from'
|
||||
' red to green.'))
|
||||
b.setToolTip('<p>' +
|
||||
_('Automatically create the author sort entry based on the current '
|
||||
'author entry. Using this button to create author sort will '
|
||||
'change author sort from red to green. There is a menu of '
|
||||
'functions available under this button. Click and hold '
|
||||
'on the button to see it.') + '</p>')
|
||||
b.m = m = QMenu()
|
||||
ac = m.addAction(QIcon(I('forward.png')), _('Set author sort from author'))
|
||||
ac2 = m.addAction(QIcon(I('back.png')), _('Set author from author sort'))
|
||||
ac3 = m.addAction(QIcon(I('user_profile.png')), _('Manage authors'))
|
||||
b.setMenu(m)
|
||||
self.authors = AuthorsEdit(self)
|
||||
self.authors = AuthorsEdit(self, ac3)
|
||||
self.author_sort = AuthorSortEdit(self, self.authors, b, self.db, ac,
|
||||
ac2)
|
||||
self.basic_metadata_widgets.extend([self.authors, self.author_sort])
|
||||
@ -198,7 +200,7 @@ class MetadataSingleDialogBase(ResizableDialog):
|
||||
ans = self.custom_metadata_widgets
|
||||
for i in range(len(ans)-1):
|
||||
if before is not None and i == 0:
|
||||
pass# Do something
|
||||
pass
|
||||
if len(ans[i+1].widgets) == 2:
|
||||
sto(ans[i].widgets[-1], ans[i+1].widgets[1])
|
||||
else:
|
||||
@ -206,7 +208,7 @@ class MetadataSingleDialogBase(ResizableDialog):
|
||||
for c in range(2, len(ans[i].widgets), 2):
|
||||
sto(ans[i].widgets[c-1], ans[i].widgets[c+1])
|
||||
if after is not None:
|
||||
pass # Do something
|
||||
pass
|
||||
# }}}
|
||||
|
||||
def do_view_format(self, path, fmt):
|
||||
@ -290,13 +292,17 @@ class MetadataSingleDialogBase(ResizableDialog):
|
||||
show=True)
|
||||
return
|
||||
|
||||
def update_from_mi(self, mi):
|
||||
def update_from_mi(self, mi, update_sorts=True):
|
||||
if not mi.is_null('title'):
|
||||
self.title.current_val = mi.title
|
||||
if update_sorts:
|
||||
self.title_sort.auto_generate()
|
||||
if not mi.is_null('authors'):
|
||||
self.authors.current_val = mi.authors
|
||||
if not mi.is_null('author_sort'):
|
||||
self.author_sort.current_val = mi.author_sort
|
||||
elif update_sorts:
|
||||
self.author_sort.auto_generate()
|
||||
if not mi.is_null('rating'):
|
||||
try:
|
||||
self.rating.current_val = mi.rating
|
||||
@ -728,7 +734,135 @@ class MetadataSingleDialogAlt1(MetadataSingleDialogBase): # {{{
|
||||
|
||||
# }}}
|
||||
|
||||
editors = {'default': MetadataSingleDialog, 'alt1': MetadataSingleDialogAlt1}
|
||||
class MetadataSingleDialogAlt2(MetadataSingleDialogBase): # {{{
|
||||
|
||||
cc_two_column = False
|
||||
one_line_comments_toolbar = True
|
||||
|
||||
def do_layout(self):
|
||||
self.central_widget.clear()
|
||||
self.labels = []
|
||||
sto = QWidget.setTabOrder
|
||||
|
||||
self.central_widget.tabBar().setVisible(False)
|
||||
tab0 = QWidget(self)
|
||||
self.central_widget.addTab(tab0, _("&Metadata"))
|
||||
l = QGridLayout()
|
||||
tab0.setLayout(l)
|
||||
|
||||
# Basic metadata in col 0
|
||||
tl = QGridLayout()
|
||||
gb = QGroupBox(_('Basic metadata'), tab0)
|
||||
l.addWidget(gb, 0, 0, 1, 1)
|
||||
gb.setLayout(tl)
|
||||
|
||||
self.button_box.addButton(self.fetch_metadata_button,
|
||||
QDialogButtonBox.ActionRole)
|
||||
self.config_metadata_button.setToolButtonStyle(Qt.ToolButtonTextOnly)
|
||||
self.config_metadata_button.setText(_('Configure metadata downloading'))
|
||||
self.button_box.addButton(self.config_metadata_button,
|
||||
QDialogButtonBox.ActionRole)
|
||||
sto(self.button_box, self.title)
|
||||
|
||||
def create_row(row, widget, tab_to, button=None, icon=None, span=1):
|
||||
ql = BuddyLabel(widget)
|
||||
tl.addWidget(ql, row, 1, 1, 1)
|
||||
tl.addWidget(widget, row, 2, 1, 1)
|
||||
if button is not None:
|
||||
tl.addWidget(button, row, 3, span, 1)
|
||||
if icon is not None:
|
||||
button.setIcon(QIcon(I(icon)))
|
||||
if tab_to is not None:
|
||||
if button is not None:
|
||||
sto(widget, button)
|
||||
sto(button, tab_to)
|
||||
else:
|
||||
sto(widget, tab_to)
|
||||
|
||||
tl.addWidget(self.swap_title_author_button, 0, 0, 2, 1)
|
||||
|
||||
create_row(0, self.title, self.title_sort,
|
||||
button=self.deduce_title_sort_button, span=2,
|
||||
icon='auto_author_sort.png')
|
||||
create_row(1, self.title_sort, self.authors)
|
||||
create_row(2, self.authors, self.author_sort,
|
||||
button=self.deduce_author_sort_button,
|
||||
span=2, icon='auto_author_sort.png')
|
||||
create_row(3, self.author_sort, self.series)
|
||||
create_row(4, self.series, self.series_index,
|
||||
button=self.remove_unused_series_button, icon='trash.png')
|
||||
create_row(5, self.series_index, self.tags)
|
||||
create_row(6, self.tags, self.rating, button=self.tags_editor_button)
|
||||
create_row(7, self.rating, self.pubdate)
|
||||
create_row(8, self.pubdate, self.publisher,
|
||||
button=self.pubdate.clear_button, icon='trash.png')
|
||||
create_row(9, self.publisher, self.timestamp)
|
||||
create_row(10, self.timestamp, self.identifiers,
|
||||
button=self.timestamp.clear_button, icon='trash.png')
|
||||
create_row(11, self.identifiers, self.comments,
|
||||
button=self.clear_identifiers_button, icon='trash.png')
|
||||
tl.addItem(QSpacerItem(1, 1, QSizePolicy.Fixed, QSizePolicy.Expanding),
|
||||
12, 1, 1 ,1)
|
||||
|
||||
# Custom metadata in col 1
|
||||
w = getattr(self, 'custom_metadata_widgets_parent', None)
|
||||
if w is not None:
|
||||
gb = QGroupBox(_('Custom metadata'), tab0)
|
||||
gbl = QVBoxLayout()
|
||||
gb.setLayout(gbl)
|
||||
sr = QScrollArea(gb)
|
||||
sr.setHorizontalScrollBarPolicy(Qt.ScrollBarAlwaysOff)
|
||||
sr.setWidgetResizable(True)
|
||||
sr.setBackgroundRole(QPalette.Base)
|
||||
sr.setFrameStyle(QFrame.NoFrame)
|
||||
sr.setWidget(w)
|
||||
gbl.addWidget(sr)
|
||||
l.addWidget(gb, 0, 1, 1, 1)
|
||||
sp = QSizePolicy()
|
||||
sp.setVerticalStretch(10)
|
||||
sp.setHorizontalPolicy(QSizePolicy.Fixed)
|
||||
sp.setVerticalPolicy(QSizePolicy.Expanding)
|
||||
gb.setSizePolicy(sp)
|
||||
self.set_custom_metadata_tab_order()
|
||||
|
||||
# comments span col 0 & 1
|
||||
w = QGroupBox(_('Comments'), tab0)
|
||||
sp = QSizePolicy()
|
||||
sp.setVerticalStretch(10)
|
||||
sp.setHorizontalPolicy(QSizePolicy.Expanding)
|
||||
sp.setVerticalPolicy(QSizePolicy.Expanding)
|
||||
w.setSizePolicy(sp)
|
||||
lb = QHBoxLayout()
|
||||
w.setLayout(lb)
|
||||
lb.addWidget(self.comments)
|
||||
l.addWidget(w, 1, 0, 1, 2)
|
||||
|
||||
# Cover & formats in col 3
|
||||
gb = QGroupBox(_('Cover'), tab0)
|
||||
lb = QGridLayout()
|
||||
gb.setLayout(lb)
|
||||
lb.addWidget(self.cover, 0, 0, 1, 3, alignment=Qt.AlignCenter)
|
||||
sto(self.clear_identifiers_button, self.cover.buttons[0])
|
||||
for i, b in enumerate(self.cover.buttons[:3]):
|
||||
lb.addWidget(b, 1, i, 1, 1)
|
||||
sto(b, self.cover.buttons[i+1])
|
||||
hl = QHBoxLayout()
|
||||
for b in self.cover.buttons[3:]:
|
||||
hl.addWidget(b)
|
||||
sto(self.cover.buttons[-2], self.cover.buttons[-1])
|
||||
lb.addLayout(hl, 2, 0, 1, 3)
|
||||
l.addWidget(gb, 0, 2, 1, 1)
|
||||
l.addWidget(self.formats_manager, 1, 2, 1, 1)
|
||||
sto(self.cover.buttons[-1], self.formats_manager)
|
||||
|
||||
self.formats_manager.formats.setMaximumWidth(10000)
|
||||
self.formats_manager.formats.setIconSize(QSize(32, 32))
|
||||
|
||||
# }}}
|
||||
|
||||
|
||||
editors = {'default': MetadataSingleDialog, 'alt1': MetadataSingleDialogAlt1,
|
||||
'alt2': MetadataSingleDialogAlt2}
|
||||
|
||||
def edit_metadata(db, row_list, current_row, parent=None, view_slot=None,
|
||||
set_current_callback=None):
|
||||
|
@ -61,7 +61,8 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form):
|
||||
|
||||
r('bools_are_tristate', db.prefs, restart_required=True)
|
||||
r = self.register
|
||||
choices = [(_('Default'), 'default'), (_('Compact Metadata'), 'alt1')]
|
||||
choices = [(_('Default'), 'default'), (_('Compact Metadata'), 'alt1'),
|
||||
(_('All on 1 tab'), 'alt2')]
|
||||
r('edit_metadata_single_layout', gprefs, choices=choices)
|
||||
|
||||
def initialize(self):
|
||||
|
105
src/calibre/gui2/preferences/device_user_defined.py
Normal file
105
src/calibre/gui2/preferences/device_user_defined.py
Normal file
@ -0,0 +1,105 @@
|
||||
#!/usr/bin/env python
|
||||
# vim:fileencoding=UTF-8:ts=4:sw=4:sta:et:sts=4:ai
|
||||
from __future__ import with_statement
|
||||
|
||||
__license__ = 'GPL v3'
|
||||
__copyright__ = '2009, Kovid Goyal <kovid@kovidgoyal.net>'
|
||||
__docformat__ = 'restructuredtext en'
|
||||
|
||||
|
||||
from PyQt4.Qt import QDialog, QVBoxLayout, QPlainTextEdit, QTimer, \
|
||||
QDialogButtonBox, QPushButton, QApplication, QIcon, QMessageBox
|
||||
|
||||
from calibre.constants import iswindows
|
||||
|
||||
def step_dialog(parent, title, msg, det_msg=''):
|
||||
d = QMessageBox(parent)
|
||||
d.setWindowTitle(title)
|
||||
d.setText(msg)
|
||||
d.setStandardButtons(QMessageBox.Ok | QMessageBox.Cancel)
|
||||
return d.exec_() & QMessageBox.Cancel
|
||||
|
||||
|
||||
class UserDefinedDevice(QDialog):
|
||||
|
||||
def __init__(self, parent=None):
|
||||
QDialog.__init__(self, parent)
|
||||
self._layout = QVBoxLayout(self)
|
||||
self.setLayout(self._layout)
|
||||
self.log = QPlainTextEdit(self)
|
||||
self._layout.addWidget(self.log)
|
||||
self.log.setPlainText(_('Getting device information')+'...')
|
||||
self.copy = QPushButton(_('Copy to &clipboard'))
|
||||
self.copy.setDefault(True)
|
||||
self.setWindowTitle(_('User-defined device information'))
|
||||
self.setWindowIcon(QIcon(I('debug.png')))
|
||||
self.copy.clicked.connect(self.copy_to_clipboard)
|
||||
self.ok = QPushButton('&OK')
|
||||
self.ok.setAutoDefault(False)
|
||||
self.ok.clicked.connect(self.accept)
|
||||
self.bbox = QDialogButtonBox(self)
|
||||
self.bbox.addButton(self.copy, QDialogButtonBox.ActionRole)
|
||||
self.bbox.addButton(self.ok, QDialogButtonBox.AcceptRole)
|
||||
self._layout.addWidget(self.bbox)
|
||||
self.resize(750, 500)
|
||||
self.bbox.setEnabled(False)
|
||||
QTimer.singleShot(1000, self.device_info)
|
||||
|
||||
def device_info(self):
|
||||
try:
|
||||
from calibre.devices import device_info
|
||||
r = step_dialog(self.parent(), _('Device Detection'),
|
||||
_('Ensure your device is disconnected, then press OK'))
|
||||
if r:
|
||||
self.close()
|
||||
return
|
||||
before = device_info()
|
||||
r = step_dialog(self.parent(), _('Device Detection'),
|
||||
_('Ensure your device is connected, then press OK'))
|
||||
if r:
|
||||
self.close()
|
||||
return
|
||||
after = device_info()
|
||||
new_drives = after['drive_set'] - before['drive_set']
|
||||
new_devices = after['device_set'] - before['device_set']
|
||||
res = ''
|
||||
if (not iswindows or len(new_drives)) and len(new_devices) == 1:
|
||||
for d in new_devices:
|
||||
res = _('USB Vendor ID (in hex)') + ': 0x' + \
|
||||
after['device_details'][d][0] + '\n'
|
||||
res += _('USB Product ID (in hex)') + ': 0x' + \
|
||||
after['device_details'][d][1] + '\n'
|
||||
res += _('USB Revision ID (in hex)') + ': 0x' + \
|
||||
after['device_details'][d][2] + '\n'
|
||||
if iswindows:
|
||||
# sort the drives by the order number
|
||||
for i,d in enumerate(sorted(new_drives,
|
||||
key=lambda x: after['drive_details'][x][0])):
|
||||
if i == 0:
|
||||
res += _('Windows main memory ID string') + ': ' + \
|
||||
after['drive_details'][d][1] + '\n'
|
||||
res += _('Windows main memory ID string') + ': ' + \
|
||||
after['drive_details'][d][2] + '\n'
|
||||
else:
|
||||
res += _('Windows card A vendor string') + ': ' + \
|
||||
after['drive_details'][d][1] + '\n'
|
||||
res += _('Windows card A ID string') + ': ' + \
|
||||
after['drive_details'][d][2] + '\n'
|
||||
trailer = _(
|
||||
'Copy these values to the clipboard, paste them into an '
|
||||
'editor, then enter them into the USER_DEVICE by '
|
||||
'customizing the device plugin in Preferences->Plugins. '
|
||||
'Remember to also enter the folders where you want the books to '
|
||||
'be put. You must restart calibre for your changes '
|
||||
'to take effect.\n')
|
||||
self.log.setPlainText(res + '\n\n' + trailer)
|
||||
finally:
|
||||
self.bbox.setEnabled(True)
|
||||
|
||||
def copy_to_clipboard(self):
|
||||
QApplication.clipboard().setText(self.log.toPlainText())
|
||||
|
||||
if __name__ == '__main__':
|
||||
app = QApplication([])
|
||||
d = UserDefinedDevice()
|
||||
d.exec_()
|
@ -190,7 +190,15 @@ class FieldsModel(QAbstractListModel): # {{{
|
||||
return ans | Qt.ItemIsUserCheckable
|
||||
|
||||
def restore_defaults(self):
|
||||
self.overrides = dict([(f, self.state(f, True)) for f in self.fields])
|
||||
self.overrides = dict([(f, self.state(f, Qt.Checked)) for f in self.fields])
|
||||
self.reset()
|
||||
|
||||
def select_all(self):
|
||||
self.overrides = dict([(f, Qt.Checked) for f in self.fields])
|
||||
self.reset()
|
||||
|
||||
def clear_all(self):
|
||||
self.overrides = dict([(f, Qt.Unchecked) for f in self.fields])
|
||||
self.reset()
|
||||
|
||||
def setData(self, index, val, role):
|
||||
@ -273,6 +281,9 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form):
|
||||
self.fields_view.setModel(self.fields_model)
|
||||
self.fields_model.dataChanged.connect(self.changed_signal)
|
||||
|
||||
self.select_all_button.clicked.connect(self.fields_model.select_all)
|
||||
self.clear_all_button.clicked.connect(self.fields_model.clear_all)
|
||||
|
||||
def configure_plugin(self):
|
||||
for index in self.sources_view.selectionModel().selectedRows():
|
||||
plugin = self.sources_model.data(index, Qt.UserRole)
|
||||
|
@ -77,8 +77,8 @@
|
||||
<property name="title">
|
||||
<string>Downloaded metadata fields</string>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
<item>
|
||||
<layout class="QGridLayout" name="gridLayout_2">
|
||||
<item row="0" column="0" colspan="2">
|
||||
<widget class="QListView" name="fields_view">
|
||||
<property name="toolTip">
|
||||
<string>If you uncheck any fields, metadata for those fields will not be downloaded</string>
|
||||
@ -88,6 +88,20 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QPushButton" name="select_all_button">
|
||||
<property name="text">
|
||||
<string>&Select all</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="1">
|
||||
<widget class="QPushButton" name="clear_all_button">
|
||||
<property name="text">
|
||||
<string>&Clear all</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -30,6 +30,7 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form):
|
||||
r('enforce_cpu_limit', config, restart_required=True)
|
||||
self.device_detection_button.clicked.connect(self.debug_device_detection)
|
||||
self.button_open_config_dir.clicked.connect(self.open_config_dir)
|
||||
self.user_defined_device_button.clicked.connect(self.user_defined_device)
|
||||
self.button_osx_symlinks.clicked.connect(self.create_symlinks)
|
||||
self.button_osx_symlinks.setVisible(isosx)
|
||||
|
||||
@ -38,6 +39,11 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form):
|
||||
d = DebugDevice(self)
|
||||
d.exec_()
|
||||
|
||||
def user_defined_device(self, *args):
|
||||
from calibre.gui2.preferences.device_user_defined import UserDefinedDevice
|
||||
d = UserDefinedDevice(self)
|
||||
d.exec_()
|
||||
|
||||
def open_config_dir(self, *args):
|
||||
from calibre.utils.config import config_dir
|
||||
open_local_file(config_dir)
|
||||
|
@ -58,7 +58,14 @@
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<item row="4" column="0" colspan="2">
|
||||
<widget class="QPushButton" name="user_defined_device_button">
|
||||
<property name="text">
|
||||
<string>Get information to setup the &user defined device</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="0">
|
||||
<spacer name="verticalSpacer_6">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
|
@ -47,7 +47,7 @@ class StorePlugin(object): # {{{
|
||||
|
||||
def __init__(self, gui, name):
|
||||
from calibre.gui2 import JSONConfig
|
||||
|
||||
|
||||
self.gui = gui
|
||||
self.name = name
|
||||
self.base_plugin = None
|
||||
@ -79,14 +79,14 @@ class StorePlugin(object): # {{{
|
||||
return items as a generator.
|
||||
|
||||
Don't be lazy with the search! Load as much data as possible in the
|
||||
:class:`calibre.gui2.store.search_result.SearchResult` object.
|
||||
:class:`calibre.gui2.store.search_result.SearchResult` object.
|
||||
However, if data (such as cover_url)
|
||||
isn't available because the store does not display cover images then it's okay to
|
||||
ignore it.
|
||||
|
||||
|
||||
At the very least a :class:`calibre.gui2.store.search_result.SearchResult`
|
||||
returned by this function must have the title, author and id.
|
||||
|
||||
|
||||
If you have to parse multiple pages to get all of the data then implement
|
||||
:meth:`get_deatils` for retrieving additional information.
|
||||
|
||||
@ -105,24 +105,24 @@ class StorePlugin(object): # {{{
|
||||
item_data is plugin specific and is used in :meth:`open` to open to a specifc place in the store.
|
||||
'''
|
||||
raise NotImplementedError()
|
||||
|
||||
|
||||
def get_details(self, search_result, timeout=60):
|
||||
'''
|
||||
Delayed search for information about specific search items.
|
||||
|
||||
|
||||
Typically, this will be used when certain information such as
|
||||
formats, drm status, cover url are not part of the main search
|
||||
results and the information is on another web page.
|
||||
|
||||
|
||||
Using this function allows for the main information (title, author)
|
||||
to be displayed in the search results while other information can
|
||||
take extra time to load. Splitting retrieving data that takes longer
|
||||
to load into a separate function will give the illusion of the search
|
||||
being faster.
|
||||
|
||||
|
||||
:param search_result: A search result that need details set.
|
||||
:param timeout: The maximum amount of time in seconds to spend downloading details.
|
||||
|
||||
|
||||
:return: True if the search_result was modified otherwise False
|
||||
'''
|
||||
return False
|
||||
@ -133,30 +133,30 @@ class StorePlugin(object): # {{{
|
||||
is called to update the caches. It is recommended to call this function
|
||||
from :meth:`open`. Especially if :meth:`open` does anything other than
|
||||
open a web page.
|
||||
|
||||
|
||||
This function can be called at any time. It is up to the plugin to determine
|
||||
if the cache really does need updating. Unless :param:`force` is True, then
|
||||
the plugin must update the cache. The only time force should be True is if
|
||||
this function is called by the plugin's configuration dialog.
|
||||
|
||||
|
||||
if :param:`suppress_progress` is False it is safe to assume that this function
|
||||
is being called from the main GUI thread so it is safe and recommended to use
|
||||
a QProgressDialog to display what is happening and allow the user to cancel
|
||||
the operation. if :param:`suppress_progress` is True then run the update
|
||||
silently. In this case there is no guarantee what thread is calling this
|
||||
function so no Qt related functionality that requires being run in the main
|
||||
GUI thread should be run. E.G. Open a QProgressDialog.
|
||||
|
||||
GUI thread should be run. E.G. Open a QProgressDialog.
|
||||
|
||||
:param parent: The parent object to be used by an GUI dialogs.
|
||||
|
||||
|
||||
:param timeout: The maximum amount of time that should be spent in
|
||||
any given network connection.
|
||||
|
||||
|
||||
:param force: Force updating the cache even if the plugin has determined
|
||||
it is not necessary.
|
||||
|
||||
|
||||
:param suppress_progress: Should a progress indicator be shown.
|
||||
|
||||
|
||||
:return: True if the cache was updated, False otherwise.
|
||||
'''
|
||||
return False
|
||||
|
@ -155,6 +155,7 @@ class SearchDialog(QDialog, Ui_Dialog):
|
||||
self.config['results_view_column_width'] = [self.results_view.columnWidth(i) for i in range(self.results_view.model().columnCount())]
|
||||
self.config['sort_col'] = self.results_view.model().sort_col
|
||||
self.config['sort_order'] = self.results_view.model().sort_order
|
||||
self.config['open_external'] = self.open_external.isChecked()
|
||||
|
||||
store_check = {}
|
||||
for n in self.store_plugins:
|
||||
@ -179,6 +180,8 @@ class SearchDialog(QDialog, Ui_Dialog):
|
||||
else:
|
||||
self.resize_columns()
|
||||
|
||||
self.open_external.setChecked(self.config.get('open_external', False))
|
||||
|
||||
store_check = self.config.get('store_checked', None)
|
||||
if store_check:
|
||||
for n in store_check:
|
||||
@ -212,7 +215,7 @@ class SearchDialog(QDialog, Ui_Dialog):
|
||||
|
||||
def open_store(self, index):
|
||||
result = self.results_view.model().get_result(index)
|
||||
self.store_plugins[result.store_name].open(self, result.detail_item)
|
||||
self.store_plugins[result.store_name].open(self, result.detail_item, self.open_external.isChecked())
|
||||
|
||||
def check_progress(self):
|
||||
if not self.search_pool.threads_running() and not self.results_view.model().cover_pool.threads_running() and not self.results_view.model().details_pool.threads_running():
|
||||
|
@ -70,7 +70,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>215</width>
|
||||
<height>116</height>
|
||||
<height>93</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
@ -101,6 +101,16 @@
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QCheckBox" name="open_external">
|
||||
<property name="toolTip">
|
||||
<string>Open a selected book in the system's web browser</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Open in &external browser</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QSplitter" name="splitter_2">
|
||||
|
@ -2048,12 +2048,12 @@ class TagBrowserMixin(object): # {{{
|
||||
self.library_view.select_rows(ids)
|
||||
# refreshing the tags view happens at the emit()/call() site
|
||||
|
||||
def do_author_sort_edit(self, parent, id):
|
||||
def do_author_sort_edit(self, parent, id, select_sort=True):
|
||||
'''
|
||||
Open the manage authors dialog
|
||||
'''
|
||||
db = self.library_view.model().db
|
||||
editor = EditAuthorsDialog(parent, db, id)
|
||||
editor = EditAuthorsDialog(parent, db, id, select_sort)
|
||||
d = editor.exec_()
|
||||
if d:
|
||||
for (id, old_author, new_author, new_sort) in editor.result:
|
||||
|
@ -8,6 +8,7 @@ from collections import namedtuple
|
||||
from copy import deepcopy
|
||||
from xml.sax.saxutils import escape
|
||||
from lxml import etree
|
||||
from types import StringType, UnicodeType
|
||||
|
||||
from calibre import prints, prepare_string_for_xml, strftime
|
||||
from calibre.constants import preferred_encoding, DEBUG
|
||||
@ -15,13 +16,16 @@ from calibre.customize import CatalogPlugin
|
||||
from calibre.customize.conversion import OptionRecommendation, DummyReporter
|
||||
from calibre.ebooks.BeautifulSoup import BeautifulSoup, BeautifulStoneSoup, Tag, NavigableString
|
||||
from calibre.ebooks.chardet import substitute_entites
|
||||
from calibre.library.save_to_disk import preprocess_template
|
||||
from calibre.ptempfile import PersistentTemporaryDirectory
|
||||
from calibre.utils.bibtex import BibTeX
|
||||
from calibre.utils.config import config_dir
|
||||
from calibre.utils.date import format_date, isoformat, is_date_undefined, now as nowf
|
||||
from calibre.utils.html2text import html2text
|
||||
from calibre.utils.icu import capitalize
|
||||
from calibre.utils.logging import default_log as log
|
||||
from calibre.utils.zipfile import ZipFile, ZipInfo
|
||||
from calibre.utils.magick.draw import thumbnail
|
||||
from calibre.utils.zipfile import ZipFile, ZipInfo
|
||||
|
||||
FIELDS = ['all', 'title', 'author_sort', 'authors', 'comments',
|
||||
'cover', 'formats','id', 'isbn', 'ondevice', 'pubdate', 'publisher',
|
||||
@ -303,12 +307,6 @@ class BIBTEX(CatalogPlugin): # {{{
|
||||
|
||||
def run(self, path_to_output, opts, db, notification=DummyReporter()):
|
||||
|
||||
from types import StringType, UnicodeType
|
||||
|
||||
from calibre.library.save_to_disk import preprocess_template
|
||||
#Bibtex functions
|
||||
from calibre.utils.bibtex import BibTeX
|
||||
|
||||
def create_bibtex_entry(entry, fields, mode, template_citation,
|
||||
bibtexdict, citation_bibtex=True, calibre_files=True):
|
||||
|
||||
@ -365,6 +363,11 @@ class BIBTEX(CatalogPlugin): # {{{
|
||||
#\n removal
|
||||
item = item.replace(u'\r\n',u' ')
|
||||
item = item.replace(u'\n',u' ')
|
||||
#html to text
|
||||
try:
|
||||
item = html2text(item)
|
||||
except:
|
||||
log.warn("Failed to convert comments to text")
|
||||
bibtex_entry.append(u'note = "%s"' % bibtexdict.utf8ToBibtex(item))
|
||||
|
||||
elif field == 'isbn' :
|
||||
@ -941,6 +944,7 @@ class EPUB_MOBI(CatalogPlugin):
|
||||
catalog.createDirectoryStructure()
|
||||
catalog.copyResources()
|
||||
catalog.buildSources()
|
||||
Options managed in gui2.catalog.catalog_epub_mobi.py
|
||||
'''
|
||||
|
||||
# A single number creates 'Last x days' only.
|
||||
|
@ -33,7 +33,7 @@ from calibre import isbytestring
|
||||
from calibre.utils.filenames import ascii_filename
|
||||
from calibre.utils.date import utcnow, now as nowf, utcfromtimestamp
|
||||
from calibre.utils.config import prefs, tweaks, from_json, to_json
|
||||
from calibre.utils.icu import sort_key
|
||||
from calibre.utils.icu import sort_key, strcmp
|
||||
from calibre.utils.search_query_parser import saved_searches, set_saved_searches
|
||||
from calibre.ebooks import BOOK_EXTENSIONS, check_ebook_format
|
||||
from calibre.utils.magick.draw import save_cover_data_to
|
||||
@ -1920,6 +1920,18 @@ class LibraryDatabase2(LibraryDatabase, SchemaUpgrade, CustomColumns):
|
||||
result.append(r)
|
||||
return ' & '.join(result).replace('|', ',')
|
||||
|
||||
def _update_author_in_cache(self, id_, ss, final_authors):
|
||||
self.conn.execute('UPDATE books SET author_sort=? WHERE id=?', (ss, id_))
|
||||
self.data.set(id_, self.FIELD_MAP['authors'],
|
||||
','.join([a.replace(',', '|') for a in final_authors]),
|
||||
row_is_id=True)
|
||||
self.data.set(id_, self.FIELD_MAP['author_sort'], ss, row_is_id=True)
|
||||
|
||||
aum = self.authors_with_sort_strings(id_, index_is_id=True)
|
||||
self.data.set(id_, self.FIELD_MAP['au_map'],
|
||||
':#:'.join([':::'.join((au.replace(',', '|'), aus)) for (au, aus) in aum]),
|
||||
row_is_id=True)
|
||||
|
||||
def _set_authors(self, id, authors, allow_case_change=False):
|
||||
if not authors:
|
||||
authors = [_('Unknown')]
|
||||
@ -1933,14 +1945,17 @@ class LibraryDatabase2(LibraryDatabase, SchemaUpgrade, CustomColumns):
|
||||
a = a.strip().replace(',', '|')
|
||||
if not isinstance(a, unicode):
|
||||
a = a.decode(preferred_encoding, 'replace')
|
||||
aus = self.conn.get('SELECT id, name FROM authors WHERE name=?', (a,))
|
||||
aus = self.conn.get('SELECT id, name, sort FROM authors WHERE name=?', (a,))
|
||||
if aus:
|
||||
aid, name = aus[0]
|
||||
aid, name, sort = aus[0]
|
||||
# Handle change of case
|
||||
if name != a:
|
||||
if allow_case_change:
|
||||
self.conn.execute('''UPDATE authors
|
||||
SET name=? WHERE id=?''', (a, aid))
|
||||
ns = author_to_author_sort(a.replace('|', ','))
|
||||
if strcmp(sort, ns) == 0:
|
||||
sort = ns
|
||||
self.conn.execute('''UPDATE authors SET name=?, sort=?
|
||||
WHERE id=?''', (a, sort, aid))
|
||||
case_change = True
|
||||
else:
|
||||
a = name
|
||||
@ -1957,17 +1972,14 @@ class LibraryDatabase2(LibraryDatabase, SchemaUpgrade, CustomColumns):
|
||||
bks = self.conn.get('''SELECT book FROM books_authors_link
|
||||
WHERE author=?''', (aid,))
|
||||
books_to_refresh |= set([bk[0] for bk in bks])
|
||||
for bk in books_to_refresh:
|
||||
ss = self.author_sort_from_book(id, index_is_id=True)
|
||||
aus = self.author_sort(bk, index_is_id=True)
|
||||
if strcmp(aus, ss) == 0:
|
||||
self._update_author_in_cache(bk, ss, final_authors)
|
||||
# This can repeat what was done above in rare cases. Let it.
|
||||
ss = self.author_sort_from_book(id, index_is_id=True)
|
||||
self.conn.execute('UPDATE books SET author_sort=? WHERE id=?',
|
||||
(ss, id))
|
||||
self.data.set(id, self.FIELD_MAP['authors'],
|
||||
','.join([a.replace(',', '|') for a in final_authors]),
|
||||
row_is_id=True)
|
||||
self.data.set(id, self.FIELD_MAP['author_sort'], ss, row_is_id=True)
|
||||
aum = self.authors_with_sort_strings(id, index_is_id=True)
|
||||
self.data.set(id, self.FIELD_MAP['au_map'],
|
||||
':#:'.join([':::'.join((au.replace(',', '|'), aus)) for (au, aus) in aum]),
|
||||
row_is_id=True)
|
||||
self._update_author_in_cache(id, ss, final_authors)
|
||||
return books_to_refresh
|
||||
|
||||
def set_authors(self, id, authors, notify=True, commit=True,
|
||||
@ -2273,6 +2285,12 @@ class LibraryDatabase2(LibraryDatabase, SchemaUpgrade, CustomColumns):
|
||||
return []
|
||||
return result
|
||||
|
||||
def get_author_id(self, author):
|
||||
author = author.replace(',', '|')
|
||||
result = self.conn.get('SELECT id FROM authors WHERE name=?',
|
||||
(author,), all=False)
|
||||
return result
|
||||
|
||||
def set_sort_field_for_author(self, old_id, new_sort, commit=True, notify=False):
|
||||
self.conn.execute('UPDATE authors SET sort=? WHERE id=?', \
|
||||
(new_sort.strip(), old_id))
|
||||
|
@ -100,7 +100,9 @@ Device Integration
|
||||
|
||||
What devices does |app| support?
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
At the moment |app| has full support for the SONY PRS line, Barnes & Noble Nook line, Cybook Gen 3/Opus, Amazon Kindle line, Entourage Edge, Longshine ShineBook, Ectaco Jetbook, BeBook/BeBook Mini, Irex Illiad/DR1000, Foxit eSlick, PocketBook line, Italica, eClicto, Iriver Story, Airis dBook, Hanvon N515, Binatone Readme, Teclast K3 and clones, SpringDesign Alex, Kobo Reader, various Android phones and the iPhone/iPad. In addition, using the :guilabel:`Connect to folder` function you can use it with any ebook reader that exports itself as a USB disk.
|
||||
At the moment |app| has full support for the SONY PRS line, Barnes & Noble Nook line, Cybook Gen 3/Opus, Amazon Kindle line, Entourage Edge, Longshine ShineBook, Ectaco Jetbook, BeBook/BeBook Mini, Irex Illiad/DR1000, Foxit eSlick, PocketBook line, Italica, eClicto, Iriver Story, Airis dBook, Hanvon N515, Binatone Readme, Teclast K3 and clones, SpringDesign Alex, Kobo Reader, various Android phones and the iPhone/iPad. In addition, using the :guilabel:`Connect to folder` function you can use it with any ebook reader that exports itself as a USB disk.
|
||||
|
||||
There is also a special ``User Defined`` device plugin that can be used to connect to arbitrary devices that present their memory as disk drives. See the device plugin ``Preferences -> Plugins -> Device Plugins -> User Defined`` and ``Preferences -> Miscelleaneous -> Get information to setup the user defined device`` for more information.
|
||||
|
||||
How can I help get my device supported in |app|?
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
@ -133,6 +135,11 @@ Follow these steps to find the problem:
|
||||
* In calibre, go to Preferences->Plugins->Device Interface plugin and make sure the plugin for your device is enabled, the plugin icon next to it should be green when it is enabled.
|
||||
* If all the above steps fail, go to Preferences->Miscellaneous and click debug device detection with your device attached and post the output as a ticket on `the calibre bug tracker <http://bugs.calibre-ebook.com>`_.
|
||||
|
||||
My device is non-standard or unusual. What can I do to connect to it?
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
In addition to the :guilabel:`Connect to Folder` function found under the Connect/Share button, |app| provides a ``User Defined`` device plugin that can be used to connect to any USB device that presents that shows up as a disk drive in your operating system. See the device plugin ``Preferences -> Plugins -> Device Plugins -> User Defined`` and ``Preferences -> Miscellaneous -> Get information to setup the user defined device`` for more information.
|
||||
|
||||
How does |app| manage collections on my SONY reader?
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
@ -468,7 +475,7 @@ If it still wont launch, start a command prompt (press the windows key and R; th
|
||||
|
||||
Post any output you see in a help message on the `Forum <http://www.mobileread.com/forums/forumdisplay.php?f=166>`_.
|
||||
|
||||
|app| freeze when I click on anything?
|
||||
|app| freezes when I click on anything?
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
There are three possible things I know of, that can cause this:
|
||||
@ -557,7 +564,7 @@ You have two choices:
|
||||
|
||||
How is |app| licensed?
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|app| is licensed under the GNU General Public License v3 (an open source license). This means that you are free to redistribute |app| as long as you make the source code available. So if you want to put |app| on a CD with your product, you must also put the |app| source code on the CD. The source code is available for download `from googlecode <http://code.google.com/p/calibre-ebook/downloads/list>`_. You are free to use the results of conversions from |app| however you want. You cannot use code, libraries from |app| in your software without maing your software open source. For details, see `The GNU GPL v3 <http://www.gnu.org/licenses/gpl.html>`_.
|
||||
|app| is licensed under the GNU General Public License v3 (an open source license). This means that you are free to redistribute |app| as long as you make the source code available. So if you want to put |app| on a CD with your product, you must also put the |app| source code on the CD. The source code is available for download `from googlecode <http://code.google.com/p/calibre-ebook/downloads/list>`_. You are free to use the results of conversions from |app| however you want. You cannot use code, libraries from |app| in your software without making your software open source. For details, see `The GNU GPL v3 <http://www.gnu.org/licenses/gpl.html>`_.
|
||||
|
||||
How do I run calibre from my USB stick?
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
@ -19,7 +19,7 @@ Editing the metadata of one book at a time
|
||||
Click the book you want to edit and then click the :guilabel:`Edit metadata` button or press the ``E`` key. A dialog opens that allows you to edit all aspects of the metadata. It has various features to make editing faster and more efficient. A list of the commonly used tips:
|
||||
|
||||
* You can click the button in between title and authors to swap them automatically.
|
||||
* You can click the button next to author sort to automatically to have |app| automatically fill it from the author name.
|
||||
* You can click the button next to author sort to have |app| automatically fill it in using the sort values stored with each author. Use the :guilabel:`Manage authors` dialog to see and change the authors' sort values. This dialog can be opened by clicking and holding the button next to author sort.
|
||||
* You can click the button next to tags to use the Tag Editor to manage the tags associated with the book.
|
||||
* The ISBN box will have a red background if you enter an invalid ISBN. It will be green for valid ISBNs
|
||||
* The author sort box will be red if the author sort value differs from what |app| thinks it should be.
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2009-11-06 19:11+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Afrikaans <af@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: 2011-04-30 04:34+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:34+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -866,59 +866,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -934,7 +934,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -942,7 +942,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-01-03 01:54+0000\n"
|
||||
"Last-Translator: Amr Hesham <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: 2011-04-30 04:34+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:35+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/lrf/output.py:121
|
||||
@ -937,59 +937,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "جهاز أبل"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "التواصل عن طريق iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "تم الكشف عن جهاز ابل, يتم تشغيل iTunes, الرجاء الانتظار..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d من %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "تم"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1005,7 +1005,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "الأخبار"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -1013,7 +1013,7 @@ msgstr "الأخبار"
|
||||
msgid "Catalog"
|
||||
msgstr "الفهرس"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "تواصل معا iTunes"
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-01-31 21:37+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Asturian <ast@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: 2011-04-30 04:34+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:35+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -866,59 +866,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -934,7 +934,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -942,7 +942,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -6,14 +6,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre 0.4.51\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"PO-Revision-Date: 2011-03-30 01:18+0000\n"
|
||||
"Last-Translator: Yassen Nikolov <Unknown>\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-05-02 10:13+0000\n"
|
||||
"Last-Translator: airmaxbg <airmax_reg@abv.bg>\n"
|
||||
"Language-Team: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:35+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-03 04:37+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
|
||||
@ -193,13 +193,13 @@ msgstr "Основен"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:148
|
||||
msgid "Customize"
|
||||
msgstr ""
|
||||
msgstr "Персонализиране"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:156
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:46
|
||||
msgid "Cannot configure"
|
||||
msgstr ""
|
||||
msgstr "Не може да се конфигурира"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:318
|
||||
msgid "File type"
|
||||
@ -234,7 +234,7 @@ msgstr "Предпочитания"
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:609
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:33
|
||||
msgid "Store"
|
||||
msgstr ""
|
||||
msgstr "Съхраняване"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:18
|
||||
msgid ""
|
||||
@ -271,6 +271,9 @@ msgid ""
|
||||
"Textile references to images. The referenced images as well as the TXT file "
|
||||
"are added to the archive."
|
||||
msgstr ""
|
||||
"Създаване на TXTZ архив когато TXT файл е внесъл съдържащи маркови или "
|
||||
"текстилни справки към снимки. Съответните изображения както и TXT файлове се "
|
||||
"добавят към архива."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:168
|
||||
msgid "Extract cover from comic files"
|
||||
@ -888,60 +891,60 @@ msgstr "Кеширай обложки от iTunes/iBooks"
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr "Разреши кеширане и показване на обложки от iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple устройство"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Комуникирай с iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
"Apple устройство разпознато, стартиране на iTunes, моля изчакайте ..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d от %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "завършено"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -957,7 +960,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Новини"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -965,7 +968,7 @@ msgstr "Новини"
|
||||
msgid "Catalog"
|
||||
msgstr "Каталог"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-12-11 02:29+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Bengali <bn@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: 2011-04-30 04:35+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:36+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -861,59 +861,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -929,7 +929,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -937,7 +937,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-01-18 21:03+0000\n"
|
||||
"Last-Translator: Senad Sopovic <Unknown>\n"
|
||||
"Language-Team: Bosnian <bs@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: 2011-04-30 04:35+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:36+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -861,59 +861,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple uređah"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "završeno"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -929,7 +929,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Vijesti"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -937,7 +937,7 @@ msgstr "Vijesti"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -10,14 +10,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: ca\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"PO-Revision-Date: 2011-04-27 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-04-30 18:09+0000\n"
|
||||
"Last-Translator: FerranRius <frius64@hotmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:36+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:37+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -546,7 +546,7 @@ msgstr "Llibres per al Kindle d'Amazon"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1114
|
||||
msgid "Kindle books from Amazon.uk"
|
||||
msgstr ""
|
||||
msgstr "Llibres per al Kindle d'Amazon.uk"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1119
|
||||
msgid "Ebooks for readers."
|
||||
@ -602,15 +602,15 @@ msgstr "El vostre llibre. A la vostra manera."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1184
|
||||
msgid "Feel every word"
|
||||
msgstr ""
|
||||
msgstr "Sentiu cada paraula"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1189
|
||||
msgid "Foyles of London, online"
|
||||
msgstr ""
|
||||
msgstr "Foyles de Londres en línia"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1194
|
||||
msgid "Kindle eBooks"
|
||||
msgstr ""
|
||||
msgstr "Llibres per al Kindle"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:102
|
||||
msgid "Conversion Input"
|
||||
@ -936,20 +936,20 @@ msgstr ""
|
||||
"Habilita que les portades d'iTunes/iBooks es visualitzin i es desin a la "
|
||||
"memòria cau"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Dispositiu Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Comunica't amb iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
"S'ha detectat un dispositiu Apple, s'està engegant l'iTunes, espereu ..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -958,28 +958,28 @@ msgstr ""
|
||||
"los des de la biblioteca de l'iTunes a l'escriptori i després afegiu-los a "
|
||||
"la finestra de la biblioteca del calibre."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "S'està actualitzant el llistat de metadades del dispositiu..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d de %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "s'ha acabat"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -989,7 +989,7 @@ msgstr ""
|
||||
"Suprimiu-los amb l'aplicació de l'iBooks.\n"
|
||||
"Feu clic a «Mostra detalls» per a la llista."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -997,7 +997,7 @@ msgstr ""
|
||||
"No s'ha pogut convertir algunes portades.\n"
|
||||
"Feu clic a «Mostra detalls» per a la llista."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1013,7 +1013,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Notícies"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -1021,7 +1021,7 @@ msgstr "Notícies"
|
||||
msgid "Catalog"
|
||||
msgstr "Catàleg"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Comunica't amb l'iTunes"
|
||||
|
||||
@ -6172,11 +6172,11 @@ msgstr "Feu clic per obrir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:123
|
||||
msgid "Ids"
|
||||
msgstr ""
|
||||
msgstr "Identificadors"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:133
|
||||
msgid "Book %s of <span class=\"series_name\">%s</span>"
|
||||
msgstr ""
|
||||
msgstr "Llibre %s de <span class=\"series_name\">%s</span>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:144
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:978
|
||||
@ -11542,7 +11542,7 @@ msgstr "Grandària (MB)"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:241
|
||||
msgid "Modified"
|
||||
msgstr ""
|
||||
msgstr "Modificat"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:717
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1274
|
||||
@ -11725,6 +11725,9 @@ msgid ""
|
||||
"Cause a running calibre instance, if any, to be shutdown. Note that if there "
|
||||
"are running jobs, they will be silently aborted, so use with care."
|
||||
msgstr ""
|
||||
"Fa que es tanqui qualsevol instància del calibre, si n'hi ha alguna. "
|
||||
"Vigileu, ja que si hi ha tasques en execució s'interrompran sense cap "
|
||||
"confirmació."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:69
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:678
|
||||
@ -12965,19 +12968,19 @@ msgstr "Canvia el tipus de &lletra (caldrà reiniciar)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:210
|
||||
msgid "Main Interface"
|
||||
msgstr ""
|
||||
msgstr "Interfície principal"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:211
|
||||
msgid "Select displayed metadata"
|
||||
msgstr ""
|
||||
msgstr "Selecciona les metadades que es visualitzen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:212
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
msgstr "Desplaça cap amunt"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:213
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
msgstr "Desplaça cap avall"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:214
|
||||
msgid "Use &Roman numerals for series"
|
||||
@ -12988,6 +12991,8 @@ msgid ""
|
||||
"Note that <b>comments</b> will always be displayed at the end, regardless of "
|
||||
"the position you assign here."
|
||||
msgstr ""
|
||||
"Tingueu en compte que els <b>comentaris</b> es mostren sempre al final, "
|
||||
"independentment de la posició que els assigneu aquí."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:217
|
||||
msgid "Tags browser category &partitioning method:"
|
||||
@ -14282,11 +14287,11 @@ msgstr "Aplica els canvis que s'ha fet a l'ajustament"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:339
|
||||
msgid "Delete current search"
|
||||
msgstr ""
|
||||
msgstr "Suprimeix la cerca actual"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:340
|
||||
msgid "No search is selected"
|
||||
msgstr ""
|
||||
msgstr "No s'ha seleccionat cap cerca"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:342
|
||||
msgid "The selected search will be <b>permanently deleted</b>. Are you sure?"
|
||||
@ -14315,18 +14320,20 @@ msgid ""
|
||||
"Save current search under the name shown in the box. Press and hold for a "
|
||||
"pop-up options menu."
|
||||
msgstr ""
|
||||
"Desa la cerca actual amb el nom que hi ha al quadre. Premeu i manteniu per a "
|
||||
"un menú d'opcions emergent."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:458
|
||||
msgid "Create saved search"
|
||||
msgstr ""
|
||||
msgstr "Crea una cerca per desar"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:462
|
||||
msgid "Delete saved search"
|
||||
msgstr ""
|
||||
msgstr "Suprimeix la cerca desada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:466
|
||||
msgid "Manage saved searches"
|
||||
msgstr ""
|
||||
msgstr "Gestiona les cerques desades"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:476
|
||||
msgid "*Current search"
|
||||
@ -14438,31 +14445,31 @@ msgstr "No disponible"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_progress_dialog_ui.py:51
|
||||
msgid "Updating book cache"
|
||||
msgstr ""
|
||||
msgstr "S'està actualitzant la memòria cau de llibres"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_update_thread.py:42
|
||||
msgid "Checking last download date."
|
||||
msgstr ""
|
||||
msgstr "S'està comprovant la darrera data de descàrrega."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_update_thread.py:48
|
||||
msgid "Downloading book list from MobileRead."
|
||||
msgstr ""
|
||||
msgstr "S'està descarregant la llista de llibres des de MobileRead."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_update_thread.py:61
|
||||
msgid "Processing books."
|
||||
msgstr ""
|
||||
msgstr "S'està processant els llibres."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_update_thread.py:70
|
||||
msgid "%s of %s books processed."
|
||||
msgstr ""
|
||||
msgstr "S'ha processat %s de %s llibres."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/mobileread_plugin.py:62
|
||||
msgid "Updating MobileRead book cache..."
|
||||
msgstr ""
|
||||
msgstr "S'està actualitzant la memòria cau de llibres MobileRead..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/store_dialog_ui.py:69
|
||||
msgid "&Query:"
|
||||
msgstr ""
|
||||
msgstr "&Consulta:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/store_dialog_ui.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread_store_dialog_ui.py:63
|
||||
@ -14483,11 +14490,11 @@ msgstr "Cerca:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:192
|
||||
msgid "&Price:"
|
||||
msgstr ""
|
||||
msgstr "&Preu:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:196
|
||||
msgid "Titl&e/Author/Price ..."
|
||||
msgstr ""
|
||||
msgstr "Tít&ol/autor/preu..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:33
|
||||
msgid "DRM"
|
||||
@ -15973,7 +15980,7 @@ msgstr "buit"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/library/caches.py:564
|
||||
msgid "Invalid boolean query \"{0}\""
|
||||
msgstr ""
|
||||
msgstr "Consulta booleana no vàlida «{0}»"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:51
|
||||
msgid ""
|
||||
@ -17192,6 +17199,8 @@ msgstr "La data de publicació"
|
||||
#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:46
|
||||
msgid "The date when the metadata for this book record was last modified"
|
||||
msgstr ""
|
||||
"La data que les metadades d'aquest registre de llibre es van modificar per "
|
||||
"darrer cop"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:48
|
||||
msgid "The calibre internal id"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-04-24 21:34+0000\n"
|
||||
"Last-Translator: Marek Sušický <Unknown>\n"
|
||||
"Language-Team: Czech <cs@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:36+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:37+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -903,19 +903,19 @@ msgstr "Ukládat obálky z iTunes/iBooks do mezipaměti"
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Zařízení Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Komunikovat s iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Nalezeno zařízení Apple, spouštění iTunes, čekejte..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -923,28 +923,28 @@ msgstr ""
|
||||
"Nelze kopírovat knihy přímo z iDevice. Přetáhněte je z knihovny iTunes na "
|
||||
"plochu a pak je přidejte do okna knihovny calibre."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Záznamy metadat v zařízení se aktualizují..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d z %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "dokončeno"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -954,7 +954,7 @@ msgstr ""
|
||||
"Smazat pomocí aplikace iBooks.\n"
|
||||
"Pro zobrazení seznamu klepněte na 'Zobrazit podrobnosti'."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -962,7 +962,7 @@ msgstr ""
|
||||
"Některé obálky nelze převést.\n"
|
||||
"Pro zobrazení seznamu klepněte na 'Zobrazit podrobnosti'."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -978,7 +978,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Zprávy"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -986,7 +986,7 @@ msgstr "Zprávy"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Komunikovat s iTunes."
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-12-19 12:26+0000\n"
|
||||
"Last-Translator: Glenn <Unknown>\n"
|
||||
"Language-Team: Danish <da@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:37+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:37+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -906,19 +906,19 @@ msgstr "Cache omslag fra iTunes/iBooks"
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple enhed"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Kommunikér med iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Apple-enhed fundet, starter iTunes, vent venligst..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -926,28 +926,28 @@ msgstr ""
|
||||
"Kan ikke kopiere bøger direkte fra iDevice. Træk fra iTunes-bibliotek til "
|
||||
"skrivebord, tilføj herefter til calibres biblioteksvindue."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Opdaterer enhed metadata listen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d af %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "afsluttet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -957,7 +957,7 @@ msgstr ""
|
||||
"Sletter ved at anvende iBooks app.\n"
|
||||
"Klik 'Show Details' for en liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -965,7 +965,7 @@ msgstr ""
|
||||
"Nogle omslagsdele kunne ikke konverteres.\n"
|
||||
"Klik 'Show Details' for en liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -981,7 +981,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Nyheder"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -989,7 +989,7 @@ msgstr "Nyheder"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Kommunikér med iTunes."
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: de\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"PO-Revision-Date: 2011-04-29 15:02+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-05-01 08:37+0000\n"
|
||||
"Last-Translator: Armin Geller <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: 2011-04-30 04:39+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-02 04:34+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
|
||||
@ -542,7 +542,7 @@ msgstr "Kindle Bücher von Amazone"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1114
|
||||
msgid "Kindle books from Amazon.uk"
|
||||
msgstr ""
|
||||
msgstr "Kindle Bücher fon Amazon.uk"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1119
|
||||
msgid "Ebooks for readers."
|
||||
@ -932,19 +932,19 @@ msgstr ""
|
||||
"Ermöglicht das Zwischenspeichern und anzeigen von Umschlägen aus "
|
||||
"iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple- Gerät"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Kommunikation mit iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Gerät von Apple entdeckt, starte iTunes, einen Moment bitte..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -952,28 +952,28 @@ msgstr ""
|
||||
"Kann Bücher nicht direkt vom iDevice kopieren. Ziehen Sie sie aus der iTunes "
|
||||
"Bibliothek auf den Desktop, fügen Sie sie dann Calibres Bibliothek hinzu."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Aktualisiere die Liste der Geräte-Metadaten..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d von %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "abgeschlossen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -983,7 +983,7 @@ msgstr ""
|
||||
"Zum Löschen die iBooks App verwenden.\n"
|
||||
"Klicken Sie 'Zeige Details' für eine Liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -991,7 +991,7 @@ msgstr ""
|
||||
"Einige Umschlagbilder konnten nicht konvertiert werden.\n"
|
||||
"Klicken Sie 'Zeige Details' für eine Liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1007,7 +1007,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Nachrichten"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -1015,7 +1015,7 @@ msgstr "Nachrichten"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Kommunikation mit iTunes."
|
||||
|
||||
@ -4771,7 +4771,7 @@ msgstr "Anmerkungen abrufen (experimentell)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:56
|
||||
msgid "Not supported"
|
||||
msgstr ""
|
||||
msgstr "Nicht unterstützt"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/annotate.py:57
|
||||
msgid "Fetching annotations is not supported for this device"
|
||||
@ -5539,7 +5539,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:545
|
||||
msgid "Applying changed metadata"
|
||||
msgstr ""
|
||||
msgstr "Geänerte Metadaten übernehmen"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/edit_metadata.py:606
|
||||
msgid "Some failures"
|
||||
@ -8571,11 +8571,11 @@ msgstr "Format"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_device_ui.py:50
|
||||
msgid "Existing"
|
||||
msgstr ""
|
||||
msgstr "Bestehende"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_format_device_ui.py:51
|
||||
msgid "Convertible"
|
||||
msgstr ""
|
||||
msgstr "konvertierbar"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/choose_library.py:43
|
||||
msgid "Choose location for calibre library"
|
||||
@ -9185,26 +9185,29 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:990
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:587
|
||||
msgid "Delete saved search/replace"
|
||||
msgstr ""
|
||||
msgstr "Löschen der gespeicherten Suchen/Ersetzen-Aktion"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:991
|
||||
msgid "The selected saved search/replace will be deleted. Are you sure?"
|
||||
msgstr ""
|
||||
"Die ausgewählte Suchen/Ersetzen-Aktion wird gelöscht. Sind Sie sicher?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1008
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1016
|
||||
msgid "Save search/replace"
|
||||
msgstr ""
|
||||
msgstr "Speichern der Suchen/Ersetzen-Aktion"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1009
|
||||
msgid "Search/replace name:"
|
||||
msgstr ""
|
||||
msgstr "Suchen/Ersetzen-Aktion Name:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk.py:1017
|
||||
msgid ""
|
||||
"That saved search/replace already exists and will be overwritten. Are you "
|
||||
"sure?"
|
||||
msgstr ""
|
||||
"die gesicherte Suchen/Ersetzen-Aktion existiert schon und wird ersetzt. Sind "
|
||||
"Sie sicher?"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/metadata_bulk_ui.py:524
|
||||
msgid "Edit Meta information"
|
||||
@ -11470,7 +11473,7 @@ msgstr "Größe (MB)"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:241
|
||||
msgid "Modified"
|
||||
msgstr ""
|
||||
msgstr "Geändert"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:717
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1274
|
||||
@ -11809,15 +11812,15 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:476
|
||||
msgid "Set metadata for the book from the selected format"
|
||||
msgstr ""
|
||||
msgstr "Einstellen der Metadaten vom ausgewählten Buchformat"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:483
|
||||
msgid "Add a format to this book"
|
||||
msgstr ""
|
||||
msgstr "Hinzufügen eines Formates zu dem Buch"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:490
|
||||
msgid "Remove the selected format from this book"
|
||||
msgstr ""
|
||||
msgstr "Löschen des ausgewählten Buchformates"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/basic_widgets.py:755
|
||||
msgid "Invalid cover"
|
||||
@ -11946,11 +11949,11 @@ msgstr "Herunterladen von Metadaten gestartet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download2.py:111
|
||||
msgid "(Failed metadata)"
|
||||
msgstr ""
|
||||
msgstr "(Fehlerhafte Metadaten)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download2.py:113
|
||||
msgid "(Failed cover)"
|
||||
msgstr ""
|
||||
msgstr "(Fehlerhafter Umschlag)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/metadata/bulk_download2.py:190
|
||||
msgid "Downloaded %d of %d"
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-03-04 12:33+0000\n"
|
||||
"Last-Translator: cosmix <Unknown>\n"
|
||||
"Language-Team: Greek <el@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:40+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:40+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -907,59 +907,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Συσκευή Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Επικοινωνία με iTunes/iBook"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Συσκευή της Apple εντοπίστηκε, έναρξη iTunes, παρακαλώ περιμένετε..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Ενημέρωση καταλόγου μεταδεδομένων της συσκευής"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d από %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "ολοκληρώθηκε"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -975,7 +975,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Νέα"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -983,7 +983,7 @@ msgstr "Νέα"
|
||||
msgid "Catalog"
|
||||
msgstr "Κατάλογος"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Επικοινωνία με το iTunes"
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-05-21 07:30+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: English (Australia) <en_AU@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: 2011-04-30 04:51+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:52+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -861,59 +861,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -929,7 +929,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -937,7 +937,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-02-27 02:43+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: English (Canada) <en_CA@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: 2011-04-30 04:52+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:53+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -870,59 +870,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -938,7 +938,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "News"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -946,7 +946,7 @@ msgstr "News"
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-02-15 08:46+0000\n"
|
||||
"Last-Translator: Vladimir Oka <Unknown>\n"
|
||||
"Language-Team: English (United Kingdom) <en_GB@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: 2011-04-30 04:51+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:51+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -903,19 +903,19 @@ msgstr "Cache covers from iTunes/iBooks"
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple device"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Communicate with iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Apple device detected, launching iTunes, please wait ..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -923,28 +923,28 @@ msgstr ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Updating device metadata listing..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d of %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "finished"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -954,7 +954,7 @@ msgstr ""
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -962,7 +962,7 @@ msgstr ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -978,7 +978,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "News"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -986,7 +986,7 @@ msgstr "News"
|
||||
msgid "Catalog"
|
||||
msgstr "Catalogue"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Communicate with iTunes."
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-01-09 00:03+0000\n"
|
||||
"Last-Translator: Kalle Kniivilä <kalle@kniivila.net>\n"
|
||||
"Language-Team: Esperanto <eo@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: 2011-04-30 04:37+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:38+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -897,59 +897,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -965,7 +965,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -973,7 +973,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -10,14 +10,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: es\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"PO-Revision-Date: 2011-04-23 10:33+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-05-02 12:20+0000\n"
|
||||
"Last-Translator: Jellby <Unknown>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:47+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-03 04:38+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:528
|
||||
@ -566,7 +566,7 @@ msgstr "Libros de Amazon para Kindle"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1114
|
||||
msgid "Kindle books from Amazon.uk"
|
||||
msgstr ""
|
||||
msgstr "Libros Kindle de Amazon.uk"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1119
|
||||
msgid "Ebooks for readers."
|
||||
@ -622,15 +622,15 @@ msgstr "Su libro. Su modo."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1184
|
||||
msgid "Feel every word"
|
||||
msgstr ""
|
||||
msgstr "Detectar todas las palabras"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1189
|
||||
msgid "Foyles of London, online"
|
||||
msgstr ""
|
||||
msgstr "Foyles de Londres, en línea"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1194
|
||||
msgid "Kindle eBooks"
|
||||
msgstr ""
|
||||
msgstr "Libros Kindle"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:102
|
||||
msgid "Conversion Input"
|
||||
@ -941,20 +941,20 @@ msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
"Actívelo para mostrar y guardar en caché las portadas de iTunes o iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Dispositivo Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Comunicarse con iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
"Dispositivo Apple detectado. Iniciando iTunes. Un momento, por favor..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -963,28 +963,28 @@ msgstr ""
|
||||
"la biblioteca de iTunes al escritorio, y entonces añadelos en la ventana "
|
||||
"Biblioteca."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Actualizando listado de meta datos..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d de %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "terminado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -994,7 +994,7 @@ msgstr ""
|
||||
"Bórrelos utilizando la aplicación iBooks.\n"
|
||||
"Pulse \"Mostrar Detalles\" para ver una lista."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1002,7 +1002,7 @@ msgstr ""
|
||||
"Algunas portadas no se pudieron convertir.\n"
|
||||
"Pulse en \"Mostrar detalles\" para ver una lista."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1018,7 +1018,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Noticias"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -1026,7 +1026,7 @@ msgstr "Noticias"
|
||||
msgid "Catalog"
|
||||
msgstr "Catálogo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Comunicarse con iTunes."
|
||||
|
||||
@ -6203,11 +6203,11 @@ msgstr "Clic para abrir"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:123
|
||||
msgid "Ids"
|
||||
msgstr ""
|
||||
msgstr "Id."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:133
|
||||
msgid "Book %s of <span class=\"series_name\">%s</span>"
|
||||
msgstr ""
|
||||
msgstr "Libro %s de <span class=\"series_name\">%s</span>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/book_details.py:144
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:978
|
||||
@ -11548,7 +11548,7 @@ msgstr "Tamaño (MB)"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:73
|
||||
#: /home/kovid/work/calibre/src/calibre/library/field_metadata.py:241
|
||||
msgid "Modified"
|
||||
msgstr ""
|
||||
msgstr "Modificado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:717
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/models.py:1274
|
||||
@ -11731,6 +11731,8 @@ msgid ""
|
||||
"Cause a running calibre instance, if any, to be shutdown. Note that if there "
|
||||
"are running jobs, they will be silently aborted, so use with care."
|
||||
msgstr ""
|
||||
"Cierra cualquier sesión de calibre que pueda estar abierta. Tenga cuidado, "
|
||||
"porque si hay tareas en ejecución serán abortadas,"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/main.py:69
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/wizard/__init__.py:678
|
||||
@ -12968,19 +12970,19 @@ msgstr "Cambiar &tipo de letra (requiere reinicio)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:210
|
||||
msgid "Main Interface"
|
||||
msgstr ""
|
||||
msgstr "Interfaz principal"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:211
|
||||
msgid "Select displayed metadata"
|
||||
msgstr ""
|
||||
msgstr "Seleccionar metadatos mostrados"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:212
|
||||
msgid "Move up"
|
||||
msgstr ""
|
||||
msgstr "Mover hacia arriba"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:213
|
||||
msgid "Move down"
|
||||
msgstr ""
|
||||
msgstr "Mover hacia abajo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:214
|
||||
msgid "Use &Roman numerals for series"
|
||||
@ -12991,6 +12993,8 @@ msgid ""
|
||||
"Note that <b>comments</b> will always be displayed at the end, regardless of "
|
||||
"the position you assign here."
|
||||
msgstr ""
|
||||
"Los <b>comentarios</b> se mostrarán siempre al final, independientemente de "
|
||||
"la posición que se asigne aquí."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:217
|
||||
msgid "Tags browser category &partitioning method:"
|
||||
@ -14270,11 +14274,11 @@ msgstr "Aplicar los cambios realizados en este ajuste"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:339
|
||||
msgid "Delete current search"
|
||||
msgstr ""
|
||||
msgstr "Borrar búsqueda actual"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:340
|
||||
msgid "No search is selected"
|
||||
msgstr ""
|
||||
msgstr "No hay ninguna búsqueda seleccionada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:342
|
||||
msgid "The selected search will be <b>permanently deleted</b>. Are you sure?"
|
||||
@ -14303,18 +14307,20 @@ msgid ""
|
||||
"Save current search under the name shown in the box. Press and hold for a "
|
||||
"pop-up options menu."
|
||||
msgstr ""
|
||||
"Guarda la búsqueda actual con el nombre que se muestra en el cuadro. "
|
||||
"Mantenga el botón pulsado para obtener un menú emergente de opciones."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:458
|
||||
msgid "Create saved search"
|
||||
msgstr ""
|
||||
msgstr "Crear búsqueda guardada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:462
|
||||
msgid "Delete saved search"
|
||||
msgstr ""
|
||||
msgstr "Borrar búsqueda guardada"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:466
|
||||
msgid "Manage saved searches"
|
||||
msgstr ""
|
||||
msgstr "Administrar búsquedas guardadas"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/search_box.py:476
|
||||
msgid "*Current search"
|
||||
@ -14426,31 +14432,31 @@ msgstr "No disponible"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_progress_dialog_ui.py:51
|
||||
msgid "Updating book cache"
|
||||
msgstr ""
|
||||
msgstr "Actualizando el caché de libros"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_update_thread.py:42
|
||||
msgid "Checking last download date."
|
||||
msgstr ""
|
||||
msgstr "Comprobando la fecha de la última descarga."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_update_thread.py:48
|
||||
msgid "Downloading book list from MobileRead."
|
||||
msgstr ""
|
||||
msgstr "Descargando lista de libros de MobileRead."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_update_thread.py:61
|
||||
msgid "Processing books."
|
||||
msgstr ""
|
||||
msgstr "Procesando libros"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/cache_update_thread.py:70
|
||||
msgid "%s of %s books processed."
|
||||
msgstr ""
|
||||
msgstr "%s de %s libros procesados."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/mobileread_plugin.py:62
|
||||
msgid "Updating MobileRead book cache..."
|
||||
msgstr ""
|
||||
msgstr "Actualizando el caché de libros de MobileRead..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/store_dialog_ui.py:69
|
||||
msgid "&Query:"
|
||||
msgstr ""
|
||||
msgstr "&Consulta:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread/store_dialog_ui.py:72
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/mobileread_store_dialog_ui.py:63
|
||||
@ -14471,11 +14477,11 @@ msgstr "Buscar:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:192
|
||||
msgid "&Price:"
|
||||
msgstr ""
|
||||
msgstr "&Precio:"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/search/adv_search_builder_ui.py:196
|
||||
msgid "Titl&e/Author/Price ..."
|
||||
msgstr ""
|
||||
msgstr "&Título/autor/precio..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/store/search/models.py:33
|
||||
msgid "DRM"
|
||||
@ -15951,7 +15957,7 @@ msgstr "empty"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/library/caches.py:564
|
||||
msgid "Invalid boolean query \"{0}\""
|
||||
msgstr ""
|
||||
msgstr "Consulta booleana \"{0}\" no válida"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:51
|
||||
msgid ""
|
||||
@ -17173,6 +17179,7 @@ msgstr "La fecha de publicación"
|
||||
#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:46
|
||||
msgid "The date when the metadata for this book record was last modified"
|
||||
msgstr ""
|
||||
"La fecha en que se modificaron por última vez los metadatos de este libro."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/library/save_to_disk.py:48
|
||||
msgid "The calibre internal id"
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-03-02 12:04+0000\n"
|
||||
"Last-Translator: gorkaazk <gorkaazkarate@euskalerria.org>\n"
|
||||
"Language-Team: Basque <eu@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: 2011-04-30 04:35+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:35+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -925,21 +925,21 @@ msgstr "iTunes/iBooks horietatik cache-azalak"
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple markako gailua"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "iTunes/iBooks horiekin komunikatu."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
"Apple enpresako gailua detektatu egin da, iTunes-en nabigatzen ari da, "
|
||||
"mesedez itxaron..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -947,28 +947,28 @@ msgstr ""
|
||||
"Ezin dira liburuak zuzenean gailu elektronikotik kopiatu. Herrestan eraman "
|
||||
"iTunes Liburutegitik mahaigainera, gero itsatsi calibre liburutegiko leihoan."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Irakurgailuaren zerrendatze metadatuak eguneratzen..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d-tik %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "amaiturik"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -978,7 +978,7 @@ msgstr ""
|
||||
"Ezabatu \"iBooks app\" erabiliz.\n"
|
||||
"Egin ezazu klik 'Zehaztasunak erakutsi' zerrenda ikusteko."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -986,7 +986,7 @@ msgstr ""
|
||||
"Azalaren arte lan batzuk ezin izan dira bihurtu.\n"
|
||||
"Egin ezazu klik 'Zehaztasunak erakutsi' zerrenda ikusteko."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1002,7 +1002,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Albisteak"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -1010,7 +1010,7 @@ msgstr "Albisteak"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalogoa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Komunikatu iTunes horrekin ."
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-04-09 04:20+0000\n"
|
||||
"Last-Translator: Milad Naseri <m.m.naseri@gmail.com>\n"
|
||||
"Language-Team: Persian <fa@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: 2011-04-30 04:44+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:45+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -882,59 +882,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -950,7 +950,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -958,7 +958,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,15 +7,15 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"PO-Revision-Date: 2010-10-08 20:55+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-05-04 13:38+0000\n"
|
||||
"Last-Translator: Aleksi Kinnunen <Unknown>\n"
|
||||
"Language-Team: Finnish <fi@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: 2011-04-30 04:38+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-05 04:37+0000\n"
|
||||
"X-Generator: Launchpad (build 12959)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -199,7 +199,7 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:46
|
||||
msgid "Cannot configure"
|
||||
msgstr ""
|
||||
msgstr "Ei voida määrittää"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:318
|
||||
msgid "File type"
|
||||
@ -359,7 +359,7 @@ msgstr "Lisää/poista sarakkeita calibren kirjaluetteloon"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:916
|
||||
msgid "Toolbar"
|
||||
msgstr ""
|
||||
msgstr "Työkalurivi"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:922
|
||||
msgid ""
|
||||
@ -530,11 +530,11 @@ msgstr "Sekalaiset kehittyneet asetukset"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1109
|
||||
msgid "Kindle books from Amazon"
|
||||
msgstr ""
|
||||
msgstr "Amazonin Kindle-kirjat"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1114
|
||||
msgid "Kindle books from Amazon.uk"
|
||||
msgstr ""
|
||||
msgstr "Amazon.uk:in Kindle-kirjat"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1119
|
||||
msgid "Ebooks for readers."
|
||||
@ -542,7 +542,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1124
|
||||
msgid "Books, Textbooks, eBooks, Toys, Games and More."
|
||||
msgstr ""
|
||||
msgstr "Kirjoja, oppikirjoja, e-kirjoja, leluja, pelejä ja paljon muuta."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1129
|
||||
msgid "Publishers of fine books."
|
||||
@ -562,7 +562,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1149
|
||||
msgid "Read anywhere."
|
||||
msgstr ""
|
||||
msgstr "Lue missä vain."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1154
|
||||
msgid "The first producer of free ebooks."
|
||||
@ -570,11 +570,11 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1159
|
||||
msgid "eReading: anytime. anyplace."
|
||||
msgstr ""
|
||||
msgstr "eReading: missä vain, milloin vain."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1164
|
||||
msgid "The best ebooks at the best price: free!"
|
||||
msgstr ""
|
||||
msgstr "Parhaat e-kirjat parhaaseen hintaan: ilmaiseksi!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1169
|
||||
msgid "Ebooks handcrafted with the utmost care"
|
||||
@ -586,7 +586,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1179
|
||||
msgid "Your ebook. Your way."
|
||||
msgstr ""
|
||||
msgstr "Sinun e-kirjasi. Sinun tavallasi."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1184
|
||||
msgid "Feel every word"
|
||||
@ -598,7 +598,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1194
|
||||
msgid "Kindle eBooks"
|
||||
msgstr ""
|
||||
msgstr "Kindlen e-kirjat"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:102
|
||||
msgid "Conversion Input"
|
||||
@ -744,6 +744,8 @@ msgid ""
|
||||
"Intended for the Samsung Galaxy and similar tablet devices with a resolution "
|
||||
"of 600x1280"
|
||||
msgstr ""
|
||||
"Tarkoitettu Samsung Galaxy Tabille ja muille vastaaville tableteille joiden "
|
||||
"resoluutio on 600x1280."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:472
|
||||
msgid "This profile is intended for the Kobo Reader."
|
||||
@ -907,46 +909,46 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Kommunikoi iTunesin/iBooksin kanssa"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Apple-laite havaittu, ladataan iTunes, odota hetki..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Päivittää laitteen metatietolistausta..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d %d:stä"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "Valmis"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -956,7 +958,7 @@ msgstr ""
|
||||
"Poista iBooks-sovelluksella.\n"
|
||||
"Valitse 'Näytä yksityiskohdat' nähdäksesi listan."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -964,7 +966,7 @@ msgstr ""
|
||||
"Osaa kansitaiteesta ei voitu kääntää.\n"
|
||||
"Valitse 'Näytä yksityiskohdat' nähdäksesi listan."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -980,7 +982,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Uutiset"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -988,7 +990,7 @@ msgstr "Uutiset"
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Kommunikoi iTunesin kanssa."
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-06-11 18:48+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Faroese <fo@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: 2011-04-30 04:38+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:38+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -861,59 +861,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -929,7 +929,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -937,7 +937,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre 0.4.22\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-04-29 12:01+0000\n"
|
||||
"Last-Translator: sengian <Unknown>\n"
|
||||
"Language-Team: Français <kde-i18n-doc@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: 2011-04-30 04:38+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:39+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
"X-Poedit-Bookmarks: 1177,1104,-1,-1,-1,-1,-1,-1,-1,-1\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
@ -940,19 +940,19 @@ msgstr ""
|
||||
"Activer la mise en cache et l'affichage des couvertures provenant de "
|
||||
"iTunes/iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Appareil Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Communiquer avec iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Appareil Apple détecté, lancement d'iTunes, veuillez patienter..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -961,28 +961,28 @@ msgstr ""
|
||||
"le bureau à partir de la bibliothèque, puis ajouter à la fenêtre de la "
|
||||
"bibliothèque Calibre."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Mise à jour de la liste des métadonnées de l'appareil..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d sur %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "Terminé"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -992,7 +992,7 @@ msgstr ""
|
||||
"Les supprimer en utilisant l'application iBooks.\n"
|
||||
"Cliquer 'Afficher détails' pour obtenir la liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -1000,7 +1000,7 @@ msgstr ""
|
||||
"Certaines illustrations de couverture n'ont pu être converties.\n"
|
||||
"Cliquer sur 'Afficher Détails' pour une liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1016,7 +1016,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Informations"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -1024,7 +1024,7 @@ msgstr "Informations"
|
||||
msgid "Catalog"
|
||||
msgstr "Catalogue"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Communiquer avec iTunes"
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-04-07 18:57+0000\n"
|
||||
"Last-Translator: Miguel Anxo Bouzada <mbouzada@gmail.com>\n"
|
||||
"Language-Team: dev@gl.openoffice.org\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:39+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:40+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
"Language: gl\n"
|
||||
|
||||
@ -934,20 +934,20 @@ msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
"Actíveo para amosar e gardar en caché as portadas de iTunes ou iBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Dispositivo Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Comunicar con iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
"Detectouse un dispositivo de Apple. Estase a iniciar o iTunes, agarde..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -956,28 +956,28 @@ msgstr ""
|
||||
"biblioteca de iTunes ao escritorio, e logo, poderá engadilos na xanela "
|
||||
"Biblioteca de Calibre."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Actualizando a relación de metadatos..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d de %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "rematado"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -987,7 +987,7 @@ msgstr ""
|
||||
"Eliminar co aplicativo do iBooks\n"
|
||||
"Premer «Amosar detalles» para obter unha lista."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -995,7 +995,7 @@ msgstr ""
|
||||
"Algunhas cubertas non se converteron. \n"
|
||||
"Prema «Amosar detalles» para relacionalas."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -1011,7 +1011,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Noticias"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -1019,7 +1019,7 @@ msgstr "Noticias"
|
||||
msgid "Catalog"
|
||||
msgstr "Catálogo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Comunicar con iTunes."
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-01-28 13:47+0000\n"
|
||||
"Last-Translator: Eran Cohen <Unknown>\n"
|
||||
"Language-Team: Hebrew <he@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:40+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:40+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -886,19 +886,19 @@ msgstr "הטמן (cache) תמונות שער מ-iTunes/iBooks."
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "התקן של אפל"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "תקשר עם אייטונס/אייבוקס"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "התגלתה חומרת 'אפל' (Apple). מתחיל את תוכנת iTunes, אנה חכה.."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -906,28 +906,28 @@ msgstr ""
|
||||
"קליבר לא מצליח להעתיק ספרים ישירות מחומרת ה-iDevice. גרור מספריית ה-iTunes "
|
||||
"לשולחן העבודה. רק אז הוסף לחלון ספריית קליבר."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "מעדכן רישום נתוני מטא של החומרה"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d מתוך %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "הסתיים"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -937,7 +937,7 @@ msgstr ""
|
||||
"הסר בעזרת אפליקציית ה-iBooks.\n"
|
||||
"לחץ על 'הצג פרטים' לקבלת רשימה."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -945,7 +945,7 @@ msgstr ""
|
||||
"לא היה אפשר להמיר חלק מתמונות השער.\n"
|
||||
"לחץ על 'הצג פרטים' לקבלת רשימה."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -961,7 +961,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "חדשות"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -969,7 +969,7 @@ msgstr "חדשות"
|
||||
msgid "Catalog"
|
||||
msgstr "קטלוג"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "תקשר עם אייטונס"
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-03-19 05:11+0000\n"
|
||||
"Last-Translator: Varun Kansal <Unknown>\n"
|
||||
"Language-Team: Hindi <hi@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: 2011-04-30 04:40+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:41+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -861,59 +861,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -929,7 +929,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -937,7 +937,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-10-08 20:47+0000\n"
|
||||
"Last-Translator: Miro Glavić <glavicmiro@gmail.com>\n"
|
||||
"Language-Team: Croatian <hr@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:46+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:47+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -889,59 +889,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d od %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "završeno"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -957,7 +957,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Vijesti"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -965,7 +965,7 @@ msgstr "Vijesti"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,15 +7,15 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"PO-Revision-Date: 2011-04-15 14:46+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 06:09+0000\n"
|
||||
"Last-Translator: Devilinside <Unknown>\n"
|
||||
"Language-Team: Hungarian <hu@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: 2011-04-30 04:40+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-06 04:34+0000\n"
|
||||
"X-Generator: Launchpad (build 12959)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -369,7 +369,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:928
|
||||
msgid "Searching"
|
||||
msgstr ""
|
||||
msgstr "Keresés"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:934
|
||||
msgid "Customize the way searching for books works in calibre"
|
||||
@ -529,11 +529,11 @@ msgstr "Egyéb speciális beállítások"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1109
|
||||
msgid "Kindle books from Amazon"
|
||||
msgstr ""
|
||||
msgstr "Kindle könyvek az Amazontól"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1114
|
||||
msgid "Kindle books from Amazon.uk"
|
||||
msgstr ""
|
||||
msgstr "Kindle könyvek az Amazon.uk-től"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1119
|
||||
msgid "Ebooks for readers."
|
||||
@ -573,7 +573,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1164
|
||||
msgid "The best ebooks at the best price: free!"
|
||||
msgstr ""
|
||||
msgstr "A legjobb könyvek a legjobb áron: ingyen!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1169
|
||||
msgid "Ebooks handcrafted with the utmost care"
|
||||
@ -902,59 +902,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple eszköz"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "iTunes/iBooks-al kommunikáció"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Apple eszköz felismerve. Indítom az iTunes-t. Kérem, várjon........."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Eszköz metaadat listájának frissítése"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d / %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "Kész"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -970,7 +970,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Hírek (RSS)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -978,7 +978,7 @@ msgstr "Hírek (RSS)"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalógus"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Kommunikáció az iTunes-al."
|
||||
|
||||
@ -8253,7 +8253,7 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/tweak_epub_ui.py:60
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/main.py:233
|
||||
msgid "&Cancel"
|
||||
msgstr ""
|
||||
msgstr "Mégsem"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/comments_dialog_ui.py:43
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/template_dialog_ui.py:70
|
||||
@ -14330,7 +14330,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:189
|
||||
msgid "E-book Viewer"
|
||||
msgstr "E-booik olvasó"
|
||||
msgstr "E-book olvasó"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/viewer/main_ui.py:190
|
||||
msgid "Close dictionary"
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-04-06 16:58+0000\n"
|
||||
"Last-Translator: Aryo Sanjaya <Unknown>\n"
|
||||
"Language-Team: Indonesian <id@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: 2011-04-30 04:41+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:41+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -869,59 +869,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -937,7 +937,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -945,7 +945,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -8,15 +8,15 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre_calibre-it\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"PO-Revision-Date: 2011-04-22 18:07+0000\n"
|
||||
"Last-Translator: Paolo Furlani <Unknown>\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-05-04 18:06+0000\n"
|
||||
"Last-Translator: simone.sandri <lexluxsox@hotmail.it>\n"
|
||||
"Language-Team: italiano\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:41+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-05 04:38+0000\n"
|
||||
"X-Generator: Launchpad (build 12959)\n"
|
||||
"X-Poedit-Bookmarks: -1,-1,-1,-1,-1,1105,-1,1312,-1,-1\n"
|
||||
"Generated-By: pygettext.py 1.5\n"
|
||||
|
||||
@ -553,7 +553,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1124
|
||||
msgid "Books, Textbooks, eBooks, Toys, Games and More."
|
||||
msgstr ""
|
||||
msgstr "Libri, Manuali, eBooks, Giocattoli, Giochi e Altro."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1129
|
||||
msgid "Publishers of fine books."
|
||||
@ -565,7 +565,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1139
|
||||
msgid "The digital bookstore."
|
||||
msgstr ""
|
||||
msgstr "Il negozio digitale di libri."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1144
|
||||
msgid "entertain, enrich, inspire."
|
||||
@ -585,19 +585,19 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1164
|
||||
msgid "The best ebooks at the best price: free!"
|
||||
msgstr ""
|
||||
msgstr "I migliori ebooks al migliore prezzo: gratuiti!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1169
|
||||
msgid "Ebooks handcrafted with the utmost care"
|
||||
msgstr ""
|
||||
msgstr "Ebooks realizzati con la massima cura"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1174
|
||||
msgid "One web page for every book."
|
||||
msgstr ""
|
||||
msgstr "Una pagina web per ogni libro."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1179
|
||||
msgid "Your ebook. Your way."
|
||||
msgstr ""
|
||||
msgstr "Il vostro ebook. A modo vostro."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1184
|
||||
msgid "Feel every word"
|
||||
@ -921,19 +921,19 @@ msgstr "Conserva le copertine da iTunes/iBooks"
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Dispositivo Apple"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Comunica con iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Dispositivo Apple individuato, avvio di iTunes, attendere prego ..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -942,28 +942,28 @@ msgstr ""
|
||||
"biblioteca iTunes al desktop, quindi aggiungerli alla finestra della "
|
||||
"biblioteca calibre."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Aggiornamento dei metadati sul dispositivo..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d di %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "completato"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -973,7 +973,7 @@ msgstr ""
|
||||
"Eliminarli utilizzando l'app iBooks.\n"
|
||||
"Fare clic su 'Mostra dettagli' per una lista."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -981,7 +981,7 @@ msgstr ""
|
||||
"Alcune copertine non possono essere convertite.\n"
|
||||
"Fare clic su 'Mostra dettagli' per una lista."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -997,7 +997,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Notizie"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -1005,7 +1005,7 @@ msgstr "Notizie"
|
||||
msgid "Catalog"
|
||||
msgstr "Catalogo"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Comunica con iTunes."
|
||||
|
||||
@ -3617,15 +3617,15 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:294
|
||||
msgid "France"
|
||||
msgstr ""
|
||||
msgstr "Francia"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:295
|
||||
msgid "Germany"
|
||||
msgstr ""
|
||||
msgstr "Germania"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:296
|
||||
msgid "UK"
|
||||
msgstr ""
|
||||
msgstr "GB"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/sources/amazon.py:390
|
||||
msgid "Amazon timed out. Try again later."
|
||||
|
@ -7,15 +7,15 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"PO-Revision-Date: 2011-04-25 13:27+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-05-05 14:08+0000\n"
|
||||
"Last-Translator: Ado Nishimura <Unknown>\n"
|
||||
"Language-Team: Japanese <ja@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:41+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-06 04:34+0000\n"
|
||||
"X-Generator: Launchpad (build 12959)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
msgid "Does absolutely nothing"
|
||||
@ -189,7 +189,7 @@ msgstr "不明"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:77
|
||||
msgid "Base"
|
||||
msgstr "基礎"
|
||||
msgstr "基本"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:148
|
||||
msgid "Customize"
|
||||
@ -199,7 +199,7 @@ msgstr "カスタマイズ"
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:41
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:46
|
||||
msgid "Cannot configure"
|
||||
msgstr "設定できない"
|
||||
msgstr "設定できません"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:318
|
||||
msgid "File type"
|
||||
@ -207,7 +207,7 @@ msgstr "ファイル形式"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:354
|
||||
msgid "Metadata reader"
|
||||
msgstr "メタデータ読み込み"
|
||||
msgstr "書誌情報読み込み"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:384
|
||||
msgid "Metadata writer"
|
||||
@ -219,7 +219,7 @@ msgstr "カタログ・ジェネレータ"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:523
|
||||
msgid "User Interface Action"
|
||||
msgstr "ユーザインターフェースアクション"
|
||||
msgstr "ユーザインターフェース・アクション"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:557
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/preferences.py:18
|
||||
@ -369,7 +369,7 @@ msgstr "検索中"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:934
|
||||
msgid "Customize the way searching for books works in calibre"
|
||||
msgstr ""
|
||||
msgstr "calibreでの本の検索方法をカスタマイズする"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:939
|
||||
msgid "Input Options"
|
||||
@ -436,7 +436,7 @@ msgstr "calibreがファイルを電子書籍リーダーへ送信する挙動
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1008
|
||||
msgid "Metadata plugboards"
|
||||
msgstr ""
|
||||
msgstr "メタデータ変換ルール"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1014
|
||||
msgid "Change metadata fields before saving/sending"
|
||||
@ -444,7 +444,7 @@ msgstr "保存・送信まえに書誌情報を変更します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1019
|
||||
msgid "Template Functions"
|
||||
msgstr ""
|
||||
msgstr "テンプレート関数"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1021
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1068
|
||||
@ -455,7 +455,7 @@ msgstr "高度な設定"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1025
|
||||
msgid "Create your own template functions"
|
||||
msgstr ""
|
||||
msgstr "独自のテンプレート関数を作成する。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1030
|
||||
msgid "Sharing books by email"
|
||||
@ -482,6 +482,7 @@ msgid ""
|
||||
"Setup the calibre Content Server which will give you access to your calibre "
|
||||
"library from anywhere, on any device, over the internet"
|
||||
msgstr ""
|
||||
"calibreコンテンツサーバを設定し、calibreライブラリに、インターネット経由でどこからでも、どのデバイスからでもアクセスできるようにします。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1055
|
||||
#: /home/kovid/work/calibre/src/calibre/ebooks/metadata/fetch.py:57
|
||||
@ -490,7 +491,7 @@ msgstr "メタデータのダウンロード"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1061
|
||||
msgid "Control how calibre downloads ebook metadata from the net"
|
||||
msgstr ""
|
||||
msgstr "calibreが電子書籍のメタデータを、ネットからダウンロードする方法を制御します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1066
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/plugins.py:269
|
||||
@ -499,15 +500,15 @@ msgstr "プラグイン"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1072
|
||||
msgid "Add/remove/customize various bits of calibre functionality"
|
||||
msgstr ""
|
||||
msgstr "calibreの機能各種について、追加/削除/カスタマイズする"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1078
|
||||
msgid "Tweaks"
|
||||
msgstr ""
|
||||
msgstr "Tweaks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1084
|
||||
msgid "Fine tune how calibre behaves in various contexts"
|
||||
msgstr ""
|
||||
msgstr "様々なコンテキストでのcalibreの挙動を微調整"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1089
|
||||
msgid "Miscellaneous"
|
||||
@ -519,75 +520,75 @@ msgstr "その他の高度な設定"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1109
|
||||
msgid "Kindle books from Amazon"
|
||||
msgstr ""
|
||||
msgstr "AmazonからKindleブック"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1114
|
||||
msgid "Kindle books from Amazon.uk"
|
||||
msgstr ""
|
||||
msgstr "Amazon.ukからkindle版書籍"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1119
|
||||
msgid "Ebooks for readers."
|
||||
msgstr ""
|
||||
msgstr "Ebooks for readers."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1124
|
||||
msgid "Books, Textbooks, eBooks, Toys, Games and More."
|
||||
msgstr ""
|
||||
msgstr "書籍、テキスト、電子書籍、おもちゃ、ゲームなどなど"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1129
|
||||
msgid "Publishers of fine books."
|
||||
msgstr ""
|
||||
msgstr "良書の出版"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1134
|
||||
msgid "World Famous eBook Store."
|
||||
msgstr ""
|
||||
msgstr "世界的に有名な電子書籍ストア"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1139
|
||||
msgid "The digital bookstore."
|
||||
msgstr ""
|
||||
msgstr "電子書店"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1144
|
||||
msgid "entertain, enrich, inspire."
|
||||
msgstr ""
|
||||
msgstr "entertain, enrich, inspire."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1149
|
||||
msgid "Read anywhere."
|
||||
msgstr ""
|
||||
msgstr "どこでも読める"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1154
|
||||
msgid "The first producer of free ebooks."
|
||||
msgstr ""
|
||||
msgstr "The first producer of free ebooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1159
|
||||
msgid "eReading: anytime. anyplace."
|
||||
msgstr ""
|
||||
msgstr "eReading: anytime. anyplace."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1164
|
||||
msgid "The best ebooks at the best price: free!"
|
||||
msgstr ""
|
||||
msgstr "The best ebooks at the best price: free!"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1169
|
||||
msgid "Ebooks handcrafted with the utmost care"
|
||||
msgstr ""
|
||||
msgstr "Ebooks handcrafted with the utmost care"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1174
|
||||
msgid "One web page for every book."
|
||||
msgstr ""
|
||||
msgstr "One web page for every book."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1179
|
||||
msgid "Your ebook. Your way."
|
||||
msgstr ""
|
||||
msgstr "Your ebook. Your way."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1184
|
||||
msgid "Feel every word"
|
||||
msgstr ""
|
||||
msgstr "Feel every word"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1189
|
||||
msgid "Foyles of London, online"
|
||||
msgstr ""
|
||||
msgstr "Foyles of London, online"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/builtins.py:1194
|
||||
msgid "Kindle eBooks"
|
||||
msgstr ""
|
||||
msgstr "Kindle eBooks"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/conversion.py:102
|
||||
msgid "Conversion Input"
|
||||
@ -712,13 +713,13 @@ msgstr "iPadや同種の解像度(768x1024)を想定する"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:438
|
||||
msgid "Intended for generic tablet devices, does no resizing of images"
|
||||
msgstr ""
|
||||
msgstr "一般的なタブレット用。イメージのリサイズをしません。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:446
|
||||
msgid ""
|
||||
"Intended for the Samsung Galaxy and similar tablet devices with a resolution "
|
||||
"of 600x1280"
|
||||
msgstr ""
|
||||
msgstr "サムソンGalaxy Tabやその他の600x1280解像度のデバイス。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:472
|
||||
msgid "This profile is intended for the Kobo Reader."
|
||||
@ -730,11 +731,11 @@ msgstr "SONY PRS-300用のプロファイルです。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:503
|
||||
msgid "Suitable for use with any e-ink device"
|
||||
msgstr ""
|
||||
msgstr "e-inkを使ったデバイス(汎用)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:510
|
||||
msgid "Suitable for use with any large screen e-ink device"
|
||||
msgstr ""
|
||||
msgstr "e-inkを使った大きな画面のデバイス(汎用)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:519
|
||||
msgid "This profile is intended for the 5-inch JetBook."
|
||||
@ -756,7 +757,7 @@ msgstr "このプロファイル設定は、バーンズアンドノーブルの
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/profiles.py:724
|
||||
msgid "This profile is intended for the Sanda Bambook."
|
||||
msgstr ""
|
||||
msgstr "Sanda Bambook"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/ui.py:32
|
||||
msgid "Installed plugins"
|
||||
@ -818,7 +819,7 @@ msgstr "名付けたプラグインを無効にする"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/debug.py:152
|
||||
msgid "Debug log"
|
||||
msgstr ""
|
||||
msgstr "デバッグ・ログ"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/android/driver.py:13
|
||||
msgid "Communicate with Android phones."
|
||||
@ -845,14 +846,22 @@ msgid ""
|
||||
"iTunes</em> menu item.</p><p>Enabling the Apple driver for direct connection "
|
||||
"to iDevices is an unsupported advanced user mode.</p><p></p>"
|
||||
msgstr ""
|
||||
"<p>Apple iDevice が接続されたときにcalibreに自動認識させないためには、<b>Apple "
|
||||
"ドライバーを無効化</b>をクリックしてください。</p><p>その場合iDevice に転送する時には、<b>Apple "
|
||||
"ドライバーを無効化</b>をクリックして、<a "
|
||||
"href=\"http://www.mobileread.com/forums/showthread.php?t=118559\">Calibre + "
|
||||
"iDevices FAQ</a>の 'Connect to "
|
||||
"iTunes'の項で推奨されているように、メニューの<em>Connect/Share</em>|<em>Connect to "
|
||||
"iTunes</em>を使ってください。</p><p>アドバンストモードではAppleドライバーを使用したiDevicesへの直接接続はサポートされていま"
|
||||
"せん。</p><p></p>"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:65
|
||||
msgid "Disable Apple driver"
|
||||
msgstr ""
|
||||
msgstr "Apple ドライバーを無効化"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:69
|
||||
msgid "Enable Apple driver"
|
||||
msgstr ""
|
||||
msgstr "Apple ドライバーを有効化"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:117
|
||||
msgid "Use Series as Category in iTunes/iBooks"
|
||||
@ -860,7 +869,7 @@ msgstr "iTunes/iBooksのカテゴリーをシリーズとして使う"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:118
|
||||
msgid "Enable to use the series name as the iTunes Genre, iBooks Category"
|
||||
msgstr ""
|
||||
msgstr "iTunesのジャンル / iBooksのカテゴリーをシリーズ名として使う"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:120
|
||||
msgid "Cache covers from iTunes/iBooks"
|
||||
@ -868,48 +877,50 @@ msgstr "iTunes/iBooksから表紙を保存"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:122
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
msgstr "iTunes/iBooksからの表紙を使用する(キャッシュもされる)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Appleデバイス"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "iTunes/iBooksと通信"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Appleの機器が見つかりました。iTunes を起動しています。しばらくお待ちください..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
"iDeviceから直接EBookをコピーできません。iTunesのライブラリから一度デスクトップへドラッグしてからcalibreのライブラリ・ウインドウに"
|
||||
"追加してください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "デバイスの書誌情報リストを更新..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d / %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "完了"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -917,15 +928,17 @@ msgid ""
|
||||
msgstr ""
|
||||
"iTunesデータベースにみつからない書籍があります。\n"
|
||||
"iBooksアプリを使って削除してください。\n"
|
||||
"'詳細を見る'をクリックするとリストを表示します。"
|
||||
"'詳細を表示'をクリックするとリストを表示します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
"いくつかの表紙が変換できませんでした。\n"
|
||||
"'詳細を表示' をクリックするとリストを表示します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -941,7 +954,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "ニュース"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -949,32 +962,32 @@ msgstr "ニュース"
|
||||
msgid "Catalog"
|
||||
msgstr "カタログ"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "iTunesと通信"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:24
|
||||
msgid "Communicate with the Sanda Bambook eBook reader."
|
||||
msgstr ""
|
||||
msgstr "Sanda Bambook eBookリーダーと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:25
|
||||
msgid "Li Fanxi"
|
||||
msgstr ""
|
||||
msgstr "Li Fanxi"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:42
|
||||
msgid "Device IP Address (restart calibre after changing)"
|
||||
msgstr ""
|
||||
msgstr "デバイスIPアドレス(再起動が必要)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:47
|
||||
msgid ""
|
||||
"Unable to add book to library directly from Bambook. Please save the book to "
|
||||
"disk and add the file to library from disk."
|
||||
msgstr ""
|
||||
msgstr "Bambookから直接ライブラリにEBookを追加できません。一度ディスクにEBookをセーブしてからライブラリに追加してください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:67
|
||||
msgid ""
|
||||
"Unable to connect to Bambook, you need to install Bambook library first."
|
||||
msgstr ""
|
||||
msgstr "Bambookに接続できませんでした。Bambook libraryを先にインストールしてください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:75
|
||||
msgid ""
|
||||
@ -982,10 +995,12 @@ msgid ""
|
||||
"If you are trying to connect via Wi-Fi, please make sure the IP address of "
|
||||
"Bambook has been correctly configured."
|
||||
msgstr ""
|
||||
"Bambookに接続できませんでした。\n"
|
||||
"もしWi-Fiで接続しているのなら、BambookのIPアドレスが設定されているか確認してください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:112
|
||||
msgid "Bambook"
|
||||
msgstr ""
|
||||
msgstr "Bambook"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:218
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/driver.py:234
|
||||
@ -1046,7 +1061,7 @@ msgstr "デバイスにメタデータを送信しています..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/bambook/libbambookcore.py:129
|
||||
msgid "Bambook SDK has not been installed."
|
||||
msgstr ""
|
||||
msgstr "Bambook SDKがインストールされていません。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/binatone/driver.py:17
|
||||
msgid "Communicate with the Binatone Readme eBook reader."
|
||||
@ -1085,11 +1100,11 @@ msgstr "PocketBook 301 と通信しています"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:233
|
||||
msgid "Communicate with the PocketBook 602/603/902/903 reader."
|
||||
msgstr ""
|
||||
msgstr "PocketBook 602/603/902/903リーダーと通信する"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/eb600/driver.py:253
|
||||
msgid "Communicate with the PocketBook 701"
|
||||
msgstr ""
|
||||
msgstr "PocketBook 701と通信する"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/edge/driver.py:17
|
||||
msgid "Entourage Edge"
|
||||
@ -1195,11 +1210,11 @@ msgstr "JetBookミニリーダーと通信しています"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/apnx.py:28
|
||||
msgid "Not a valid MOBI file. Reports identity of %s"
|
||||
msgstr ""
|
||||
msgstr "正しいMOBIファイルではありません。%sです。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/apnx.py:44
|
||||
msgid "Could not generate page mapping."
|
||||
msgstr ""
|
||||
msgstr "ページのマッピングができません。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:44
|
||||
msgid "Communicate with the Kindle eBook reader."
|
||||
@ -1211,7 +1226,7 @@ msgstr "Kindle 2/3電子ブックリーダーと通信"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:180
|
||||
msgid "Send page number information when sending books"
|
||||
msgstr ""
|
||||
msgstr "Book転送時にページ番号情報を送る。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:182
|
||||
msgid ""
|
||||
@ -1220,10 +1235,12 @@ msgid ""
|
||||
"the Kindle when uploading MOBI files by USB. Note that the page numbers do "
|
||||
"not correspond to any paper book."
|
||||
msgstr ""
|
||||
"Kindle3以降のヴァージョンではMOBIファイルでページ番号情報を使用できます。このオプションを有効にするとcalibreはKindleとUSBで接続"
|
||||
"されたときに、情報を計算してMOBIファイルと一緒にアップロードします。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:187
|
||||
msgid "Use slower but more accurate page number generation"
|
||||
msgstr ""
|
||||
msgstr "遅いが正確なページ番号生成"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:189
|
||||
msgid ""
|
||||
@ -1232,6 +1249,8 @@ msgid ""
|
||||
"book. However, this method is slower and will slow down sending files to the "
|
||||
"Kindle."
|
||||
msgstr ""
|
||||
"ページ番号を生成するには2つの方法があります。このオプションを使うと、印刷された本に近い、より正確なページ番号を生成できますが、この方法は遅く、Kindl"
|
||||
"eに送信する時間がかかります。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/kindle/driver.py:257
|
||||
msgid "Communicate with the Kindle DX eBook reader."
|
||||
@ -1264,11 +1283,11 @@ msgstr "Palm Pre と通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/misc.py:39
|
||||
msgid "Communicate with the Bq Avant"
|
||||
msgstr ""
|
||||
msgstr "Booq Avant と通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/misc.py:60
|
||||
msgid "Communicate with the Sweex/Kogan/Q600/Wink"
|
||||
msgstr ""
|
||||
msgstr "Sweex/Kogan/Q600/Winkと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/misc.py:81
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/misc.py:108
|
||||
@ -1289,19 +1308,19 @@ msgstr "Acer Lumireadと通信しています"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/misc.py:199
|
||||
msgid "Communicate with the Aluratek Color"
|
||||
msgstr ""
|
||||
msgstr "Aluratek Colorと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/misc.py:219
|
||||
msgid "Communicate with the Trekstor"
|
||||
msgstr ""
|
||||
msgstr "Trekstorと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/misc.py:239
|
||||
msgid "Communicate with the EEE Reader"
|
||||
msgstr ""
|
||||
msgstr "EEE Readerと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/misc.py:259
|
||||
msgid "Communicate with the Nextbook Reader"
|
||||
msgstr ""
|
||||
msgstr "Nextbook Readerと通信します。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nokia/driver.py:17
|
||||
msgid "Communicate with the Nokia 770 internet tablet."
|
||||
@ -4332,7 +4351,7 @@ msgstr "失敗"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:317
|
||||
msgid "Database integrity check failed, click Show details for details."
|
||||
msgstr ""
|
||||
msgstr "データーベースの整合性チェックに失敗しました。詳しくは'詳細を表示'をクリックしてください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/choose_library.py:322
|
||||
msgid "No problems found"
|
||||
@ -4457,7 +4476,7 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:67
|
||||
msgid ""
|
||||
"Failed to delete some books, click the Show Details button for details."
|
||||
msgstr ""
|
||||
msgstr "いくつかのEBookの削除ができませんでした。詳しくは'詳細を表示'をクリックしてください。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/actions/delete.py:73
|
||||
msgid "Del"
|
||||
@ -7374,7 +7393,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget.py:124
|
||||
msgid "Unknown formats"
|
||||
msgstr ""
|
||||
msgstr "不明なフォーマット"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/device_drivers/configwidget.py:125
|
||||
msgid ""
|
||||
@ -9121,7 +9140,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:196
|
||||
msgid "%s news sources"
|
||||
msgstr ""
|
||||
msgstr "%s ニュース・ソース"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:311
|
||||
msgid "Need username and password"
|
||||
@ -9129,7 +9148,7 @@ msgstr "ユーザ名とパスワードが必要"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:312
|
||||
msgid "You must provide a username and/or password to use this news source."
|
||||
msgstr ""
|
||||
msgstr "このニュースにはユーザー名(とパスワード)が必要です。"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler.py:346
|
||||
msgid "Account"
|
||||
@ -9289,7 +9308,7 @@ msgstr " 日経過したニュースを削除"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:226
|
||||
msgid "Download all scheduled news sources at once"
|
||||
msgstr ""
|
||||
msgstr "スケジュールしたニュースをすべてダウンロード"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/dialogs/scheduler_ui.py:227
|
||||
msgid "Download &all scheduled"
|
||||
@ -10249,7 +10268,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/layout.py:251
|
||||
msgid "Donate"
|
||||
msgstr ""
|
||||
msgstr "寄付"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/library/delegates.py:361
|
||||
msgid "Y"
|
||||
@ -11544,7 +11563,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:210
|
||||
msgid "Main Interface"
|
||||
msgstr ""
|
||||
msgstr "メイン画面"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/look_feel_ui.py:211
|
||||
msgid "Select displayed metadata"
|
||||
@ -12419,7 +12438,7 @@ msgstr ""
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:155
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:166
|
||||
msgid "Template functions"
|
||||
msgstr ""
|
||||
msgstr "テンプレート関数"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/preferences/template_functions.py:135
|
||||
msgid "You cannot delete a built-in function"
|
||||
@ -15506,11 +15525,11 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:101
|
||||
msgid "unknown id "
|
||||
msgstr ""
|
||||
msgstr "不明なID "
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:107
|
||||
msgid "unknown function {0}"
|
||||
msgstr ""
|
||||
msgstr "不明な関数 {0}"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:126
|
||||
msgid "missing closing parenthesis"
|
||||
@ -15530,7 +15549,7 @@ msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:296
|
||||
msgid "%s: unknown function"
|
||||
msgstr ""
|
||||
msgstr "%s: 不明な関数"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/formatter.py:343
|
||||
msgid "No such variable "
|
||||
@ -15860,7 +15879,7 @@ msgstr "英語(キプロス)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:107
|
||||
msgid "English (Czechoslovakia)"
|
||||
msgstr ""
|
||||
msgstr "英語(チェコスロバキア)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:108
|
||||
msgid "English (Pakistan)"
|
||||
@ -15868,11 +15887,11 @@ msgstr "英語(パキスタン)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:109
|
||||
msgid "English (Croatia)"
|
||||
msgstr ""
|
||||
msgstr "英語(クロアチア)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:110
|
||||
msgid "English (Indonesia)"
|
||||
msgstr ""
|
||||
msgstr "英語(インドネシア)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:111
|
||||
msgid "English (Israel)"
|
||||
@ -15900,43 +15919,43 @@ msgstr "スペイン語(パラグアイ)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:117
|
||||
msgid "Spanish (Uruguay)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語 (ウルグアイ)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:118
|
||||
msgid "Spanish (Argentina)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語(アルゼンチン)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:119
|
||||
msgid "Spanish (Mexico)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語 (メキシコ)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:120
|
||||
msgid "Spanish (Cuba)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語 (キューバ)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:121
|
||||
msgid "Spanish (Chile)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語 (チリ)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:122
|
||||
msgid "Spanish (Ecuador)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語 (エクアドル)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:123
|
||||
msgid "Spanish (Honduras)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語 (ホンジュラス)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:124
|
||||
msgid "Spanish (Venezuela)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語 (ベネズエラ)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:125
|
||||
msgid "Spanish (Bolivia)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語 (ボリビア)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:126
|
||||
msgid "Spanish (Nicaragua)"
|
||||
msgstr ""
|
||||
msgstr "スペイン語 (ニカラグア)"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/utils/localization.py:127
|
||||
msgid "German (AT)"
|
||||
@ -16018,7 +16037,7 @@ msgstr "電子メール配送の制御"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:120
|
||||
msgid "Unknown section"
|
||||
msgstr ""
|
||||
msgstr "不明なセクション"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/web/feeds/__init__.py:142
|
||||
msgid "Unknown feed"
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-01-30 09:51+0000\n"
|
||||
"Last-Translator: ddfddf2k <Unknown>\n"
|
||||
"Language-Team: Korean <ko@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: 2011-04-30 04:42+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:42+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -871,19 +871,19 @@ msgstr "iTunes/iBooks에서 표지를 캐시합니다"
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple 장치"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "iTunes/iBooks와 통신합니다."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Apple 장치가 감지되어 iTunes를 실행합니다. 기다려주세요..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -891,28 +891,28 @@ msgstr ""
|
||||
"iDevice로 부터 책을 직접적으로 복사할 수 없습니다. 마우스를 이용하여, iTunes 라이브러리로 부터 직접 "
|
||||
"Calibre라이브러리에 추가하십시오"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "장치의 메타 정보 목록을 갱신합니다..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d / %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "완료됨"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -922,7 +922,7 @@ msgstr ""
|
||||
"iBooks 앱을 이용해서 삭제합니다.\n"
|
||||
"목록를 보려면 '상세히 보기'를 누르세요."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -930,7 +930,7 @@ msgstr ""
|
||||
"일부 표지를 변환할 수 없었습니다.\n"
|
||||
"목록을 보려면 '상세히 보기'를 누르세요."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -946,7 +946,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "뉴스"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -954,7 +954,7 @@ msgstr "뉴스"
|
||||
msgid "Catalog"
|
||||
msgstr "분류"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "iTunes와 통신합니다."
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-04-26 09:56+0000\n"
|
||||
"Last-Translator: Mantas Kriaučiūnas <mantas@akl.lt>\n"
|
||||
"Language-Team: Lithuanian <lt@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: 2011-04-30 04:42+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:43+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -869,59 +869,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple įrenginys"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "baigta"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -937,7 +937,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Naujienos"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -945,7 +945,7 @@ msgstr "Naujienos"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalogas"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-12-18 16:39+0000\n"
|
||||
"Last-Translator: Vladimirs Kuzmins <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: 2011-04-30 04:42+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:43+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
"X-Poedit-Country: LATVIA\n"
|
||||
"X-Poedit-Language: Latvian\n"
|
||||
@ -865,59 +865,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d no %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "pabeigts"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -933,7 +933,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Ziņas"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -941,7 +941,7 @@ msgstr "Ziņas"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalogs"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-12-16 23:06+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Malayalam <ml@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: 2011-04-30 04:42+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:43+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -871,59 +871,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -939,7 +939,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "വാര്ത്തകള്"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -947,7 +947,7 @@ msgstr "വാര്ത്തകള്"
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-09-03 19:11+0000\n"
|
||||
"Last-Translator: Kovid Goyal <Unknown>\n"
|
||||
"Language-Team: Marathi <mr@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: 2011-04-30 04:43+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:43+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -861,59 +861,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "पूर्ण झालेले"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -929,7 +929,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "वार्ता"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -937,7 +937,7 @@ msgstr "वार्ता"
|
||||
msgid "Catalog"
|
||||
msgstr "पुस्तक सूची"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2010-04-09 05:12+0000\n"
|
||||
"Last-Translator: esaismail@gmail.com <Unknown>\n"
|
||||
"Language-Team: Malay <ms@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: 2011-04-30 04:43+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:44+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -873,59 +873,59 @@ msgstr ""
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -941,7 +941,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -949,7 +949,7 @@ msgstr ""
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr ""
|
||||
|
||||
|
@ -7,14 +7,14 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: calibre\n"
|
||||
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"POT-Creation-Date: 2011-04-29 18:21+0000\n"
|
||||
"POT-Creation-Date: 2011-04-30 16:30+0000\n"
|
||||
"PO-Revision-Date: 2011-04-19 01:41+0000\n"
|
||||
"Last-Translator: kleppar <erik@klepsvik.info>\n"
|
||||
"Language-Team: Norwegian Bokmal <nb@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Launchpad-Export-Date: 2011-04-30 04:44+0000\n"
|
||||
"X-Launchpad-Export-Date: 2011-05-01 04:44+0000\n"
|
||||
"X-Generator: Launchpad (build 12758)\n"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/customize/__init__.py:56
|
||||
@ -910,19 +910,19 @@ msgstr "Cache omslag fra iTunes/iBooks"
|
||||
msgid "Enable to cache and display covers from iTunes/iBooks"
|
||||
msgstr ""
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:176
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
msgid "Apple device"
|
||||
msgstr "Apple-enhet"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:178
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:180
|
||||
msgid "Communicate with iTunes/iBooks."
|
||||
msgstr "Kommuniser med iTunes/iBooks."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:190
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
msgid "Apple device detected, launching iTunes, please wait ..."
|
||||
msgstr "Apple-enhet er oppdaget, starter i iTunes, vennligst vent..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:192
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:194
|
||||
msgid ""
|
||||
"Cannot copy books directly from iDevice. Drag from iTunes Library to "
|
||||
"desktop, then add to calibre's Library window."
|
||||
@ -930,28 +930,28 @@ msgstr ""
|
||||
"Kan ikke kopiere direkte fra iDevice. Klikk og dra fra iTunes biblioteket "
|
||||
"til skrivebordet, deretter legg det til calibres bibliotekhvindu."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:353
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:356
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:355
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:358
|
||||
msgid "Updating device metadata listing..."
|
||||
msgstr "Oppdaterer metadatalister for enheten..."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:432
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:471
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1054
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1098
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3082
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3122
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:434
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:473
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1056
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3084
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3124
|
||||
msgid "%d of %d"
|
||||
msgstr "%d av %d"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:478
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1103
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3128
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:480
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1105
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:3130
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/ebook_download.py:106
|
||||
msgid "finished"
|
||||
msgstr "fullført"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:663
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:665
|
||||
msgid ""
|
||||
"Some books not found in iTunes database.\n"
|
||||
"Delete using the iBooks app.\n"
|
||||
@ -961,7 +961,7 @@ msgstr ""
|
||||
"Avslutt bruk av iBook app.\n"
|
||||
"Klikk \"Vis Detaljer\" for liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1014
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:1016
|
||||
msgid ""
|
||||
"Some cover art could not be converted.\n"
|
||||
"Click 'Show Details' for a list."
|
||||
@ -969,7 +969,7 @@ msgstr ""
|
||||
"Noen av omslagsbildene kunne ikke konverteres.\n"
|
||||
"Klikk \"Vis Detaljer\" for liste."
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2664
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2666
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/nook/driver.py:100
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:447
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/prs505/sony_cache.py:470
|
||||
@ -985,7 +985,7 @@ msgstr ""
|
||||
msgid "News"
|
||||
msgstr "Nyheter"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2665
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2667
|
||||
#: /home/kovid/work/calibre/src/calibre/gui2/catalog/catalog_epub_mobi.py:65
|
||||
#: /home/kovid/work/calibre/src/calibre/library/catalog.py:633
|
||||
#: /home/kovid/work/calibre/src/calibre/library/database2.py:2750
|
||||
@ -993,7 +993,7 @@ msgstr "Nyheter"
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2986
|
||||
#: /home/kovid/work/calibre/src/calibre/devices/apple/driver.py:2988
|
||||
msgid "Communicate with iTunes."
|
||||
msgstr "Kommuniser med iTunes"
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user